diff --git a/crates/qmd-syntax-helper/src/conversions/div_whitespace.rs b/crates/qmd-syntax-helper/src/conversions/div_whitespace.rs index db18d91..0b1f33f 100644 --- a/crates/qmd-syntax-helper/src/conversions/div_whitespace.rs +++ b/crates/qmd-syntax-helper/src/conversions/div_whitespace.rs @@ -138,7 +138,11 @@ impl DivWhitespaceConverter { } /// Convert byte offset to row/column (1-indexed) - fn byte_offset_to_location(&self, content: &str, byte_offset: usize) -> crate::rule::SourceLocation { + fn byte_offset_to_location( + &self, + content: &str, + byte_offset: usize, + ) -> crate::rule::SourceLocation { let mut row = 1; let mut column = 1; let mut current_offset = 0; diff --git a/crates/qmd-syntax-helper/src/main.rs b/crates/qmd-syntax-helper/src/main.rs index 21d6d24..dbfceb1 100644 --- a/crates/qmd-syntax-helper/src/main.rs +++ b/crates/qmd-syntax-helper/src/main.rs @@ -100,7 +100,11 @@ fn main() -> Result<()> { for result in results { all_results.push(result.clone()); if !json && result.has_issue { - println!(" {} {}", "✗".red(), result.message.unwrap_or_default()); + println!( + " {} {}", + "✗".red(), + result.message.unwrap_or_default() + ); } } } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/_autogen-table.json b/crates/quarto-markdown-pandoc/resources/error-corpus/_autogen-table.json index a9f4899..ab1b205 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/_autogen-table.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/_autogen-table.json @@ -2,7 +2,7 @@ { "column": 17, "row": 0, - "state": 1284, + "state": 1283, "sym": "end", "errorInfo": { "title": "Unclosed Span", @@ -30,7 +30,7 @@ { "column": 20, "row": 0, - "state": 2633, + "state": 2678, "sym": "class_specifier", "errorInfo": { "title": "Key-value Pair Before Class Specifier in Attribute", @@ -38,7 +38,7 @@ "captures": [ { "column": 10, - "lrState": 2743, + "lrState": 2720, "row": 0, "size": 3, "sym": "key_value_key", @@ -46,7 +46,7 @@ }, { "column": 14, - "lrState": 2548, + "lrState": 2600, "row": 0, "size": 5, "sym": "key_value_value_token1", @@ -67,7 +67,7 @@ { "column": 18, "row": 0, - "state": 2050, + "state": 2020, "sym": "_error", "errorInfo": { "title": "Mismatched Delimiter in Attribute Specifier", @@ -75,7 +75,7 @@ "captures": [ { "column": 17, - "lrState": 2050, + "lrState": 2020, "row": 0, "size": 1, "sym": "{", diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs index 020df52..e2a53ed 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs @@ -540,7 +540,7 @@ fn native_visitor( "attribute" => process_attribute(children, context), "commonmark_attribute" => process_commonmark_attribute(children, context), "class_specifier" | "id_specifier" => create_specifier_base_text(node, input_bytes), - "shortcode_naked_string" | "shortcode_name" => { + "shortcode_naked_string" | "shortcode_name" | "shortcode_key_name_and_equals" => { process_shortcode_string_arg(node, input_bytes, context) } "shortcode_string" => process_shortcode_string(&string_as_base_text, node, context), 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 41db36e..d6fe038 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/postprocess.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/postprocess.rs @@ -460,7 +460,8 @@ pub fn postprocess(doc: Pandoc, error_collector: &mut E) -> R while i < inlines.len() { if let Inline::Math(math) = &inlines[i] { // Check if followed by Space then Attr, or just Attr - let has_space = i + 1 < inlines.len() && matches!(inlines[i + 1], Inline::Space(_)); + let has_space = + i + 1 < inlines.len() && matches!(inlines[i + 1], Inline::Space(_)); let attr_idx = if has_space { i + 2 } else { i + 1 }; if attr_idx < inlines.len() { diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/shortcode.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/shortcode.rs index 9f027f0..6d5dc87 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/shortcode.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/shortcode.rs @@ -56,7 +56,24 @@ pub fn process_shortcode_keyword_param( let mut name = String::new(); for (node, child) in children { match node.as_str() { + "shortcode_key_name_and_equals" => { + // This is the new external token that includes "identifier = " + // We need to extract just the identifier part + let PandocNativeIntermediate::IntermediateShortcodeArg( + ShortcodeArg::String(text), + _, + ) = child + else { + panic!( + "Expected ShortcodeArg::String in shortcode_key_name_and_equals, got {:?}", + child + ) + }; + // Remove the trailing '=' and any whitespace before it + name = text.trim_end_matches('=').trim_end().to_string(); + } "shortcode_name" => { + // This handles legacy case or value side of key-value let PandocNativeIntermediate::IntermediateShortcodeArg( ShortcodeArg::String(text), _, diff --git a/crates/quarto-markdown-pandoc/tests/.DS_Store b/crates/quarto-markdown-pandoc/tests/.DS_Store new file mode 100644 index 0000000..9eab77b Binary files /dev/null and b/crates/quarto-markdown-pandoc/tests/.DS_Store differ diff --git a/crates/quarto-markdown-pandoc/tests/smoke/022.qmd b/crates/quarto-markdown-pandoc/tests/smoke/022.qmd new file mode 100644 index 0000000..7be3ba6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/smoke/022.qmd @@ -0,0 +1 @@ +{{< meta my-key >}} diff --git a/crates/quarto-markdown-pandoc/tests/smoke/023.qmd b/crates/quarto-markdown-pandoc/tests/smoke/023.qmd new file mode 100644 index 0000000..26837fb --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/smoke/023.qmd @@ -0,0 +1 @@ +{{< include file.qmd section >}} diff --git a/crates/quarto-markdown-pandoc/tests/smoke/024.qmd b/crates/quarto-markdown-pandoc/tests/smoke/024.qmd new file mode 100644 index 0000000..bdeedf4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/smoke/024.qmd @@ -0,0 +1 @@ +{{< pagebreak >}} diff --git a/crates/quarto-markdown-pandoc/tests/smoke/025.qmd b/crates/quarto-markdown-pandoc/tests/smoke/025.qmd new file mode 100644 index 0000000..04b6d5f --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/smoke/025.qmd @@ -0,0 +1 @@ +{{< video src="https://example.com" >}} diff --git a/crates/quarto-markdown-pandoc/tests/smoke/026.qmd b/crates/quarto-markdown-pandoc/tests/smoke/026.qmd new file mode 100644 index 0000000..7b9e90e --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/smoke/026.qmd @@ -0,0 +1 @@ +{{< video src="url" width=500 >}} diff --git a/crates/quarto-markdown-pandoc/tests/smoke/027.qmd b/crates/quarto-markdown-pandoc/tests/smoke/027.qmd new file mode 100644 index 0000000..dd99fbc --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/smoke/027.qmd @@ -0,0 +1 @@ +{{< meta key=value >}} diff --git a/crates/quarto-markdown-pandoc/tests/smoke/028.qmd b/crates/quarto-markdown-pandoc/tests/smoke/028.qmd new file mode 100644 index 0000000..d42010b --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/smoke/028.qmd @@ -0,0 +1 @@ +{{< video "url" width=500 autoplay=true >}} diff --git a/crates/quarto-markdown-pandoc/tests/smoke/029.qmd b/crates/quarto-markdown-pandoc/tests/smoke/029.qmd new file mode 100644 index 0000000..9a807df --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/smoke/029.qmd @@ -0,0 +1 @@ +{{< include file.qmd key=value >}} diff --git a/crates/quarto-markdown-pandoc/tests/test_warnings.rs b/crates/quarto-markdown-pandoc/tests/test_warnings.rs index 58f7330..3f22d0d 100644 --- a/crates/quarto-markdown-pandoc/tests/test_warnings.rs +++ b/crates/quarto-markdown-pandoc/tests/test_warnings.rs @@ -24,7 +24,10 @@ Some content ); // Parsing should succeed (warnings are not errors) - assert!(result.is_ok(), "Document should parse successfully despite warning"); + assert!( + result.is_ok(), + "Document should parse successfully despite warning" + ); // TODO: Once the fix is implemented, we need to verify that the warning // "Caption found without a preceding table" was actually output. @@ -56,13 +59,19 @@ fn test_caption_with_table_no_warning() { ); // Parsing should succeed and no warnings should be emitted - assert!(result.is_ok(), "Document with valid table caption should parse successfully"); + assert!( + result.is_ok(), + "Document with valid table caption should parse successfully" + ); let (pandoc, _context) = result.unwrap(); // Verify we have a table in the output assert!( - pandoc.blocks.iter().any(|b| matches!(b, quarto_markdown_pandoc::pandoc::Block::Table(_))), + pandoc + .blocks + .iter() + .any(|b| matches!(b, quarto_markdown_pandoc::pandoc::Block::Table(_))), "Should have a table in the output" ); } diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/grammar.js b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/grammar.js index 8793575..97d6141 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/grammar.js +++ b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/grammar.js @@ -79,6 +79,10 @@ module.exports = grammar(add_inline_rules({ $._shortcode_open, $._shortcode_close, + // External token for keyword parameter keys with equals sign (e.g. "key=" or "key =") + // This disambiguates positional args from keyword params at lexical level + $._key_name_and_equals, + // Token emitted when encountering opening delimiters for a leaf span // e.g. a code span, that does not have a matching closing span $._unclosed_span, @@ -102,7 +106,8 @@ module.exports = grammar(add_inline_rules({ [$._link_text, $._inline_element_no_tilde], [$.link_destination, $.link_title], [$._link_destination_parenthesis, $.link_title], - [$._shortcode_value, $.shortcode_keyword_param], + // Removed: [$._shortcode_value, $.shortcode_keyword_param] + // No longer needed - external token _key_name_and_equals eliminates ambiguity ], extras: $ => [], @@ -285,7 +290,14 @@ module.exports = grammar(add_inline_rules({ // // shortcode booleans are true or false shortcode_boolean: $ => choice(token(prec(2, "true")), token(prec(2, "false"))), - shortcode_keyword_param: $ => prec.left(prec(2, seq($.shortcode_name, optional($._whitespace), "=", optional($._whitespace), $._shortcode_value))), + // Key-value parameter using external token that includes the "=" to eliminate ambiguity + // The key_name_and_equals token matches: identifier [whitespace] = + // Example: "key=", "key =", "my-key=" + shortcode_keyword_param: $ => prec.left(prec(2, seq( + alias($._key_name_and_equals, $.shortcode_key_name_and_equals), + optional($._whitespace), + $._shortcode_value + ))), note_reference: $ => seq( alias('[^', $.note_reference_delimiter), diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/grammar.json b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/grammar.json index 4a97185..4c91b83 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/grammar.json +++ b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/grammar.json @@ -3020,24 +3020,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "shortcode_name" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_whitespace" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "=" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_key_name_and_equals" + }, + "named": true, + "value": "shortcode_key_name_and_equals" }, { "type": "CHOICE", @@ -5001,10 +4990,6 @@ "_link_destination_parenthesis", "link_title" ], - [ - "_shortcode_value", - "shortcode_keyword_param" - ], [ "_emphasis_star", "_inline_element" @@ -5285,6 +5270,10 @@ "type": "SYMBOL", "name": "_shortcode_close" }, + { + "type": "SYMBOL", + "name": "_key_name_and_equals" + }, { "type": "SYMBOL", "name": "_unclosed_span" diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/node-types.json b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/node-types.json index fe51766..27283f7 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/node-types.json +++ b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/node-types.json @@ -1721,6 +1721,10 @@ "type": "shortcode_boolean", "named": true }, + { + "type": "shortcode_key_name_and_equals", + "named": true + }, { "type": "shortcode_naked_string", "named": true @@ -2492,6 +2496,10 @@ "type": "shortcode_delimiter", "named": true }, + { + "type": "shortcode_key_name_and_equals", + "named": true + }, { "type": "shortcode_name", "named": true diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/parser.c b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/parser.c index 7e8ef10..65e98da 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/parser.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/parser.c @@ -15,12 +15,12 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 2899 +#define STATE_COUNT 2895 #define LARGE_STATE_COUNT 1786 -#define SYMBOL_COUNT 182 +#define SYMBOL_COUNT 183 #define ALIAS_COUNT 8 -#define TOKEN_COUNT 109 -#define EXTERNAL_TOKEN_COUNT 35 +#define TOKEN_COUNT 110 +#define EXTERNAL_TOKEN_COUNT 36 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 9 #define MAX_RESERVED_WORD_SET_SIZE 0 @@ -131,92 +131,93 @@ enum ts_symbol_identifiers { sym__shortcode_close_escaped = 101, sym__shortcode_open = 102, sym__shortcode_close = 103, - sym__unclosed_span = 104, - sym__strong_emphasis_open_star = 105, - sym__strong_emphasis_close_star = 106, - sym__strong_emphasis_open_underscore = 107, - sym__strong_emphasis_close_underscore = 108, - sym_inline = 109, - sym_backslash_escape = 110, - sym_link_destination = 111, - sym__link_destination_parenthesis = 112, - sym__text_no_angle = 113, - sym_link_title = 114, - sym__qmd_attribute = 115, - sym_raw_attribute = 116, - sym_commonmark_attribute = 117, - sym_language_attribute = 118, - sym__attribute = 119, - sym_key_value_value = 120, - sym_code_span = 121, - sym_latex_span = 122, - sym_insert = 123, - sym_delete = 124, - sym_highlight = 125, - sym_edit_comment = 126, - sym_superscript = 127, - sym_subscript = 128, - sym_strikeout = 129, - sym_quoted_span = 130, - sym_inline_note = 131, - sym_citation = 132, - sym_shortcode_escaped = 133, - sym_shortcode = 134, - sym__shortcode_value = 135, - sym_shortcode_naked_string = 136, - sym_shortcode_string = 137, - sym_shortcode_boolean = 138, - sym_shortcode_keyword_param = 139, - sym_note_reference = 140, - sym__link_text = 141, - sym__link_text_non_empty = 142, - sym_inline_link = 143, - sym_image = 144, - sym__image_inline_link = 145, - sym__image_description = 146, - sym__image_description_non_empty = 147, - sym_hard_line_break = 148, - sym__whitespace = 149, - sym__word = 150, - sym__soft_line_break = 151, - sym__inline_base = 152, - sym__text_base = 153, - sym__code_span_text_base = 154, - sym__inline_element = 155, - aux_sym__inline = 156, - sym__inline_element_no_star = 157, - aux_sym__inline_no_star = 158, - sym__inline_element_no_underscore = 159, - aux_sym__inline_no_underscore = 160, - sym__emphasis_star = 161, - sym__strong_emphasis_star = 162, - sym__emphasis_underscore = 163, - sym__strong_emphasis_underscore = 164, - aux_sym_link_destination_repeat1 = 165, - aux_sym_link_destination_repeat2 = 166, - aux_sym_link_title_repeat1 = 167, - aux_sym_link_title_repeat2 = 168, - aux_sym_link_title_repeat3 = 169, - aux_sym_commonmark_attribute_repeat1 = 170, - aux_sym_commonmark_attribute_repeat2 = 171, - aux_sym_commonmark_attribute_repeat3 = 172, - aux_sym_key_value_value_repeat1 = 173, - aux_sym_key_value_value_repeat2 = 174, - aux_sym_code_span_repeat1 = 175, - aux_sym_latex_span_repeat1 = 176, - aux_sym_insert_repeat1 = 177, - aux_sym_shortcode_escaped_repeat1 = 178, - aux_sym_shortcode_escaped_repeat2 = 179, - aux_sym_inline_link_repeat1 = 180, - aux_sym__inline_base_repeat1 = 181, - alias_sym_citation_id_suppress_author = 182, - alias_sym_code_content = 183, - alias_sym_image_description = 184, - alias_sym_language = 185, - alias_sym_latex_content = 186, - alias_sym_link_text = 187, - alias_sym_note_reference_id = 188, - alias_sym_soft_line_break = 189, + sym__key_name_and_equals = 104, + sym__unclosed_span = 105, + sym__strong_emphasis_open_star = 106, + sym__strong_emphasis_close_star = 107, + sym__strong_emphasis_open_underscore = 108, + sym__strong_emphasis_close_underscore = 109, + sym_inline = 110, + sym_backslash_escape = 111, + sym_link_destination = 112, + sym__link_destination_parenthesis = 113, + sym__text_no_angle = 114, + sym_link_title = 115, + sym__qmd_attribute = 116, + sym_raw_attribute = 117, + sym_commonmark_attribute = 118, + sym_language_attribute = 119, + sym__attribute = 120, + sym_key_value_value = 121, + sym_code_span = 122, + sym_latex_span = 123, + sym_insert = 124, + sym_delete = 125, + sym_highlight = 126, + sym_edit_comment = 127, + sym_superscript = 128, + sym_subscript = 129, + sym_strikeout = 130, + sym_quoted_span = 131, + sym_inline_note = 132, + sym_citation = 133, + sym_shortcode_escaped = 134, + sym_shortcode = 135, + sym__shortcode_value = 136, + sym_shortcode_naked_string = 137, + sym_shortcode_string = 138, + sym_shortcode_boolean = 139, + sym_shortcode_keyword_param = 140, + sym_note_reference = 141, + sym__link_text = 142, + sym__link_text_non_empty = 143, + sym_inline_link = 144, + sym_image = 145, + sym__image_inline_link = 146, + sym__image_description = 147, + sym__image_description_non_empty = 148, + sym_hard_line_break = 149, + sym__whitespace = 150, + sym__word = 151, + sym__soft_line_break = 152, + sym__inline_base = 153, + sym__text_base = 154, + sym__code_span_text_base = 155, + sym__inline_element = 156, + aux_sym__inline = 157, + sym__inline_element_no_star = 158, + aux_sym__inline_no_star = 159, + sym__inline_element_no_underscore = 160, + aux_sym__inline_no_underscore = 161, + sym__emphasis_star = 162, + sym__strong_emphasis_star = 163, + sym__emphasis_underscore = 164, + sym__strong_emphasis_underscore = 165, + aux_sym_link_destination_repeat1 = 166, + aux_sym_link_destination_repeat2 = 167, + aux_sym_link_title_repeat1 = 168, + aux_sym_link_title_repeat2 = 169, + aux_sym_link_title_repeat3 = 170, + aux_sym_commonmark_attribute_repeat1 = 171, + aux_sym_commonmark_attribute_repeat2 = 172, + aux_sym_commonmark_attribute_repeat3 = 173, + aux_sym_key_value_value_repeat1 = 174, + aux_sym_key_value_value_repeat2 = 175, + aux_sym_code_span_repeat1 = 176, + aux_sym_latex_span_repeat1 = 177, + aux_sym_insert_repeat1 = 178, + aux_sym_shortcode_escaped_repeat1 = 179, + aux_sym_shortcode_escaped_repeat2 = 180, + aux_sym_inline_link_repeat1 = 181, + aux_sym__inline_base_repeat1 = 182, + alias_sym_citation_id_suppress_author = 183, + alias_sym_code_content = 184, + alias_sym_image_description = 185, + alias_sym_language = 186, + alias_sym_latex_content = 187, + alias_sym_link_text = 188, + alias_sym_note_reference_id = 189, + alias_sym_soft_line_break = 190, }; static const char * const ts_symbol_names[] = { @@ -324,6 +325,7 @@ static const char * const ts_symbol_names[] = { [sym__shortcode_close_escaped] = "shortcode_delimiter", [sym__shortcode_open] = "shortcode_delimiter", [sym__shortcode_close] = "shortcode_delimiter", + [sym__key_name_and_equals] = "shortcode_key_name_and_equals", [sym__unclosed_span] = "_unclosed_span", [sym__strong_emphasis_open_star] = "emphasis_delimiter", [sym__strong_emphasis_close_star] = "emphasis_delimiter", @@ -517,6 +519,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__shortcode_close_escaped] = sym__shortcode_open_escaped, [sym__shortcode_open] = sym__shortcode_open_escaped, [sym__shortcode_close] = sym__shortcode_open_escaped, + [sym__key_name_and_equals] = sym__key_name_and_equals, [sym__unclosed_span] = sym__unclosed_span, [sym__strong_emphasis_open_star] = sym__emphasis_open_star, [sym__strong_emphasis_close_star] = sym__emphasis_open_star, @@ -1022,6 +1025,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__key_name_and_equals] = { + .visible = true, + .named = true, + }, [sym__unclosed_span] = { .visible = false, .named = true, @@ -1517,19 +1524,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [43] = 43, [44] = 44, [45] = 45, - [46] = 38, - [47] = 40, - [48] = 42, - [49] = 43, - [50] = 43, - [51] = 43, - [52] = 43, - [53] = 43, - [54] = 43, - [55] = 41, + [46] = 37, + [47] = 39, + [48] = 41, + [49] = 42, + [50] = 42, + [51] = 42, + [52] = 42, + [53] = 42, + [54] = 42, + [55] = 45, [56] = 56, [57] = 57, - [58] = 58, + [58] = 14, [59] = 59, [60] = 60, [61] = 61, @@ -1537,29 +1544,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [63] = 16, [64] = 17, [65] = 56, - [66] = 20, - [67] = 21, - [68] = 23, - [69] = 24, - [70] = 25, - [71] = 26, - [72] = 27, - [73] = 28, - [74] = 29, - [75] = 31, - [76] = 32, - [77] = 33, - [78] = 34, - [79] = 35, - [80] = 36, - [81] = 37, - [82] = 39, - [83] = 14, - [84] = 45, - [85] = 41, + [66] = 19, + [67] = 20, + [68] = 22, + [69] = 23, + [70] = 24, + [71] = 25, + [72] = 26, + [73] = 27, + [74] = 28, + [75] = 30, + [76] = 31, + [77] = 32, + [78] = 33, + [79] = 34, + [80] = 35, + [81] = 36, + [82] = 38, + [83] = 40, + [84] = 44, + [85] = 45, [86] = 56, [87] = 57, - [88] = 58, + [88] = 14, [89] = 59, [90] = 60, [91] = 61, @@ -1567,59 +1574,59 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [93] = 16, [94] = 17, [95] = 57, - [96] = 20, - [97] = 21, - [98] = 23, - [99] = 24, - [100] = 25, - [101] = 26, - [102] = 27, - [103] = 28, - [104] = 29, - [105] = 31, - [106] = 32, - [107] = 33, - [108] = 34, - [109] = 35, - [110] = 36, - [111] = 37, - [112] = 39, - [113] = 14, - [114] = 45, - [115] = 41, + [96] = 19, + [97] = 20, + [98] = 22, + [99] = 23, + [100] = 24, + [101] = 25, + [102] = 26, + [103] = 27, + [104] = 28, + [105] = 30, + [106] = 31, + [107] = 32, + [108] = 33, + [109] = 34, + [110] = 35, + [111] = 36, + [112] = 38, + [113] = 40, + [114] = 44, + [115] = 45, [116] = 56, [117] = 57, - [118] = 58, + [118] = 14, [119] = 59, [120] = 60, [121] = 61, [122] = 15, [123] = 16, [124] = 17, - [125] = 58, - [126] = 20, - [127] = 21, - [128] = 23, - [129] = 24, - [130] = 25, - [131] = 26, - [132] = 27, - [133] = 28, - [134] = 29, - [135] = 31, - [136] = 32, - [137] = 33, - [138] = 34, - [139] = 35, - [140] = 36, - [141] = 37, - [142] = 39, - [143] = 14, - [144] = 45, - [145] = 41, + [125] = 125, + [126] = 19, + [127] = 20, + [128] = 22, + [129] = 23, + [130] = 24, + [131] = 25, + [132] = 26, + [133] = 27, + [134] = 28, + [135] = 30, + [136] = 31, + [137] = 32, + [138] = 33, + [139] = 34, + [140] = 35, + [141] = 36, + [142] = 38, + [143] = 40, + [144] = 44, + [145] = 45, [146] = 56, [147] = 57, - [148] = 58, + [148] = 14, [149] = 59, [150] = 60, [151] = 61, @@ -1627,145 +1634,145 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [153] = 16, [154] = 17, [155] = 59, - [156] = 20, - [157] = 21, - [158] = 23, - [159] = 24, - [160] = 25, - [161] = 26, - [162] = 27, - [163] = 28, - [164] = 29, - [165] = 31, - [166] = 32, - [167] = 33, - [168] = 34, - [169] = 35, - [170] = 36, - [171] = 37, - [172] = 39, - [173] = 14, - [174] = 45, - [175] = 41, + [156] = 19, + [157] = 20, + [158] = 22, + [159] = 23, + [160] = 24, + [161] = 25, + [162] = 26, + [163] = 27, + [164] = 28, + [165] = 30, + [166] = 31, + [167] = 32, + [168] = 33, + [169] = 34, + [170] = 35, + [171] = 36, + [172] = 38, + [173] = 40, + [174] = 44, + [175] = 45, [176] = 56, [177] = 57, - [178] = 58, + [178] = 14, [179] = 59, [180] = 60, [181] = 61, [182] = 15, [183] = 16, [184] = 17, - [185] = 20, - [186] = 21, - [187] = 23, - [188] = 24, - [189] = 25, - [190] = 26, - [191] = 27, - [192] = 28, - [193] = 29, - [194] = 31, - [195] = 32, - [196] = 33, - [197] = 34, - [198] = 35, - [199] = 36, - [200] = 37, - [201] = 39, - [202] = 14, - [203] = 45, - [204] = 41, + [185] = 19, + [186] = 20, + [187] = 22, + [188] = 23, + [189] = 24, + [190] = 25, + [191] = 26, + [192] = 27, + [193] = 28, + [194] = 30, + [195] = 31, + [196] = 32, + [197] = 33, + [198] = 34, + [199] = 35, + [200] = 36, + [201] = 38, + [202] = 40, + [203] = 44, + [204] = 45, [205] = 56, [206] = 57, - [207] = 58, + [207] = 14, [208] = 59, [209] = 60, [210] = 61, [211] = 15, [212] = 16, [213] = 17, - [214] = 20, - [215] = 21, - [216] = 23, - [217] = 24, - [218] = 25, - [219] = 26, - [220] = 27, - [221] = 28, - [222] = 29, - [223] = 31, - [224] = 32, - [225] = 33, - [226] = 34, - [227] = 35, - [228] = 36, - [229] = 37, + [214] = 19, + [215] = 20, + [216] = 22, + [217] = 23, + [218] = 24, + [219] = 25, + [220] = 26, + [221] = 27, + [222] = 28, + [223] = 30, + [224] = 31, + [225] = 32, + [226] = 33, + [227] = 34, + [228] = 35, + [229] = 36, [230] = 61, - [231] = 14, - [232] = 45, - [233] = 41, + [231] = 40, + [232] = 44, + [233] = 45, [234] = 56, [235] = 57, - [236] = 58, + [236] = 14, [237] = 59, [238] = 60, [239] = 61, [240] = 15, [241] = 16, [242] = 17, - [243] = 20, - [244] = 21, - [245] = 23, - [246] = 24, - [247] = 25, - [248] = 26, - [249] = 27, - [250] = 28, - [251] = 29, - [252] = 31, - [253] = 32, - [254] = 33, - [255] = 34, - [256] = 35, - [257] = 36, - [258] = 37, - [259] = 39, - [260] = 14, - [261] = 45, - [262] = 41, + [243] = 19, + [244] = 20, + [245] = 22, + [246] = 23, + [247] = 24, + [248] = 25, + [249] = 26, + [250] = 27, + [251] = 28, + [252] = 30, + [253] = 31, + [254] = 32, + [255] = 33, + [256] = 34, + [257] = 35, + [258] = 36, + [259] = 38, + [260] = 40, + [261] = 44, + [262] = 45, [263] = 56, [264] = 57, - [265] = 58, + [265] = 14, [266] = 59, [267] = 60, [268] = 61, [269] = 15, [270] = 16, [271] = 17, - [272] = 20, - [273] = 21, - [274] = 23, - [275] = 24, - [276] = 25, - [277] = 26, - [278] = 27, - [279] = 28, - [280] = 29, - [281] = 31, - [282] = 32, - [283] = 33, - [284] = 34, - [285] = 35, - [286] = 36, - [287] = 37, - [288] = 39, - [289] = 14, - [290] = 45, - [291] = 41, + [272] = 19, + [273] = 20, + [274] = 22, + [275] = 23, + [276] = 24, + [277] = 25, + [278] = 26, + [279] = 27, + [280] = 28, + [281] = 30, + [282] = 31, + [283] = 32, + [284] = 33, + [285] = 34, + [286] = 35, + [287] = 36, + [288] = 38, + [289] = 40, + [290] = 44, + [291] = 45, [292] = 56, [293] = 57, - [294] = 58, + [294] = 14, [295] = 59, [296] = 60, [297] = 61, @@ -1773,107 +1780,107 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [299] = 16, [300] = 17, [301] = 60, - [302] = 20, - [303] = 21, - [304] = 23, - [305] = 24, - [306] = 25, - [307] = 26, - [308] = 27, - [309] = 28, - [310] = 29, - [311] = 31, - [312] = 32, - [313] = 33, - [314] = 34, - [315] = 35, - [316] = 36, - [317] = 37, - [318] = 39, - [319] = 14, - [320] = 45, - [321] = 41, + [302] = 19, + [303] = 20, + [304] = 22, + [305] = 23, + [306] = 24, + [307] = 25, + [308] = 26, + [309] = 27, + [310] = 28, + [311] = 30, + [312] = 31, + [313] = 32, + [314] = 33, + [315] = 34, + [316] = 35, + [317] = 36, + [318] = 38, + [319] = 40, + [320] = 44, + [321] = 45, [322] = 56, [323] = 57, - [324] = 58, + [324] = 14, [325] = 59, [326] = 60, [327] = 61, [328] = 15, [329] = 16, [330] = 17, - [331] = 20, - [332] = 21, - [333] = 23, - [334] = 24, - [335] = 25, - [336] = 26, - [337] = 27, - [338] = 28, - [339] = 29, - [340] = 31, - [341] = 32, - [342] = 33, - [343] = 34, - [344] = 35, - [345] = 36, - [346] = 37, - [347] = 39, - [348] = 14, - [349] = 45, - [350] = 41, + [331] = 19, + [332] = 20, + [333] = 22, + [334] = 23, + [335] = 24, + [336] = 25, + [337] = 26, + [338] = 27, + [339] = 28, + [340] = 30, + [341] = 31, + [342] = 32, + [343] = 33, + [344] = 34, + [345] = 35, + [346] = 36, + [347] = 38, + [348] = 40, + [349] = 44, + [350] = 45, [351] = 56, [352] = 57, - [353] = 58, + [353] = 14, [354] = 59, [355] = 60, [356] = 61, [357] = 15, [358] = 16, [359] = 17, - [360] = 20, - [361] = 21, - [362] = 23, - [363] = 24, - [364] = 25, - [365] = 26, - [366] = 27, - [367] = 28, - [368] = 29, - [369] = 31, - [370] = 32, - [371] = 33, - [372] = 34, - [373] = 35, - [374] = 36, - [375] = 37, - [376] = 39, - [377] = 14, - [378] = 45, + [360] = 19, + [361] = 20, + [362] = 22, + [363] = 23, + [364] = 24, + [365] = 25, + [366] = 26, + [367] = 27, + [368] = 28, + [369] = 30, + [370] = 31, + [371] = 32, + [372] = 33, + [373] = 34, + [374] = 35, + [375] = 36, + [376] = 38, + [377] = 40, + [378] = 44, [379] = 379, - [380] = 18, + [380] = 125, [381] = 379, - [382] = 18, + [382] = 125, [383] = 379, - [384] = 18, + [384] = 125, [385] = 379, - [386] = 18, + [386] = 125, [387] = 379, - [388] = 18, + [388] = 125, [389] = 379, - [390] = 18, + [390] = 125, [391] = 379, - [392] = 18, + [392] = 125, [393] = 379, - [394] = 18, + [394] = 125, [395] = 379, - [396] = 18, + [396] = 125, [397] = 379, [398] = 379, - [399] = 18, + [399] = 125, [400] = 379, - [401] = 18, - [402] = 39, + [401] = 125, + [402] = 38, [403] = 403, [404] = 404, [405] = 405, @@ -1924,29 +1931,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [450] = 408, [451] = 403, [452] = 452, - [453] = 453, - [454] = 452, + [453] = 452, + [454] = 454, [455] = 452, [456] = 452, - [457] = 453, - [458] = 452, + [457] = 452, + [458] = 454, [459] = 452, - [460] = 453, - [461] = 453, + [460] = 454, + [461] = 454, [462] = 452, - [463] = 453, - [464] = 453, + [463] = 454, + [464] = 454, [465] = 452, - [466] = 453, - [467] = 452, - [468] = 453, - [469] = 452, - [470] = 453, - [471] = 453, + [466] = 452, + [467] = 454, + [468] = 454, + [469] = 454, + [470] = 452, + [471] = 454, [472] = 452, - [473] = 453, + [473] = 454, [474] = 452, - [475] = 453, + [475] = 454, [476] = 476, [477] = 477, [478] = 478, @@ -1963,19 +1970,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [489] = 489, [490] = 490, [491] = 491, - [492] = 492, - [493] = 478, - [494] = 476, + [492] = 478, + [493] = 493, + [494] = 494, [495] = 495, [496] = 496, [497] = 497, - [498] = 498, - [499] = 499, - [500] = 477, - [501] = 478, - [502] = 479, - [503] = 480, - [504] = 481, + [498] = 477, + [499] = 478, + [500] = 479, + [501] = 481, + [502] = 480, + [503] = 481, + [504] = 504, [505] = 482, [506] = 483, [507] = 484, @@ -1986,21 +1993,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [512] = 489, [513] = 490, [514] = 491, - [515] = 495, - [516] = 497, + [515] = 493, + [516] = 495, [517] = 517, [518] = 476, - [519] = 496, - [520] = 498, - [521] = 521, + [519] = 494, + [520] = 496, + [521] = 504, [522] = 522, - [523] = 521, - [524] = 482, - [525] = 492, - [526] = 483, - [527] = 522, - [528] = 517, - [529] = 499, + [523] = 482, + [524] = 483, + [525] = 525, + [526] = 522, + [527] = 517, + [528] = 484, + [529] = 497, [530] = 477, [531] = 478, [532] = 479, @@ -2016,125 +2023,125 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [542] = 489, [543] = 490, [544] = 491, - [545] = 495, - [546] = 497, - [547] = 484, + [545] = 493, + [546] = 495, + [547] = 485, [548] = 517, [549] = 476, - [550] = 496, - [551] = 498, - [552] = 521, + [550] = 494, + [551] = 496, + [552] = 504, [553] = 522, - [554] = 485, - [555] = 492, - [556] = 486, - [557] = 499, - [558] = 477, - [559] = 478, - [560] = 479, - [561] = 480, - [562] = 481, - [563] = 482, - [564] = 483, - [565] = 484, - [566] = 485, - [567] = 486, - [568] = 487, - [569] = 488, - [570] = 489, - [571] = 490, - [572] = 491, + [554] = 486, + [555] = 525, + [556] = 497, + [557] = 477, + [558] = 478, + [559] = 479, + [560] = 480, + [561] = 481, + [562] = 482, + [563] = 483, + [564] = 484, + [565] = 485, + [566] = 486, + [567] = 487, + [568] = 488, + [569] = 489, + [570] = 490, + [571] = 491, + [572] = 493, [573] = 495, - [574] = 497, - [575] = 487, - [576] = 517, - [577] = 476, + [574] = 487, + [575] = 517, + [576] = 476, + [577] = 494, [578] = 496, - [579] = 498, - [580] = 521, - [581] = 522, - [582] = 488, - [583] = 492, - [584] = 499, - [585] = 477, - [586] = 478, - [587] = 479, - [588] = 480, - [589] = 489, - [590] = 481, - [591] = 482, - [592] = 483, - [593] = 484, - [594] = 485, - [595] = 486, - [596] = 487, - [597] = 488, - [598] = 489, - [599] = 490, - [600] = 491, + [579] = 504, + [580] = 522, + [581] = 488, + [582] = 525, + [583] = 497, + [584] = 477, + [585] = 478, + [586] = 479, + [587] = 480, + [588] = 489, + [589] = 481, + [590] = 482, + [591] = 483, + [592] = 484, + [593] = 485, + [594] = 486, + [595] = 487, + [596] = 488, + [597] = 489, + [598] = 490, + [599] = 491, + [600] = 493, [601] = 495, - [602] = 497, - [603] = 490, - [604] = 517, - [605] = 476, + [602] = 490, + [603] = 517, + [604] = 476, + [605] = 494, [606] = 496, - [607] = 498, - [608] = 521, - [609] = 522, - [610] = 491, - [611] = 492, - [612] = 499, - [613] = 477, - [614] = 478, - [615] = 479, - [616] = 480, - [617] = 481, - [618] = 482, - [619] = 483, - [620] = 484, - [621] = 485, - [622] = 486, - [623] = 487, - [624] = 488, - [625] = 489, - [626] = 490, - [627] = 491, + [607] = 504, + [608] = 522, + [609] = 491, + [610] = 525, + [611] = 497, + [612] = 477, + [613] = 478, + [614] = 479, + [615] = 480, + [616] = 481, + [617] = 482, + [618] = 483, + [619] = 484, + [620] = 485, + [621] = 486, + [622] = 487, + [623] = 488, + [624] = 489, + [625] = 490, + [626] = 491, + [627] = 493, [628] = 495, - [629] = 497, - [630] = 517, - [631] = 476, + [629] = 517, + [630] = 476, + [631] = 494, [632] = 496, - [633] = 498, - [634] = 521, - [635] = 522, - [636] = 492, - [637] = 499, - [638] = 477, - [639] = 478, - [640] = 479, - [641] = 480, - [642] = 481, - [643] = 482, - [644] = 483, - [645] = 484, - [646] = 485, - [647] = 486, - [648] = 487, - [649] = 488, - [650] = 489, - [651] = 490, - [652] = 491, + [633] = 504, + [634] = 522, + [635] = 525, + [636] = 497, + [637] = 477, + [638] = 478, + [639] = 479, + [640] = 480, + [641] = 481, + [642] = 482, + [643] = 483, + [644] = 484, + [645] = 485, + [646] = 486, + [647] = 487, + [648] = 488, + [649] = 489, + [650] = 490, + [651] = 491, + [652] = 493, [653] = 495, - [654] = 497, - [655] = 517, - [656] = 476, + [654] = 517, + [655] = 476, + [656] = 494, [657] = 496, - [658] = 498, - [659] = 521, - [660] = 522, - [661] = 492, - [662] = 495, - [663] = 499, + [658] = 504, + [659] = 522, + [660] = 493, + [661] = 525, + [662] = 525, + [663] = 497, [664] = 477, [665] = 478, [666] = 479, @@ -2150,18 +2157,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [676] = 489, [677] = 490, [678] = 491, - [679] = 495, - [680] = 497, - [681] = 497, + [679] = 493, + [680] = 495, + [681] = 495, [682] = 517, [683] = 476, - [684] = 496, - [685] = 498, - [686] = 521, + [684] = 494, + [685] = 496, + [686] = 504, [687] = 522, [688] = 479, - [689] = 492, - [690] = 499, + [689] = 525, + [690] = 497, [691] = 477, [692] = 478, [693] = 479, @@ -2177,18 +2184,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [703] = 489, [704] = 490, [705] = 491, - [706] = 495, - [707] = 497, + [706] = 493, + [707] = 495, [708] = 517, [709] = 517, [710] = 476, - [711] = 496, - [712] = 498, - [713] = 521, + [711] = 494, + [712] = 496, + [713] = 504, [714] = 522, [715] = 477, - [716] = 492, - [717] = 499, + [716] = 525, + [717] = 497, [718] = 477, [719] = 478, [720] = 479, @@ -2201,14 +2208,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [727] = 486, [728] = 487, [729] = 488, - [730] = 496, - [731] = 498, - [732] = 521, + [730] = 494, + [731] = 496, + [732] = 504, [733] = 522, [734] = 489, [735] = 490, - [736] = 492, - [737] = 499, + [736] = 525, + [737] = 497, [738] = 491, [739] = 477, [740] = 478, @@ -2219,8 +2226,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [745] = 483, [746] = 484, [747] = 485, - [748] = 495, - [749] = 497, + [748] = 493, + [749] = 495, [750] = 486, [751] = 487, [752] = 488, @@ -2229,144 +2236,144 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [755] = 517, [756] = 491, [757] = 476, - [758] = 496, - [759] = 495, - [760] = 498, - [761] = 521, + [758] = 494, + [759] = 493, + [760] = 496, + [761] = 504, [762] = 522, - [763] = 497, + [763] = 495, [764] = 517, [765] = 476, - [766] = 496, - [767] = 498, - [768] = 521, + [766] = 494, + [767] = 496, + [768] = 504, [769] = 522, - [770] = 492, - [771] = 499, + [770] = 525, + [771] = 497, [772] = 480, - [773] = 492, - [774] = 499, - [775] = 481, + [773] = 525, + [774] = 497, + [775] = 476, [776] = 776, - [777] = 777, - [778] = 777, - [779] = 777, - [780] = 776, - [781] = 777, + [777] = 776, + [778] = 778, + [779] = 776, + [780] = 778, + [781] = 776, [782] = 776, - [783] = 777, - [784] = 776, - [785] = 777, + [783] = 778, + [784] = 778, + [785] = 776, [786] = 776, - [787] = 777, - [788] = 777, - [789] = 776, - [790] = 776, + [787] = 778, + [788] = 776, + [789] = 778, + [790] = 778, [791] = 776, - [792] = 777, - [793] = 776, + [792] = 778, + [793] = 778, [794] = 776, - [795] = 777, + [795] = 778, [796] = 776, - [797] = 777, + [797] = 778, [798] = 776, - [799] = 777, + [799] = 778, [800] = 800, - [801] = 800, - [802] = 800, + [801] = 801, + [802] = 802, [803] = 803, - [804] = 804, + [804] = 800, [805] = 805, - [806] = 803, + [806] = 806, [807] = 807, - [808] = 805, - [809] = 807, - [810] = 800, - [811] = 804, + [808] = 803, + [809] = 803, + [810] = 803, + [811] = 801, [812] = 812, - [813] = 812, - [814] = 803, - [815] = 805, - [816] = 807, - [817] = 805, - [818] = 803, - [819] = 819, - [820] = 820, - [821] = 805, - [822] = 803, - [823] = 804, - [824] = 807, - [825] = 807, - [826] = 800, - [827] = 807, - [828] = 805, - [829] = 804, - [830] = 800, - [831] = 804, - [832] = 812, - [833] = 800, - [834] = 803, - [835] = 804, + [813] = 800, + [814] = 801, + [815] = 800, + [816] = 805, + [817] = 806, + [818] = 805, + [819] = 802, + [820] = 807, + [821] = 806, + [822] = 812, + [823] = 800, + [824] = 803, + [825] = 803, + [826] = 801, + [827] = 806, + [828] = 801, + [829] = 801, + [830] = 803, + [831] = 800, + [832] = 801, + [833] = 812, + [834] = 805, + [835] = 805, [836] = 812, [837] = 812, - [838] = 819, - [839] = 803, - [840] = 800, - [841] = 819, - [842] = 803, - [843] = 820, - [844] = 820, - [845] = 804, - [846] = 819, - [847] = 805, - [848] = 800, - [849] = 820, - [850] = 819, - [851] = 819, - [852] = 804, - [853] = 807, - [854] = 804, - [855] = 820, - [856] = 820, - [857] = 812, - [858] = 804, - [859] = 804, - [860] = 804, + [838] = 802, + [839] = 805, + [840] = 806, + [841] = 803, + [842] = 805, + [843] = 800, + [844] = 802, + [845] = 807, + [846] = 802, + [847] = 806, + [848] = 802, + [849] = 807, + [850] = 802, + [851] = 802, + [852] = 800, + [853] = 803, + [854] = 805, + [855] = 807, + [856] = 807, + [857] = 801, + [858] = 800, + [859] = 801, + [860] = 800, [861] = 812, - [862] = 819, - [863] = 807, - [864] = 812, - [865] = 819, - [866] = 819, - [867] = 812, - [868] = 803, - [869] = 805, - [870] = 820, - [871] = 820, - [872] = 803, - [873] = 807, - [874] = 803, - [875] = 800, - [876] = 805, + [862] = 812, + [863] = 800, + [864] = 807, + [865] = 806, + [866] = 812, + [867] = 802, + [868] = 805, + [869] = 806, + [870] = 802, + [871] = 800, + [872] = 805, + [873] = 803, + [874] = 807, + [875] = 801, + [876] = 806, [877] = 805, - [878] = 807, - [879] = 819, - [880] = 800, - [881] = 820, - [882] = 819, + [878] = 803, + [879] = 806, + [880] = 801, + [881] = 807, + [882] = 807, [883] = 812, - [884] = 820, - [885] = 803, - [886] = 805, + [884] = 802, + [885] = 805, + [886] = 806, [887] = 807, - [888] = 820, - [889] = 800, - [890] = 819, + [888] = 803, + [889] = 801, + [890] = 807, [891] = 812, - [892] = 820, + [892] = 812, [893] = 812, - [894] = 805, - [895] = 807, + [894] = 802, + [895] = 806, [896] = 896, [897] = 897, [898] = 898, @@ -2385,18 +2392,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [911] = 911, [912] = 912, [913] = 913, - [914] = 914, + [914] = 900, [915] = 915, - [916] = 916, + [916] = 901, [917] = 917, - [918] = 904, + [918] = 918, [919] = 919, - [920] = 905, + [920] = 920, [921] = 921, [922] = 922, [923] = 923, [924] = 924, - [925] = 896, + [925] = 925, [926] = 926, [927] = 927, [928] = 928, @@ -2427,12 +2434,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [953] = 953, [954] = 954, [955] = 955, - [956] = 956, + [956] = 902, [957] = 957, [958] = 958, [959] = 959, - [960] = 906, - [961] = 961, + [960] = 960, + [961] = 896, [962] = 962, [963] = 963, [964] = 964, @@ -2445,52 +2452,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [971] = 971, [972] = 972, [973] = 973, - [974] = 897, - [975] = 898, - [976] = 899, - [977] = 900, - [978] = 907, + [974] = 903, + [975] = 897, + [976] = 898, + [977] = 899, + [978] = 900, [979] = 901, [980] = 902, - [981] = 903, - [982] = 904, + [981] = 932, + [982] = 903, [983] = 905, [984] = 906, - [985] = 936, - [986] = 907, - [987] = 908, - [988] = 909, - [989] = 910, - [990] = 911, - [991] = 912, - [992] = 973, - [993] = 914, - [994] = 915, - [995] = 916, - [996] = 917, - [997] = 919, - [998] = 908, - [999] = 921, - [1000] = 922, - [1001] = 923, - [1002] = 924, - [1003] = 909, - [1004] = 910, - [1005] = 896, - [1006] = 926, - [1007] = 927, - [1008] = 928, - [1009] = 929, - [1010] = 930, - [1011] = 931, - [1012] = 932, - [1013] = 933, - [1014] = 934, + [985] = 907, + [986] = 908, + [987] = 909, + [988] = 910, + [989] = 911, + [990] = 912, + [991] = 913, + [992] = 915, + [993] = 904, + [994] = 917, + [995] = 918, + [996] = 919, + [997] = 920, + [998] = 905, + [999] = 906, + [1000] = 921, + [1001] = 922, + [1002] = 923, + [1003] = 924, + [1004] = 925, + [1005] = 926, + [1006] = 927, + [1007] = 928, + [1008] = 929, + [1009] = 930, + [1010] = 931, + [1011] = 932, + [1012] = 933, + [1013] = 934, + [1014] = 907, [1015] = 935, [1016] = 936, [1017] = 937, [1018] = 938, - [1019] = 911, + [1019] = 908, [1020] = 939, [1021] = 940, [1022] = 941, @@ -2506,757 +2513,757 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1032] = 951, [1033] = 952, [1034] = 953, - [1035] = 954, - [1036] = 955, - [1037] = 956, + [1035] = 933, + [1036] = 954, + [1037] = 955, [1038] = 957, - [1039] = 912, + [1039] = 909, [1040] = 958, - [1041] = 937, - [1042] = 959, - [1043] = 961, - [1044] = 913, - [1045] = 962, - [1046] = 963, - [1047] = 964, - [1048] = 965, - [1049] = 966, - [1050] = 967, - [1051] = 968, + [1041] = 959, + [1042] = 960, + [1043] = 896, + [1044] = 962, + [1045] = 963, + [1046] = 964, + [1047] = 965, + [1048] = 966, + [1049] = 967, + [1050] = 968, + [1051] = 910, [1052] = 969, [1053] = 970, [1054] = 971, [1055] = 972, - [1056] = 973, - [1057] = 897, - [1058] = 898, - [1059] = 899, - [1060] = 900, - [1061] = 901, - [1062] = 902, - [1063] = 903, - [1064] = 904, - [1065] = 905, - [1066] = 906, - [1067] = 914, - [1068] = 907, - [1069] = 915, + [1056] = 911, + [1057] = 973, + [1058] = 912, + [1059] = 897, + [1060] = 898, + [1061] = 899, + [1062] = 900, + [1063] = 901, + [1064] = 902, + [1065] = 903, + [1066] = 904, + [1067] = 905, + [1068] = 906, + [1069] = 907, [1070] = 908, - [1071] = 909, - [1072] = 910, - [1073] = 911, - [1074] = 912, - [1075] = 916, + [1071] = 913, + [1072] = 909, + [1073] = 910, + [1074] = 911, + [1075] = 912, [1076] = 913, - [1077] = 914, + [1077] = 915, [1078] = 915, - [1079] = 916, + [1079] = 917, [1080] = 917, - [1081] = 917, + [1081] = 918, [1082] = 919, - [1083] = 921, - [1084] = 922, - [1085] = 923, - [1086] = 924, - [1087] = 919, - [1088] = 921, - [1089] = 896, - [1090] = 922, - [1091] = 926, - [1092] = 927, - [1093] = 923, - [1094] = 924, + [1083] = 920, + [1084] = 918, + [1085] = 919, + [1086] = 920, + [1087] = 921, + [1088] = 922, + [1089] = 923, + [1090] = 934, + [1091] = 924, + [1092] = 925, + [1093] = 926, + [1094] = 927, [1095] = 928, [1096] = 929, [1097] = 930, [1098] = 931, - [1099] = 932, - [1100] = 933, - [1101] = 934, - [1102] = 935, - [1103] = 936, - [1104] = 937, - [1105] = 938, - [1106] = 938, - [1107] = 939, - [1108] = 940, - [1109] = 941, - [1110] = 896, - [1111] = 942, - [1112] = 943, - [1113] = 944, - [1114] = 945, - [1115] = 946, - [1116] = 947, - [1117] = 948, - [1118] = 949, - [1119] = 950, - [1120] = 951, - [1121] = 952, - [1122] = 953, - [1123] = 954, - [1124] = 955, - [1125] = 956, - [1126] = 957, - [1127] = 958, - [1128] = 926, - [1129] = 959, - [1130] = 927, - [1131] = 961, - [1132] = 1132, - [1133] = 962, - [1134] = 963, - [1135] = 928, - [1136] = 929, - [1137] = 964, - [1138] = 965, - [1139] = 966, - [1140] = 967, - [1141] = 968, - [1142] = 969, - [1143] = 970, - [1144] = 971, - [1145] = 972, - [1146] = 930, - [1147] = 973, - [1148] = 897, - [1149] = 898, - [1150] = 899, - [1151] = 931, - [1152] = 900, - [1153] = 932, - [1154] = 901, - [1155] = 902, - [1156] = 903, - [1157] = 904, - [1158] = 905, - [1159] = 906, - [1160] = 933, - [1161] = 907, - [1162] = 934, - [1163] = 908, - [1164] = 909, - [1165] = 910, - [1166] = 911, - [1167] = 912, - [1168] = 935, - [1169] = 913, - [1170] = 924, - [1171] = 914, + [1099] = 921, + [1100] = 932, + [1101] = 933, + [1102] = 934, + [1103] = 922, + [1104] = 923, + [1105] = 1105, + [1106] = 935, + [1107] = 936, + [1108] = 937, + [1109] = 938, + [1110] = 939, + [1111] = 940, + [1112] = 941, + [1113] = 942, + [1114] = 943, + [1115] = 944, + [1116] = 945, + [1117] = 946, + [1118] = 947, + [1119] = 948, + [1120] = 949, + [1121] = 950, + [1122] = 951, + [1123] = 952, + [1124] = 953, + [1125] = 924, + [1126] = 954, + [1127] = 925, + [1128] = 955, + [1129] = 926, + [1130] = 957, + [1131] = 927, + [1132] = 928, + [1133] = 958, + [1134] = 929, + [1135] = 959, + [1136] = 930, + [1137] = 931, + [1138] = 960, + [1139] = 896, + [1140] = 962, + [1141] = 963, + [1142] = 964, + [1143] = 965, + [1144] = 966, + [1145] = 967, + [1146] = 968, + [1147] = 969, + [1148] = 970, + [1149] = 971, + [1150] = 972, + [1151] = 932, + [1152] = 973, + [1153] = 933, + [1154] = 897, + [1155] = 898, + [1156] = 899, + [1157] = 900, + [1158] = 901, + [1159] = 902, + [1160] = 903, + [1161] = 904, + [1162] = 905, + [1163] = 906, + [1164] = 907, + [1165] = 908, + [1166] = 920, + [1167] = 909, + [1168] = 910, + [1169] = 911, + [1170] = 912, + [1171] = 913, [1172] = 915, - [1173] = 916, - [1174] = 936, - [1175] = 917, - [1176] = 937, - [1177] = 919, - [1178] = 921, - [1179] = 922, - [1180] = 923, - [1181] = 924, - [1182] = 928, - [1183] = 896, - [1184] = 940, - [1185] = 926, - [1186] = 927, - [1187] = 941, - [1188] = 928, - [1189] = 929, - [1190] = 930, - [1191] = 931, - [1192] = 932, - [1193] = 933, - [1194] = 934, - [1195] = 935, - [1196] = 936, - [1197] = 937, - [1198] = 938, + [1173] = 917, + [1174] = 918, + [1175] = 919, + [1176] = 920, + [1177] = 936, + [1178] = 937, + [1179] = 924, + [1180] = 938, + [1181] = 921, + [1182] = 939, + [1183] = 922, + [1184] = 923, + [1185] = 935, + [1186] = 940, + [1187] = 924, + [1188] = 925, + [1189] = 926, + [1190] = 927, + [1191] = 928, + [1192] = 929, + [1193] = 930, + [1194] = 931, + [1195] = 932, + [1196] = 933, + [1197] = 934, + [1198] = 941, [1199] = 942, [1200] = 943, - [1201] = 939, - [1202] = 944, - [1203] = 940, - [1204] = 941, - [1205] = 942, - [1206] = 945, - [1207] = 943, - [1208] = 944, - [1209] = 945, - [1210] = 946, - [1211] = 947, - [1212] = 948, - [1213] = 949, - [1214] = 950, - [1215] = 951, - [1216] = 952, - [1217] = 953, - [1218] = 954, - [1219] = 955, - [1220] = 956, - [1221] = 957, - [1222] = 958, - [1223] = 946, - [1224] = 959, - [1225] = 947, - [1226] = 961, - [1227] = 948, - [1228] = 949, - [1229] = 962, - [1230] = 950, - [1231] = 963, - [1232] = 951, - [1233] = 952, - [1234] = 964, - [1235] = 965, - [1236] = 966, - [1237] = 967, - [1238] = 968, - [1239] = 969, - [1240] = 970, - [1241] = 971, - [1242] = 972, - [1243] = 953, - [1244] = 973, - [1245] = 897, - [1246] = 898, - [1247] = 899, - [1248] = 954, - [1249] = 900, - [1250] = 955, - [1251] = 901, - [1252] = 902, - [1253] = 903, - [1254] = 904, - [1255] = 905, - [1256] = 906, - [1257] = 956, - [1258] = 907, + [1201] = 944, + [1202] = 936, + [1203] = 937, + [1204] = 945, + [1205] = 938, + [1206] = 946, + [1207] = 939, + [1208] = 940, + [1209] = 941, + [1210] = 942, + [1211] = 943, + [1212] = 944, + [1213] = 945, + [1214] = 946, + [1215] = 947, + [1216] = 948, + [1217] = 949, + [1218] = 950, + [1219] = 951, + [1220] = 952, + [1221] = 953, + [1222] = 947, + [1223] = 954, + [1224] = 948, + [1225] = 955, + [1226] = 949, + [1227] = 957, + [1228] = 950, + [1229] = 951, + [1230] = 958, + [1231] = 952, + [1232] = 959, + [1233] = 953, + [1234] = 936, + [1235] = 960, + [1236] = 896, + [1237] = 962, + [1238] = 963, + [1239] = 964, + [1240] = 965, + [1241] = 966, + [1242] = 967, + [1243] = 968, + [1244] = 954, + [1245] = 969, + [1246] = 970, + [1247] = 971, + [1248] = 972, + [1249] = 937, + [1250] = 973, + [1251] = 955, + [1252] = 897, + [1253] = 898, + [1254] = 899, + [1255] = 900, + [1256] = 901, + [1257] = 902, + [1258] = 903, [1259] = 957, - [1260] = 908, - [1261] = 909, - [1262] = 910, - [1263] = 911, - [1264] = 912, - [1265] = 940, - [1266] = 913, - [1267] = 958, - [1268] = 914, - [1269] = 915, - [1270] = 916, - [1271] = 941, - [1272] = 917, - [1273] = 959, - [1274] = 919, - [1275] = 921, - [1276] = 961, - [1277] = 922, - [1278] = 923, - [1279] = 924, - [1280] = 929, + [1260] = 904, + [1261] = 905, + [1262] = 906, + [1263] = 907, + [1264] = 908, + [1265] = 909, + [1266] = 925, + [1267] = 910, + [1268] = 911, + [1269] = 912, + [1270] = 958, + [1271] = 913, + [1272] = 938, + [1273] = 915, + [1274] = 959, + [1275] = 917, + [1276] = 918, + [1277] = 919, + [1278] = 920, + [1279] = 960, + [1280] = 896, [1281] = 962, - [1282] = 942, - [1283] = 963, - [1284] = 896, - [1285] = 926, - [1286] = 927, - [1287] = 964, - [1288] = 965, - [1289] = 928, - [1290] = 929, - [1291] = 930, - [1292] = 931, - [1293] = 932, - [1294] = 933, - [1295] = 934, - [1296] = 935, - [1297] = 966, - [1298] = 936, - [1299] = 937, - [1300] = 938, - [1301] = 967, - [1302] = 968, - [1303] = 969, - [1304] = 970, - [1305] = 971, - [1306] = 939, - [1307] = 940, - [1308] = 941, - [1309] = 972, - [1310] = 942, - [1311] = 943, - [1312] = 944, - [1313] = 945, - [1314] = 946, - [1315] = 947, - [1316] = 948, - [1317] = 949, - [1318] = 950, - [1319] = 951, - [1320] = 952, - [1321] = 953, - [1322] = 954, - [1323] = 955, - [1324] = 956, - [1325] = 957, - [1326] = 973, - [1327] = 958, + [1282] = 963, + [1283] = 921, + [1284] = 964, + [1285] = 965, + [1286] = 922, + [1287] = 923, + [1288] = 966, + [1289] = 967, + [1290] = 924, + [1291] = 925, + [1292] = 926, + [1293] = 927, + [1294] = 928, + [1295] = 929, + [1296] = 930, + [1297] = 931, + [1298] = 968, + [1299] = 932, + [1300] = 933, + [1301] = 934, + [1302] = 969, + [1303] = 970, + [1304] = 971, + [1305] = 972, + [1306] = 935, + [1307] = 936, + [1308] = 937, + [1309] = 938, + [1310] = 973, + [1311] = 939, + [1312] = 940, + [1313] = 941, + [1314] = 942, + [1315] = 943, + [1316] = 944, + [1317] = 945, + [1318] = 946, + [1319] = 947, + [1320] = 948, + [1321] = 949, + [1322] = 950, + [1323] = 951, + [1324] = 952, + [1325] = 953, + [1326] = 939, + [1327] = 954, [1328] = 897, - [1329] = 959, + [1329] = 955, [1330] = 898, - [1331] = 961, + [1331] = 957, [1332] = 899, - [1333] = 930, - [1334] = 962, - [1335] = 900, - [1336] = 963, - [1337] = 943, - [1338] = 901, - [1339] = 964, - [1340] = 965, - [1341] = 966, - [1342] = 967, - [1343] = 968, - [1344] = 969, - [1345] = 970, - [1346] = 971, - [1347] = 972, - [1348] = 902, - [1349] = 973, - [1350] = 897, - [1351] = 898, - [1352] = 899, - [1353] = 903, - [1354] = 900, + [1333] = 900, + [1334] = 958, + [1335] = 901, + [1336] = 959, + [1337] = 902, + [1338] = 926, + [1339] = 960, + [1340] = 896, + [1341] = 962, + [1342] = 963, + [1343] = 964, + [1344] = 965, + [1345] = 966, + [1346] = 967, + [1347] = 968, + [1348] = 903, + [1349] = 969, + [1350] = 970, + [1351] = 971, + [1352] = 972, + [1353] = 921, + [1354] = 973, [1355] = 904, - [1356] = 901, - [1357] = 902, - [1358] = 903, - [1359] = 904, - [1360] = 905, - [1361] = 906, + [1356] = 897, + [1357] = 898, + [1358] = 899, + [1359] = 900, + [1360] = 901, + [1361] = 902, [1362] = 905, - [1363] = 907, + [1363] = 903, [1364] = 906, - [1365] = 908, - [1366] = 909, - [1367] = 910, - [1368] = 911, - [1369] = 912, - [1370] = 913, - [1371] = 907, - [1372] = 914, - [1373] = 915, - [1374] = 916, - [1375] = 917, - [1376] = 908, - [1377] = 919, + [1365] = 904, + [1366] = 905, + [1367] = 906, + [1368] = 907, + [1369] = 908, + [1370] = 907, + [1371] = 909, + [1372] = 908, + [1373] = 910, + [1374] = 911, + [1375] = 912, + [1376] = 940, + [1377] = 913, [1378] = 909, - [1379] = 921, - [1380] = 910, - [1381] = 922, - [1382] = 923, - [1383] = 924, - [1384] = 911, - [1385] = 912, - [1386] = 944, - [1387] = 913, - [1388] = 931, - [1389] = 914, - [1390] = 896, - [1391] = 915, - [1392] = 916, - [1393] = 926, - [1394] = 927, - [1395] = 945, - [1396] = 917, - [1397] = 928, - [1398] = 929, - [1399] = 930, - [1400] = 931, - [1401] = 932, - [1402] = 933, - [1403] = 934, - [1404] = 935, - [1405] = 936, - [1406] = 937, - [1407] = 938, - [1408] = 919, - [1409] = 946, - [1410] = 921, - [1411] = 922, - [1412] = 939, - [1413] = 940, - [1414] = 941, - [1415] = 923, - [1416] = 942, - [1417] = 924, - [1418] = 943, - [1419] = 944, - [1420] = 945, - [1421] = 946, - [1422] = 947, - [1423] = 948, - [1424] = 949, - [1425] = 950, - [1426] = 951, - [1427] = 952, - [1428] = 953, - [1429] = 954, - [1430] = 955, - [1431] = 956, - [1432] = 957, - [1433] = 947, - [1434] = 958, - [1435] = 948, - [1436] = 959, - [1437] = 949, - [1438] = 961, - [1439] = 950, - [1440] = 951, - [1441] = 962, - [1442] = 963, - [1443] = 896, - [1444] = 964, - [1445] = 965, - [1446] = 966, - [1447] = 967, - [1448] = 968, - [1449] = 969, - [1450] = 970, - [1451] = 971, - [1452] = 972, - [1453] = 952, - [1454] = 973, - [1455] = 897, - [1456] = 898, - [1457] = 899, - [1458] = 926, - [1459] = 900, - [1460] = 927, - [1461] = 901, - [1462] = 902, - [1463] = 903, - [1464] = 904, - [1465] = 905, - [1466] = 906, - [1467] = 953, - [1468] = 907, - [1469] = 908, - [1470] = 909, - [1471] = 910, - [1472] = 911, - [1473] = 912, - [1474] = 928, - [1475] = 913, - [1476] = 929, - [1477] = 914, - [1478] = 915, - [1479] = 916, - [1480] = 930, - [1481] = 917, - [1482] = 931, - [1483] = 919, - [1484] = 932, - [1485] = 921, - [1486] = 933, - [1487] = 922, - [1488] = 923, - [1489] = 924, - [1490] = 934, - [1491] = 935, - [1492] = 938, - [1493] = 939, - [1494] = 932, - [1495] = 936, - [1496] = 938, - [1497] = 939, - [1498] = 937, - [1499] = 938, - [1500] = 954, - [1501] = 955, - [1502] = 956, - [1503] = 939, - [1504] = 940, - [1505] = 941, - [1506] = 942, - [1507] = 943, - [1508] = 944, - [1509] = 945, - [1510] = 946, - [1511] = 947, - [1512] = 948, - [1513] = 949, - [1514] = 950, - [1515] = 951, - [1516] = 952, - [1517] = 953, - [1518] = 954, - [1519] = 955, - [1520] = 956, - [1521] = 957, - [1522] = 958, - [1523] = 959, - [1524] = 961, - [1525] = 962, - [1526] = 963, - [1527] = 957, - [1528] = 926, - [1529] = 964, - [1530] = 965, - [1531] = 966, - [1532] = 967, - [1533] = 968, + [1379] = 915, + [1380] = 917, + [1381] = 910, + [1382] = 918, + [1383] = 919, + [1384] = 920, + [1385] = 911, + [1386] = 912, + [1387] = 941, + [1388] = 913, + [1389] = 927, + [1390] = 915, + [1391] = 921, + [1392] = 942, + [1393] = 917, + [1394] = 922, + [1395] = 923, + [1396] = 918, + [1397] = 924, + [1398] = 925, + [1399] = 926, + [1400] = 927, + [1401] = 928, + [1402] = 929, + [1403] = 930, + [1404] = 931, + [1405] = 919, + [1406] = 932, + [1407] = 933, + [1408] = 934, + [1409] = 920, + [1410] = 943, + [1411] = 944, + [1412] = 945, + [1413] = 946, + [1414] = 935, + [1415] = 936, + [1416] = 937, + [1417] = 947, + [1418] = 938, + [1419] = 939, + [1420] = 940, + [1421] = 941, + [1422] = 942, + [1423] = 943, + [1424] = 944, + [1425] = 945, + [1426] = 946, + [1427] = 947, + [1428] = 948, + [1429] = 949, + [1430] = 950, + [1431] = 951, + [1432] = 952, + [1433] = 953, + [1434] = 921, + [1435] = 954, + [1436] = 955, + [1437] = 948, + [1438] = 957, + [1439] = 922, + [1440] = 923, + [1441] = 958, + [1442] = 949, + [1443] = 959, + [1444] = 924, + [1445] = 960, + [1446] = 896, + [1447] = 962, + [1448] = 963, + [1449] = 964, + [1450] = 965, + [1451] = 966, + [1452] = 967, + [1453] = 968, + [1454] = 925, + [1455] = 969, + [1456] = 970, + [1457] = 971, + [1458] = 972, + [1459] = 926, + [1460] = 973, + [1461] = 927, + [1462] = 897, + [1463] = 898, + [1464] = 899, + [1465] = 900, + [1466] = 901, + [1467] = 902, + [1468] = 928, + [1469] = 903, + [1470] = 929, + [1471] = 904, + [1472] = 905, + [1473] = 906, + [1474] = 907, + [1475] = 908, + [1476] = 930, + [1477] = 909, + [1478] = 931, + [1479] = 910, + [1480] = 911, + [1481] = 912, + [1482] = 913, + [1483] = 932, + [1484] = 915, + [1485] = 933, + [1486] = 917, + [1487] = 934, + [1488] = 918, + [1489] = 919, + [1490] = 920, + [1491] = 950, + [1492] = 951, + [1493] = 934, + [1494] = 935, + [1495] = 952, + [1496] = 934, + [1497] = 935, + [1498] = 935, + [1499] = 936, + [1500] = 937, + [1501] = 938, + [1502] = 939, + [1503] = 940, + [1504] = 941, + [1505] = 942, + [1506] = 943, + [1507] = 944, + [1508] = 945, + [1509] = 946, + [1510] = 947, + [1511] = 948, + [1512] = 949, + [1513] = 950, + [1514] = 951, + [1515] = 952, + [1516] = 953, + [1517] = 954, + [1518] = 955, + [1519] = 957, + [1520] = 958, + [1521] = 959, + [1522] = 953, + [1523] = 928, + [1524] = 960, + [1525] = 896, + [1526] = 962, + [1527] = 963, + [1528] = 964, + [1529] = 965, + [1530] = 966, + [1531] = 967, + [1532] = 968, + [1533] = 954, [1534] = 969, [1535] = 970, [1536] = 971, [1537] = 972, - [1538] = 958, - [1539] = 973, + [1538] = 973, + [1539] = 955, [1540] = 897, [1541] = 898, [1542] = 899, [1543] = 900, - [1544] = 959, - [1545] = 901, - [1546] = 902, - [1547] = 903, + [1544] = 901, + [1545] = 902, + [1546] = 903, + [1547] = 957, [1548] = 904, [1549] = 905, [1550] = 906, [1551] = 907, - [1552] = 961, - [1553] = 908, - [1554] = 909, + [1552] = 908, + [1553] = 909, + [1554] = 929, [1555] = 910, [1556] = 911, [1557] = 912, - [1558] = 933, + [1558] = 930, [1559] = 913, - [1560] = 934, - [1561] = 914, - [1562] = 915, - [1563] = 916, - [1564] = 917, - [1565] = 962, - [1566] = 919, + [1560] = 958, + [1561] = 915, + [1562] = 917, + [1563] = 959, + [1564] = 918, + [1565] = 919, + [1566] = 920, [1567] = 921, - [1568] = 963, - [1569] = 922, - [1570] = 923, - [1571] = 924, - [1572] = 896, - [1573] = 926, - [1574] = 927, - [1575] = 928, - [1576] = 929, - [1577] = 930, - [1578] = 931, - [1579] = 932, - [1580] = 933, - [1581] = 934, + [1568] = 922, + [1569] = 923, + [1570] = 924, + [1571] = 925, + [1572] = 926, + [1573] = 927, + [1574] = 928, + [1575] = 929, + [1576] = 930, + [1577] = 931, + [1578] = 932, + [1579] = 933, + [1580] = 934, + [1581] = 922, [1582] = 935, [1583] = 936, [1584] = 937, [1585] = 938, - [1586] = 927, + [1586] = 960, [1587] = 939, [1588] = 940, [1589] = 941, [1590] = 942, - [1591] = 964, - [1592] = 943, - [1593] = 944, - [1594] = 945, - [1595] = 965, - [1596] = 946, - [1597] = 947, - [1598] = 948, - [1599] = 949, - [1600] = 950, - [1601] = 951, - [1602] = 952, - [1603] = 953, - [1604] = 954, - [1605] = 955, - [1606] = 956, - [1607] = 957, - [1608] = 966, - [1609] = 958, - [1610] = 959, - [1611] = 961, - [1612] = 962, - [1613] = 963, - [1614] = 964, - [1615] = 965, - [1616] = 966, - [1617] = 967, - [1618] = 968, - [1619] = 969, - [1620] = 970, - [1621] = 971, - [1622] = 972, - [1623] = 967, - [1624] = 973, - [1625] = 897, - [1626] = 898, - [1627] = 899, - [1628] = 900, - [1629] = 901, - [1630] = 902, - [1631] = 903, - [1632] = 904, - [1633] = 905, - [1634] = 906, - [1635] = 907, - [1636] = 908, - [1637] = 909, - [1638] = 910, - [1639] = 911, - [1640] = 912, - [1641] = 913, - [1642] = 914, - [1643] = 915, - [1644] = 916, - [1645] = 917, - [1646] = 919, - [1647] = 968, - [1648] = 921, - [1649] = 969, - [1650] = 922, - [1651] = 923, - [1652] = 970, - [1653] = 971, - [1654] = 972, - [1655] = 935, - [1656] = 973, - [1657] = 897, - [1658] = 896, - [1659] = 926, - [1660] = 927, - [1661] = 898, - [1662] = 928, - [1663] = 929, - [1664] = 930, - [1665] = 931, - [1666] = 932, - [1667] = 933, - [1668] = 934, - [1669] = 935, - [1670] = 936, - [1671] = 937, - [1672] = 938, - [1673] = 939, - [1674] = 940, - [1675] = 941, - [1676] = 942, - [1677] = 943, - [1678] = 944, - [1679] = 945, - [1680] = 946, - [1681] = 947, - [1682] = 948, - [1683] = 949, - [1684] = 950, - [1685] = 951, - [1686] = 952, - [1687] = 953, - [1688] = 954, - [1689] = 955, - [1690] = 956, - [1691] = 957, - [1692] = 958, - [1693] = 959, - [1694] = 961, - [1695] = 962, - [1696] = 963, - [1697] = 964, - [1698] = 965, - [1699] = 966, - [1700] = 967, - [1701] = 968, - [1702] = 969, - [1703] = 970, - [1704] = 971, - [1705] = 972, - [1706] = 973, - [1707] = 897, - [1708] = 898, - [1709] = 899, - [1710] = 900, - [1711] = 901, - [1712] = 902, - [1713] = 903, - [1714] = 904, - [1715] = 905, - [1716] = 906, - [1717] = 907, - [1718] = 908, - [1719] = 909, - [1720] = 910, - [1721] = 911, - [1722] = 912, - [1723] = 913, - [1724] = 914, - [1725] = 915, - [1726] = 916, - [1727] = 917, - [1728] = 899, - [1729] = 919, - [1730] = 1132, - [1731] = 921, + [1591] = 943, + [1592] = 944, + [1593] = 945, + [1594] = 946, + [1595] = 947, + [1596] = 948, + [1597] = 949, + [1598] = 950, + [1599] = 951, + [1600] = 952, + [1601] = 953, + [1602] = 962, + [1603] = 954, + [1604] = 955, + [1605] = 957, + [1606] = 958, + [1607] = 959, + [1608] = 960, + [1609] = 896, + [1610] = 962, + [1611] = 963, + [1612] = 964, + [1613] = 965, + [1614] = 966, + [1615] = 967, + [1616] = 968, + [1617] = 963, + [1618] = 969, + [1619] = 970, + [1620] = 971, + [1621] = 972, + [1622] = 973, + [1623] = 897, + [1624] = 898, + [1625] = 899, + [1626] = 900, + [1627] = 901, + [1628] = 902, + [1629] = 903, + [1630] = 904, + [1631] = 905, + [1632] = 906, + [1633] = 907, + [1634] = 908, + [1635] = 909, + [1636] = 910, + [1637] = 911, + [1638] = 912, + [1639] = 913, + [1640] = 915, + [1641] = 964, + [1642] = 917, + [1643] = 965, + [1644] = 918, + [1645] = 919, + [1646] = 966, + [1647] = 967, + [1648] = 968, + [1649] = 931, + [1650] = 969, + [1651] = 970, + [1652] = 921, + [1653] = 922, + [1654] = 923, + [1655] = 971, + [1656] = 924, + [1657] = 925, + [1658] = 926, + [1659] = 927, + [1660] = 928, + [1661] = 929, + [1662] = 930, + [1663] = 931, + [1664] = 932, + [1665] = 933, + [1666] = 934, + [1667] = 935, + [1668] = 936, + [1669] = 937, + [1670] = 938, + [1671] = 939, + [1672] = 940, + [1673] = 941, + [1674] = 942, + [1675] = 943, + [1676] = 944, + [1677] = 945, + [1678] = 946, + [1679] = 947, + [1680] = 948, + [1681] = 949, + [1682] = 950, + [1683] = 951, + [1684] = 952, + [1685] = 953, + [1686] = 954, + [1687] = 955, + [1688] = 957, + [1689] = 958, + [1690] = 959, + [1691] = 960, + [1692] = 896, + [1693] = 962, + [1694] = 963, + [1695] = 964, + [1696] = 965, + [1697] = 966, + [1698] = 967, + [1699] = 968, + [1700] = 969, + [1701] = 970, + [1702] = 971, + [1703] = 972, + [1704] = 973, + [1705] = 897, + [1706] = 898, + [1707] = 899, + [1708] = 900, + [1709] = 901, + [1710] = 902, + [1711] = 903, + [1712] = 904, + [1713] = 905, + [1714] = 906, + [1715] = 907, + [1716] = 908, + [1717] = 909, + [1718] = 910, + [1719] = 911, + [1720] = 912, + [1721] = 913, + [1722] = 972, + [1723] = 915, + [1724] = 923, + [1725] = 917, + [1726] = 918, + [1727] = 919, + [1728] = 920, + [1729] = 973, + [1730] = 921, + [1731] = 1105, [1732] = 922, [1733] = 923, [1734] = 924, - [1735] = 900, - [1736] = 896, - [1737] = 926, - [1738] = 927, - [1739] = 928, - [1740] = 929, - [1741] = 930, - [1742] = 931, - [1743] = 932, - [1744] = 933, - [1745] = 934, - [1746] = 935, - [1747] = 936, - [1748] = 937, - [1749] = 901, - [1750] = 939, - [1751] = 940, - [1752] = 941, - [1753] = 942, - [1754] = 943, - [1755] = 944, - [1756] = 945, - [1757] = 946, - [1758] = 947, - [1759] = 948, - [1760] = 949, - [1761] = 950, - [1762] = 951, - [1763] = 952, - [1764] = 953, - [1765] = 954, - [1766] = 955, - [1767] = 956, - [1768] = 957, - [1769] = 958, - [1770] = 959, - [1771] = 961, - [1772] = 902, + [1735] = 925, + [1736] = 926, + [1737] = 927, + [1738] = 928, + [1739] = 929, + [1740] = 930, + [1741] = 931, + [1742] = 932, + [1743] = 933, + [1744] = 897, + [1745] = 935, + [1746] = 936, + [1747] = 937, + [1748] = 938, + [1749] = 939, + [1750] = 940, + [1751] = 941, + [1752] = 942, + [1753] = 943, + [1754] = 944, + [1755] = 945, + [1756] = 946, + [1757] = 947, + [1758] = 948, + [1759] = 949, + [1760] = 950, + [1761] = 951, + [1762] = 952, + [1763] = 953, + [1764] = 954, + [1765] = 955, + [1766] = 957, + [1767] = 898, + [1768] = 958, + [1769] = 959, + [1770] = 899, + [1771] = 960, + [1772] = 896, [1773] = 962, [1774] = 963, - [1775] = 903, - [1776] = 964, - [1777] = 965, - [1778] = 966, - [1779] = 967, - [1780] = 968, - [1781] = 969, - [1782] = 970, - [1783] = 971, - [1784] = 972, - [1785] = 913, + [1775] = 964, + [1776] = 965, + [1777] = 966, + [1778] = 967, + [1779] = 968, + [1780] = 969, + [1781] = 970, + [1782] = 971, + [1783] = 972, + [1784] = 973, + [1785] = 904, [1786] = 1786, [1787] = 1787, [1788] = 1788, @@ -3264,17 +3271,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1790] = 1786, [1791] = 1791, [1792] = 1792, - [1793] = 1787, - [1794] = 1788, - [1795] = 1789, - [1796] = 1789, + [1793] = 1788, + [1794] = 1789, + [1795] = 1787, + [1796] = 1788, [1797] = 1786, - [1798] = 1786, - [1799] = 1787, - [1800] = 1788, - [1801] = 1789, - [1802] = 1786, - [1803] = 1788, + [1798] = 1789, + [1799] = 1786, + [1800] = 1787, + [1801] = 1788, + [1802] = 1789, + [1803] = 1786, [1804] = 1787, [1805] = 1788, [1806] = 1789, @@ -3293,20 +3300,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1819] = 1787, [1820] = 1788, [1821] = 1789, - [1822] = 1786, - [1823] = 1789, + [1822] = 1789, + [1823] = 1786, [1824] = 1786, - [1825] = 1787, - [1826] = 1788, - [1827] = 1789, - [1828] = 1786, - [1829] = 1787, - [1830] = 1788, - [1831] = 1789, - [1832] = 1786, - [1833] = 1787, - [1834] = 1788, - [1835] = 1789, + [1825] = 1789, + [1826] = 1787, + [1827] = 1788, + [1828] = 1789, + [1829] = 1786, + [1830] = 1787, + [1831] = 1788, + [1832] = 1789, + [1833] = 1786, + [1834] = 1787, + [1835] = 1788, [1836] = 1836, [1837] = 1837, [1838] = 1838, @@ -3326,48 +3333,48 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1852] = 1852, [1853] = 1853, [1854] = 1854, - [1855] = 1855, + [1855] = 1854, [1856] = 1854, - [1857] = 1854, - [1858] = 1858, + [1857] = 1857, + [1858] = 1854, [1859] = 1854, - [1860] = 1855, - [1861] = 1854, + [1860] = 1860, + [1861] = 1857, [1862] = 1854, - [1863] = 1863, - [1864] = 1854, - [1865] = 1855, - [1866] = 1855, - [1867] = 1854, - [1868] = 1855, - [1869] = 1855, - [1870] = 1854, - [1871] = 1855, - [1872] = 1855, - [1873] = 1855, - [1874] = 1855, + [1863] = 1857, + [1864] = 1864, + [1865] = 1857, + [1866] = 1854, + [1867] = 1857, + [1868] = 1854, + [1869] = 1857, + [1870] = 1870, + [1871] = 1857, + [1872] = 1854, + [1873] = 1857, + [1874] = 1874, [1875] = 1854, - [1876] = 1876, - [1877] = 1855, - [1878] = 1854, - [1879] = 1855, - [1880] = 1854, - [1881] = 1881, - [1882] = 1882, + [1876] = 1854, + [1877] = 1857, + [1878] = 1857, + [1879] = 1854, + [1880] = 1880, + [1881] = 1857, + [1882] = 1857, [1883] = 1883, [1884] = 1884, [1885] = 1885, - [1886] = 1886, + [1886] = 803, [1887] = 1887, [1888] = 1888, - [1889] = 1889, + [1889] = 801, [1890] = 1890, - [1891] = 807, + [1891] = 1891, [1892] = 1892, - [1893] = 800, + [1893] = 1893, [1894] = 1894, [1895] = 1895, - [1896] = 1896, + [1896] = 935, [1897] = 1897, [1898] = 1898, [1899] = 1899, @@ -3375,252 +3382,252 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1901] = 1901, [1902] = 1902, [1903] = 1903, - [1904] = 924, + [1904] = 934, [1905] = 1905, [1906] = 1906, [1907] = 1907, [1908] = 1908, [1909] = 1909, - [1910] = 1910, + [1910] = 920, [1911] = 1911, [1912] = 1912, - [1913] = 938, + [1913] = 1913, [1914] = 1914, [1915] = 1915, [1916] = 1916, - [1917] = 939, + [1917] = 1917, [1918] = 1918, [1919] = 1919, [1920] = 1920, - [1921] = 800, + [1921] = 1921, [1922] = 1922, [1923] = 1923, - [1924] = 807, - [1925] = 1925, + [1924] = 801, + [1925] = 803, [1926] = 1926, - [1927] = 807, - [1928] = 939, - [1929] = 807, - [1930] = 1930, + [1927] = 1927, + [1928] = 1928, + [1929] = 1929, + [1930] = 934, [1931] = 1931, - [1932] = 1932, - [1933] = 1933, - [1934] = 938, + [1932] = 803, + [1933] = 803, + [1934] = 935, [1935] = 1935, - [1936] = 938, - [1937] = 938, + [1936] = 1936, + [1937] = 934, [1938] = 1938, - [1939] = 1939, + [1939] = 934, [1940] = 1940, [1941] = 1941, [1942] = 1942, [1943] = 1943, - [1944] = 1943, - [1945] = 1942, - [1946] = 1946, - [1947] = 1947, - [1948] = 1943, - [1949] = 1942, - [1950] = 1946, - [1951] = 1947, - [1952] = 1942, - [1953] = 1946, - [1954] = 1947, - [1955] = 1943, - [1956] = 1943, + [1944] = 1942, + [1945] = 1941, + [1946] = 1940, + [1947] = 1943, + [1948] = 1941, + [1949] = 1940, + [1950] = 1943, + [1951] = 1942, + [1952] = 1941, + [1953] = 1941, + [1954] = 1941, + [1955] = 1940, + [1956] = 1940, [1957] = 1942, - [1958] = 1942, + [1958] = 1941, [1959] = 1943, - [1960] = 1942, - [1961] = 1946, - [1962] = 1947, - [1963] = 1946, - [1964] = 1943, - [1965] = 1942, + [1960] = 1943, + [1961] = 1940, + [1962] = 1943, + [1963] = 1942, + [1964] = 1941, + [1965] = 1940, [1966] = 1943, - [1967] = 1946, - [1968] = 1947, - [1969] = 1946, - [1970] = 1943, - [1971] = 1947, - [1972] = 1942, - [1973] = 1943, - [1974] = 1942, - [1975] = 1946, - [1976] = 1947, - [1977] = 1946, - [1978] = 1947, - [1979] = 1942, + [1967] = 1942, + [1968] = 1941, + [1969] = 1940, + [1970] = 1941, + [1971] = 1940, + [1972] = 1941, + [1973] = 1940, + [1974] = 1943, + [1975] = 1942, + [1976] = 1940, + [1977] = 1942, + [1978] = 1943, + [1979] = 1979, [1980] = 1943, - [1981] = 1947, - [1982] = 1946, - [1983] = 1947, + [1981] = 1942, + [1982] = 1943, + [1983] = 1942, [1984] = 1942, - [1985] = 1947, - [1986] = 1946, - [1987] = 1947, - [1988] = 1947, - [1989] = 1946, + [1985] = 1940, + [1986] = 1941, + [1987] = 1940, + [1988] = 1942, + [1989] = 1943, [1990] = 1942, - [1991] = 1943, + [1991] = 1991, [1992] = 1992, - [1993] = 1993, - [1994] = 1994, + [1993] = 801, + [1994] = 801, [1995] = 1995, [1996] = 1996, [1997] = 1997, [1998] = 1998, - [1999] = 1995, - [2000] = 2000, - [2001] = 2000, + [1999] = 1997, + [2000] = 1997, + [2001] = 2001, [2002] = 1996, - [2003] = 1997, - [2004] = 2000, + [2003] = 1998, + [2004] = 1995, [2005] = 1998, - [2006] = 1996, - [2007] = 1995, - [2008] = 2000, - [2009] = 1998, - [2010] = 1998, - [2011] = 1995, - [2012] = 1995, - [2013] = 1996, - [2014] = 2000, - [2015] = 1996, - [2016] = 1996, - [2017] = 2000, - [2018] = 1996, - [2019] = 2000, - [2020] = 800, - [2021] = 1997, - [2022] = 1998, - [2023] = 800, - [2024] = 2000, - [2025] = 1998, - [2026] = 1998, - [2027] = 1995, - [2028] = 1996, - [2029] = 1998, - [2030] = 1995, + [2006] = 1995, + [2007] = 935, + [2008] = 2001, + [2009] = 1996, + [2010] = 1997, + [2011] = 1997, + [2012] = 1996, + [2013] = 1995, + [2014] = 1997, + [2015] = 1998, + [2016] = 1997, + [2017] = 1995, + [2018] = 1995, + [2019] = 2001, + [2020] = 2001, + [2021] = 1996, + [2022] = 2001, + [2023] = 1996, + [2024] = 1998, + [2025] = 1995, + [2026] = 2001, + [2027] = 1998, + [2028] = 1995, + [2029] = 1996, + [2030] = 1996, [2031] = 1996, - [2032] = 1998, - [2033] = 1998, - [2034] = 2000, - [2035] = 1997, + [2032] = 1997, + [2033] = 1997, + [2034] = 1997, + [2035] = 2001, [2036] = 1997, - [2037] = 1996, - [2038] = 2000, - [2039] = 2000, + [2037] = 2001, + [2038] = 2001, + [2039] = 1998, [2040] = 1995, - [2041] = 1998, - [2042] = 1995, + [2041] = 1996, + [2042] = 935, [2043] = 1998, - [2044] = 1995, - [2045] = 1997, - [2046] = 1997, - [2047] = 1997, - [2048] = 1997, - [2049] = 1997, - [2050] = 1997, - [2051] = 1996, - [2052] = 2000, - [2053] = 1996, + [2044] = 1998, + [2045] = 2001, + [2046] = 1996, + [2047] = 1998, + [2048] = 2001, + [2049] = 1995, + [2050] = 2001, + [2051] = 1998, + [2052] = 1995, + [2053] = 1998, [2054] = 1995, - [2055] = 1997, - [2056] = 1995, + [2055] = 1996, + [2056] = 1997, [2057] = 2057, [2058] = 2058, [2059] = 2057, - [2060] = 2058, - [2061] = 2057, - [2062] = 2062, - [2063] = 2062, - [2064] = 1876, - [2065] = 939, - [2066] = 2062, + [2060] = 2060, + [2061] = 2058, + [2062] = 2057, + [2063] = 801, + [2064] = 2060, + [2065] = 2058, + [2066] = 2057, [2067] = 2058, - [2068] = 2058, - [2069] = 800, - [2070] = 2062, - [2071] = 2071, - [2072] = 2071, - [2073] = 2071, - [2074] = 2071, - [2075] = 2058, - [2076] = 2058, - [2077] = 2071, + [2068] = 2068, + [2069] = 2069, + [2070] = 2058, + [2071] = 2057, + [2072] = 2058, + [2073] = 2057, + [2074] = 2060, + [2075] = 2060, + [2076] = 2060, + [2077] = 2068, [2078] = 2057, - [2079] = 2057, - [2080] = 2058, - [2081] = 2071, - [2082] = 2057, - [2083] = 2062, - [2084] = 2062, - [2085] = 2071, - [2086] = 2071, - [2087] = 2058, - [2088] = 2057, - [2089] = 2071, - [2090] = 2057, - [2091] = 2058, - [2092] = 2062, - [2093] = 2062, - [2094] = 2071, - [2095] = 800, - [2096] = 2062, - [2097] = 2058, - [2098] = 2058, - [2099] = 2062, - [2100] = 2057, - [2101] = 2057, - [2102] = 2102, - [2103] = 2071, - [2104] = 2062, - [2105] = 939, - [2106] = 2057, - [2107] = 2057, - [2108] = 2071, - [2109] = 2062, - [2110] = 2058, - [2111] = 2111, - [2112] = 2111, - [2113] = 2113, - [2114] = 2113, - [2115] = 2113, - [2116] = 2111, - [2117] = 2113, - [2118] = 2111, - [2119] = 2119, - [2120] = 2119, - [2121] = 939, - [2122] = 2119, - [2123] = 2119, - [2124] = 2111, - [2125] = 2119, - [2126] = 2111, - [2127] = 2119, - [2128] = 2119, - [2129] = 2119, - [2130] = 2113, - [2131] = 2111, - [2132] = 2113, - [2133] = 939, - [2134] = 2111, - [2135] = 2113, - [2136] = 2113, - [2137] = 2111, - [2138] = 2111, - [2139] = 2119, - [2140] = 2119, - [2141] = 2113, - [2142] = 2111, - [2143] = 2119, - [2144] = 2113, - [2145] = 2113, - [2146] = 2113, - [2147] = 2119, - [2148] = 2111, - [2149] = 807, + [2079] = 2058, + [2080] = 2057, + [2081] = 2068, + [2082] = 2068, + [2083] = 2068, + [2084] = 2068, + [2085] = 2060, + [2086] = 2058, + [2087] = 2060, + [2088] = 1874, + [2089] = 2058, + [2090] = 2058, + [2091] = 2057, + [2092] = 2057, + [2093] = 2060, + [2094] = 2058, + [2095] = 2068, + [2096] = 2060, + [2097] = 2068, + [2098] = 2068, + [2099] = 2057, + [2100] = 2060, + [2101] = 2060, + [2102] = 2068, + [2103] = 2058, + [2104] = 2057, + [2105] = 2068, + [2106] = 2068, + [2107] = 2060, + [2108] = 2108, + [2109] = 2109, + [2110] = 2110, + [2111] = 2108, + [2112] = 2108, + [2113] = 2108, + [2114] = 2110, + [2115] = 2109, + [2116] = 2110, + [2117] = 2108, + [2118] = 2108, + [2119] = 2110, + [2120] = 2108, + [2121] = 2109, + [2122] = 2108, + [2123] = 2109, + [2124] = 801, + [2125] = 2110, + [2126] = 2109, + [2127] = 935, + [2128] = 2110, + [2129] = 2109, + [2130] = 2108, + [2131] = 2110, + [2132] = 2108, + [2133] = 2110, + [2134] = 2109, + [2135] = 2109, + [2136] = 2108, + [2137] = 2108, + [2138] = 2110, + [2139] = 2110, + [2140] = 2109, + [2141] = 2110, + [2142] = 2109, + [2143] = 2109, + [2144] = 2109, + [2145] = 2110, + [2146] = 935, + [2147] = 803, + [2148] = 2148, + [2149] = 2149, [2150] = 2150, [2151] = 2151, [2152] = 2152, @@ -3631,745 +3638,741 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2157] = 2157, [2158] = 2158, [2159] = 2159, - [2160] = 2160, + [2160] = 2151, [2161] = 2161, - [2162] = 2162, + [2162] = 2161, [2163] = 2163, - [2164] = 2152, + [2164] = 2164, [2165] = 2165, [2166] = 2166, - [2167] = 2150, - [2168] = 2168, - [2169] = 2169, + [2167] = 2152, + [2168] = 2154, + [2169] = 2165, [2170] = 2170, - [2171] = 2162, + [2171] = 2171, [2172] = 2172, [2173] = 2163, [2174] = 2155, - [2175] = 2152, - [2176] = 2176, - [2177] = 2177, - [2178] = 2172, - [2179] = 2165, - [2180] = 2151, - [2181] = 2176, - [2182] = 2165, - [2183] = 2176, - [2184] = 2184, + [2175] = 2156, + [2176] = 2157, + [2177] = 2164, + [2178] = 2170, + [2179] = 2179, + [2180] = 2158, + [2181] = 2166, + [2182] = 920, + [2183] = 2159, + [2184] = 2151, [2185] = 2185, - [2186] = 924, - [2187] = 2153, - [2188] = 2184, - [2189] = 2177, - [2190] = 2184, - [2191] = 2168, - [2192] = 2177, - [2193] = 2151, - [2194] = 2151, - [2195] = 2153, - [2196] = 2154, - [2197] = 2153, - [2198] = 2154, - [2199] = 2155, - [2200] = 2166, - [2201] = 2156, - [2202] = 2157, - [2203] = 2158, - [2204] = 2159, - [2205] = 2160, - [2206] = 2161, - [2207] = 2155, - [2208] = 2163, - [2209] = 2152, - [2210] = 2165, + [2186] = 2152, + [2187] = 2154, + [2188] = 2165, + [2189] = 2170, + [2190] = 2179, + [2191] = 2171, + [2192] = 2192, + [2193] = 2148, + [2194] = 2172, + [2195] = 2149, + [2196] = 2150, + [2197] = 2171, + [2198] = 2172, + [2199] = 2161, + [2200] = 2153, + [2201] = 2155, + [2202] = 2156, + [2203] = 2157, + [2204] = 2155, + [2205] = 2158, + [2206] = 2159, + [2207] = 2151, + [2208] = 2161, + [2209] = 2163, + [2210] = 2164, [2211] = 2166, - [2212] = 2150, - [2213] = 2168, - [2214] = 2169, + [2212] = 2152, + [2213] = 2154, + [2214] = 2165, [2215] = 2170, - [2216] = 2162, + [2216] = 2171, [2217] = 2172, - [2218] = 2156, - [2219] = 2176, - [2220] = 2157, - [2221] = 2158, - [2222] = 2159, - [2223] = 2160, - [2224] = 2161, - [2225] = 2150, - [2226] = 2163, - [2227] = 2168, - [2228] = 2152, - [2229] = 2176, + [2218] = 2161, + [2219] = 2150, + [2220] = 2163, + [2221] = 2164, + [2222] = 2179, + [2223] = 2161, + [2224] = 2166, + [2225] = 2192, + [2226] = 2152, + [2227] = 2152, + [2228] = 2154, + [2229] = 2185, [2230] = 2165, - [2231] = 2169, - [2232] = 2166, - [2233] = 2150, - [2234] = 2168, - [2235] = 2169, - [2236] = 2170, - [2237] = 2162, - [2238] = 2184, - [2239] = 2172, - [2240] = 2177, - [2241] = 2151, - [2242] = 2170, + [2231] = 2170, + [2232] = 2148, + [2233] = 2171, + [2234] = 2185, + [2235] = 2172, + [2236] = 2179, + [2237] = 2192, + [2238] = 2148, + [2239] = 2185, + [2240] = 2149, + [2241] = 2150, + [2242] = 2156, [2243] = 2153, - [2244] = 2154, - [2245] = 2154, - [2246] = 2184, - [2247] = 2155, - [2248] = 2162, - [2249] = 2156, - [2250] = 2157, - [2251] = 2158, - [2252] = 2159, - [2253] = 2160, - [2254] = 2161, - [2255] = 2163, - [2256] = 2152, - [2257] = 2165, - [2258] = 2166, - [2259] = 2150, - [2260] = 2168, - [2261] = 2169, - [2262] = 2170, - [2263] = 2162, - [2264] = 2172, - [2265] = 2177, - [2266] = 2176, - [2267] = 2151, - [2268] = 2172, - [2269] = 2153, - [2270] = 2154, - [2271] = 2169, - [2272] = 2154, - [2273] = 2166, - [2274] = 2155, - [2275] = 2184, - [2276] = 2176, - [2277] = 2156, - [2278] = 2156, - [2279] = 2176, - [2280] = 2177, - [2281] = 2157, - [2282] = 2151, - [2283] = 2184, - [2284] = 2158, - [2285] = 2177, - [2286] = 2151, - [2287] = 2157, - [2288] = 2153, - [2289] = 2154, - [2290] = 2159, - [2291] = 2160, - [2292] = 2155, - [2293] = 2161, + [2244] = 2149, + [2245] = 2155, + [2246] = 2156, + [2247] = 2157, + [2248] = 2150, + [2249] = 2158, + [2250] = 2159, + [2251] = 2151, + [2252] = 2154, + [2253] = 2161, + [2254] = 2163, + [2255] = 2164, + [2256] = 2157, + [2257] = 2166, + [2258] = 2152, + [2259] = 2154, + [2260] = 2165, + [2261] = 2170, + [2262] = 2171, + [2263] = 2172, + [2264] = 2153, + [2265] = 2158, + [2266] = 2163, + [2267] = 2179, + [2268] = 2179, + [2269] = 2192, + [2270] = 2148, + [2271] = 2185, + [2272] = 2159, + [2273] = 2149, + [2274] = 2150, + [2275] = 2192, + [2276] = 2151, + [2277] = 2149, + [2278] = 2148, + [2279] = 2179, + [2280] = 2149, + [2281] = 2192, + [2282] = 2148, + [2283] = 2153, + [2284] = 2149, + [2285] = 2150, + [2286] = 2153, + [2287] = 2155, + [2288] = 2156, + [2289] = 2157, + [2290] = 2155, + [2291] = 2158, + [2292] = 2159, + [2293] = 2151, [2294] = 2156, [2295] = 2157, - [2296] = 2158, - [2297] = 2159, - [2298] = 2160, - [2299] = 2161, - [2300] = 2163, - [2301] = 2184, - [2302] = 2152, + [2296] = 2161, + [2297] = 2163, + [2298] = 2164, + [2299] = 2158, + [2300] = 2166, + [2301] = 2152, + [2302] = 2154, [2303] = 2165, - [2304] = 2166, - [2305] = 2150, - [2306] = 2168, - [2307] = 2169, - [2308] = 2170, - [2309] = 2162, - [2310] = 2172, - [2311] = 2177, - [2312] = 2151, - [2313] = 2153, - [2314] = 2154, - [2315] = 2158, - [2316] = 2153, - [2317] = 2154, - [2318] = 2155, - [2319] = 2155, - [2320] = 2156, - [2321] = 2157, - [2322] = 2158, + [2304] = 2159, + [2305] = 2171, + [2306] = 2172, + [2307] = 2159, + [2308] = 2150, + [2309] = 2151, + [2310] = 2166, + [2311] = 2153, + [2312] = 2161, + [2313] = 2155, + [2314] = 2156, + [2315] = 2192, + [2316] = 2157, + [2317] = 2149, + [2318] = 2163, + [2319] = 2158, + [2320] = 2159, + [2321] = 2164, + [2322] = 2151, [2323] = 2163, - [2324] = 2156, - [2325] = 2157, - [2326] = 2158, - [2327] = 2176, - [2328] = 2159, - [2329] = 2160, - [2330] = 2161, - [2331] = 2159, - [2332] = 2160, - [2333] = 2161, - [2334] = 2152, - [2335] = 2165, - [2336] = 2184, - [2337] = 2177, - [2338] = 2151, + [2324] = 2149, + [2325] = 2185, + [2326] = 2166, + [2327] = 2152, + [2328] = 2154, + [2329] = 2153, + [2330] = 2179, + [2331] = 2165, + [2332] = 2192, + [2333] = 2148, + [2334] = 2170, + [2335] = 2149, + [2336] = 2150, + [2337] = 2171, + [2338] = 2172, [2339] = 2153, - [2340] = 2154, - [2341] = 2163, - [2342] = 2155, - [2343] = 2156, - [2344] = 2157, - [2345] = 2158, - [2346] = 2152, - [2347] = 2159, - [2348] = 2160, + [2340] = 2155, + [2341] = 2156, + [2342] = 2157, + [2343] = 2150, + [2344] = 2158, + [2345] = 2159, + [2346] = 2151, + [2347] = 2185, + [2348] = 2164, [2349] = 2161, - [2350] = 2165, - [2351] = 2166, - [2352] = 2163, + [2350] = 2163, + [2351] = 2164, + [2352] = 2165, [2353] = 2166, [2354] = 2152, - [2355] = 2165, - [2356] = 2166, - [2357] = 2150, - [2358] = 2168, - [2359] = 2169, - [2360] = 2170, - [2361] = 2162, - [2362] = 2172, - [2363] = 2150, - [2364] = 2163, - [2365] = 2168, - [2366] = 2169, - [2367] = 2170, - [2368] = 2162, - [2369] = 2152, - [2370] = 2165, - [2371] = 2172, - [2372] = 2166, - [2373] = 2150, - [2374] = 2168, - [2375] = 2169, - [2376] = 2170, - [2377] = 2162, - [2378] = 2156, - [2379] = 2157, - [2380] = 2168, - [2381] = 2176, - [2382] = 2158, - [2383] = 2163, - [2384] = 2172, - [2385] = 2169, + [2355] = 2154, + [2356] = 2165, + [2357] = 2170, + [2358] = 2171, + [2359] = 2172, + [2360] = 2161, + [2361] = 2153, + [2362] = 2163, + [2363] = 2164, + [2364] = 2150, + [2365] = 2166, + [2366] = 2152, + [2367] = 2154, + [2368] = 2165, + [2369] = 2155, + [2370] = 2156, + [2371] = 2157, + [2372] = 2170, + [2373] = 2171, + [2374] = 2172, + [2375] = 2166, + [2376] = 2153, + [2377] = 2185, + [2378] = 2158, + [2379] = 2159, + [2380] = 2185, + [2381] = 2179, + [2382] = 2192, + [2383] = 2148, + [2384] = 2149, + [2385] = 2150, [2386] = 2170, - [2387] = 2184, - [2388] = 2162, - [2389] = 2177, - [2390] = 2151, - [2391] = 2153, - [2392] = 2154, - [2393] = 2172, - [2394] = 2155, - [2395] = 2156, - [2396] = 2157, - [2397] = 2158, - [2398] = 2151, - [2399] = 2159, - [2400] = 2160, - [2401] = 2161, - [2402] = 2159, - [2403] = 2163, - [2404] = 2160, - [2405] = 2152, - [2406] = 2165, - [2407] = 2166, - [2408] = 2150, - [2409] = 2168, - [2410] = 2169, - [2411] = 2170, - [2412] = 2162, - [2413] = 2172, - [2414] = 2150, - [2415] = 2159, - [2416] = 2160, - [2417] = 2170, - [2418] = 2161, - [2419] = 938, - [2420] = 2161, - [2421] = 2176, - [2422] = 2155, - [2423] = 2177, - [2424] = 2176, - [2425] = 2153, - [2426] = 2184, - [2427] = 2184, - [2428] = 2177, + [2387] = 2153, + [2388] = 2155, + [2389] = 2156, + [2390] = 2157, + [2391] = 2158, + [2392] = 2159, + [2393] = 2151, + [2394] = 2161, + [2395] = 2163, + [2396] = 2164, + [2397] = 2166, + [2398] = 2152, + [2399] = 2154, + [2400] = 2165, + [2401] = 2170, + [2402] = 2171, + [2403] = 2172, + [2404] = 2185, + [2405] = 2155, + [2406] = 2156, + [2407] = 2151, + [2408] = 2157, + [2409] = 934, + [2410] = 2185, + [2411] = 2411, + [2412] = 2171, + [2413] = 2158, + [2414] = 2179, + [2415] = 2185, + [2416] = 2179, + [2417] = 2172, + [2418] = 2192, + [2419] = 2164, + [2420] = 2192, + [2421] = 2148, + [2422] = 2179, + [2423] = 2192, + [2424] = 2148, + [2425] = 2148, + [2426] = 2170, + [2427] = 2427, + [2428] = 2428, [2429] = 2429, [2430] = 2430, [2431] = 2431, [2432] = 2432, [2433] = 2433, - [2434] = 2434, - [2435] = 2432, + [2434] = 2432, + [2435] = 2435, [2436] = 2436, - [2437] = 2432, + [2437] = 2436, [2438] = 2432, - [2439] = 2439, - [2440] = 2432, - [2441] = 2441, - [2442] = 2442, - [2443] = 2436, - [2444] = 2444, - [2445] = 2444, - [2446] = 2444, - [2447] = 2444, + [2439] = 2436, + [2440] = 2430, + [2441] = 2435, + [2442] = 2430, + [2443] = 2430, + [2444] = 2435, + [2445] = 2432, + [2446] = 2430, + [2447] = 2435, [2448] = 2436, - [2449] = 2444, - [2450] = 2444, + [2449] = 2436, + [2450] = 2436, [2451] = 2436, - [2452] = 2434, - [2453] = 2436, - [2454] = 2444, - [2455] = 2434, - [2456] = 2444, - [2457] = 2436, - [2458] = 2458, - [2459] = 2432, - [2460] = 2436, - [2461] = 2434, - [2462] = 2444, - [2463] = 2432, - [2464] = 2434, - [2465] = 2465, - [2466] = 2466, + [2452] = 2432, + [2453] = 2453, + [2454] = 2432, + [2455] = 2432, + [2456] = 2456, + [2457] = 2432, + [2458] = 2436, + [2459] = 2459, + [2460] = 2435, + [2461] = 2436, + [2462] = 2462, + [2463] = 2430, + [2464] = 2464, + [2465] = 2435, + [2466] = 2430, [2467] = 2436, - [2468] = 2434, - [2469] = 2439, - [2470] = 2465, - [2471] = 2441, - [2472] = 2466, - [2473] = 2473, - [2474] = 2439, - [2475] = 2444, - [2476] = 2434, - [2477] = 2465, - [2478] = 2441, - [2479] = 2466, - [2480] = 2473, - [2481] = 2481, - [2482] = 2432, - [2483] = 2439, - [2484] = 2465, - [2485] = 2441, - [2486] = 2466, - [2487] = 2473, - [2488] = 2488, - [2489] = 2439, - [2490] = 2465, - [2491] = 2436, - [2492] = 2466, - [2493] = 2473, - [2494] = 2432, - [2495] = 2444, - [2496] = 2439, - [2497] = 2434, - [2498] = 2465, - [2499] = 2441, - [2500] = 2466, - [2501] = 2473, - [2502] = 2432, - [2503] = 2434, - [2504] = 2439, - [2505] = 2465, - [2506] = 2441, - [2507] = 2466, - [2508] = 2473, - [2509] = 2444, - [2510] = 2439, - [2511] = 2434, - [2512] = 2465, - [2513] = 2441, - [2514] = 2466, - [2515] = 2473, - [2516] = 2434, - [2517] = 2439, - [2518] = 2473, - [2519] = 2465, - [2520] = 2441, - [2521] = 2466, - [2522] = 2473, - [2523] = 2439, - [2524] = 2436, - [2525] = 2465, - [2526] = 2441, - [2527] = 2466, - [2528] = 2473, - [2529] = 2436, - [2530] = 2439, - [2531] = 2432, - [2532] = 2465, - [2533] = 2441, - [2534] = 2466, - [2535] = 2473, - [2536] = 2434, - [2537] = 2432, - [2538] = 2439, - [2539] = 2436, - [2540] = 2465, - [2541] = 2441, - [2542] = 2466, - [2543] = 2473, - [2544] = 2441, - [2545] = 2473, - [2546] = 2441, + [2468] = 2436, + [2469] = 2430, + [2470] = 2432, + [2471] = 2435, + [2472] = 2432, + [2473] = 2433, + [2474] = 2474, + [2475] = 2431, + [2476] = 2476, + [2477] = 2477, + [2478] = 2432, + [2479] = 2433, + [2480] = 2474, + [2481] = 2431, + [2482] = 2476, + [2483] = 2477, + [2484] = 2435, + [2485] = 2476, + [2486] = 2433, + [2487] = 2474, + [2488] = 2431, + [2489] = 2477, + [2490] = 2477, + [2491] = 2435, + [2492] = 2433, + [2493] = 2474, + [2494] = 2474, + [2495] = 2431, + [2496] = 2476, + [2497] = 2477, + [2498] = 2433, + [2499] = 2474, + [2500] = 2431, + [2501] = 2476, + [2502] = 2477, + [2503] = 2477, + [2504] = 2435, + [2505] = 2430, + [2506] = 2433, + [2507] = 2430, + [2508] = 2474, + [2509] = 2431, + [2510] = 2476, + [2511] = 2477, + [2512] = 2435, + [2513] = 2433, + [2514] = 2474, + [2515] = 2431, + [2516] = 2476, + [2517] = 2477, + [2518] = 2430, + [2519] = 2433, + [2520] = 2474, + [2521] = 2431, + [2522] = 2476, + [2523] = 2477, + [2524] = 2435, + [2525] = 2433, + [2526] = 2474, + [2527] = 2431, + [2528] = 2476, + [2529] = 2477, + [2530] = 2436, + [2531] = 2433, + [2532] = 2430, + [2533] = 2432, + [2534] = 2474, + [2535] = 2431, + [2536] = 2476, + [2537] = 2477, + [2538] = 2433, + [2539] = 2474, + [2540] = 2431, + [2541] = 2476, + [2542] = 2477, + [2543] = 2431, + [2544] = 2476, + [2545] = 2545, + [2546] = 2546, [2547] = 2547, [2548] = 2548, [2549] = 2549, [2550] = 2550, - [2551] = 2551, - [2552] = 2552, - [2553] = 2553, - [2554] = 2547, - [2555] = 2555, - [2556] = 2556, - [2557] = 2557, - [2558] = 2550, - [2559] = 2547, - [2560] = 2560, - [2561] = 2561, - [2562] = 2562, + [2551] = 2549, + [2552] = 2548, + [2553] = 2549, + [2554] = 2554, + [2555] = 2550, + [2556] = 2546, + [2557] = 2548, + [2558] = 2546, + [2559] = 2549, + [2560] = 2548, + [2561] = 2549, + [2562] = 2550, [2563] = 2550, - [2564] = 2547, - [2565] = 2560, - [2566] = 2561, + [2564] = 2550, + [2565] = 2565, + [2566] = 2566, [2567] = 2567, - [2568] = 2550, - [2569] = 2547, - [2570] = 2560, - [2571] = 2561, - [2572] = 2550, - [2573] = 2573, - [2574] = 2547, - [2575] = 2560, - [2576] = 2561, - [2577] = 2577, + [2568] = 2568, + [2569] = 2569, + [2570] = 2546, + [2571] = 2546, + [2572] = 2548, + [2573] = 2549, + [2574] = 2550, + [2575] = 2575, + [2576] = 2548, + [2577] = 2549, [2578] = 2550, - [2579] = 2547, - [2580] = 2560, - [2581] = 2561, - [2582] = 2550, - [2583] = 2561, - [2584] = 2560, - [2585] = 2561, - [2586] = 2586, - [2587] = 2550, - [2588] = 2547, - [2589] = 2560, - [2590] = 2561, - [2591] = 2560, - [2592] = 2592, - [2593] = 2593, - [2594] = 2550, - [2595] = 2547, - [2596] = 2560, - [2597] = 2561, + [2579] = 2548, + [2580] = 2546, + [2581] = 2581, + [2582] = 2548, + [2583] = 2549, + [2584] = 2550, + [2585] = 2585, + [2586] = 2548, + [2587] = 2546, + [2588] = 2549, + [2589] = 2548, + [2590] = 2549, + [2591] = 2550, + [2592] = 2546, + [2593] = 2550, + [2594] = 2548, + [2595] = 2549, + [2596] = 2550, + [2597] = 2550, [2598] = 2598, - [2599] = 2561, + [2599] = 2599, [2600] = 2600, - [2601] = 2550, - [2602] = 2602, - [2603] = 2547, - [2604] = 2560, - [2605] = 2561, + [2601] = 2601, + [2602] = 2546, + [2603] = 2603, + [2604] = 2548, + [2605] = 2549, [2606] = 2550, - [2607] = 2547, - [2608] = 2560, - [2609] = 2561, - [2610] = 2550, - [2611] = 2560, - [2612] = 2561, - [2613] = 2547, - [2614] = 2547, + [2607] = 2546, + [2608] = 2546, + [2609] = 2548, + [2610] = 2546, + [2611] = 2611, + [2612] = 2612, + [2613] = 801, + [2614] = 2611, [2615] = 2615, [2616] = 2616, - [2617] = 2617, + [2617] = 2616, [2618] = 2618, - [2619] = 2617, + [2619] = 2619, [2620] = 2618, - [2621] = 2617, - [2622] = 2615, - [2623] = 2623, - [2624] = 2615, - [2625] = 2623, - [2626] = 2618, - [2627] = 2627, - [2628] = 2617, - [2629] = 2623, - [2630] = 2615, - [2631] = 2623, + [2621] = 2618, + [2622] = 2619, + [2623] = 2616, + [2624] = 2611, + [2625] = 2619, + [2626] = 2616, + [2627] = 2619, + [2628] = 2611, + [2629] = 2616, + [2630] = 2616, + [2631] = 2619, [2632] = 2615, - [2633] = 2633, - [2634] = 2627, - [2635] = 2617, - [2636] = 2618, - [2637] = 2617, - [2638] = 2638, + [2633] = 2618, + [2634] = 2616, + [2635] = 2619, + [2636] = 2611, + [2637] = 2618, + [2638] = 2611, [2639] = 2615, - [2640] = 2623, - [2641] = 2615, - [2642] = 2627, - [2643] = 2623, - [2644] = 2623, - [2645] = 2627, + [2640] = 2618, + [2641] = 2619, + [2642] = 2619, + [2643] = 2615, + [2644] = 2616, + [2645] = 2611, [2646] = 2615, - [2647] = 2623, - [2648] = 2627, - [2649] = 2618, - [2650] = 2615, - [2651] = 800, - [2652] = 2623, + [2647] = 2616, + [2648] = 2618, + [2649] = 2612, + [2650] = 2618, + [2651] = 2619, + [2652] = 2615, [2653] = 2618, - [2654] = 2618, - [2655] = 2627, + [2654] = 2615, + [2655] = 2619, [2656] = 2615, - [2657] = 2618, - [2658] = 2617, - [2659] = 2627, - [2660] = 2623, - [2661] = 2616, - [2662] = 2618, - [2663] = 2623, - [2664] = 2616, - [2665] = 2627, - [2666] = 800, - [2667] = 2623, - [2668] = 2617, - [2669] = 2615, - [2670] = 2627, - [2671] = 2617, - [2672] = 2617, - [2673] = 2623, - [2674] = 2618, - [2675] = 2618, - [2676] = 2676, - [2677] = 2617, - [2678] = 2627, - [2679] = 2617, - [2680] = 2627, - [2681] = 2627, - [2682] = 2615, - [2683] = 2618, - [2684] = 2676, - [2685] = 2616, - [2686] = 2676, - [2687] = 2616, - [2688] = 2676, - [2689] = 2616, - [2690] = 2676, - [2691] = 2616, - [2692] = 2676, - [2693] = 2616, - [2694] = 2676, - [2695] = 2616, - [2696] = 2676, - [2697] = 2616, - [2698] = 2676, - [2699] = 2616, - [2700] = 2676, - [2701] = 2616, - [2702] = 2676, - [2703] = 2616, - [2704] = 2676, - [2705] = 2617, - [2706] = 2706, + [2657] = 801, + [2658] = 2616, + [2659] = 2615, + [2660] = 2618, + [2661] = 2611, + [2662] = 2619, + [2663] = 2612, + [2664] = 2611, + [2665] = 2618, + [2666] = 2616, + [2667] = 2611, + [2668] = 2668, + [2669] = 2616, + [2670] = 2616, + [2671] = 2618, + [2672] = 2615, + [2673] = 2673, + [2674] = 2615, + [2675] = 2619, + [2676] = 2611, + [2677] = 2611, + [2678] = 2678, + [2679] = 2615, + [2680] = 2668, + [2681] = 2612, + [2682] = 2668, + [2683] = 2612, + [2684] = 2668, + [2685] = 2612, + [2686] = 2668, + [2687] = 2612, + [2688] = 2668, + [2689] = 2612, + [2690] = 2668, + [2691] = 2612, + [2692] = 2668, + [2693] = 2612, + [2694] = 2668, + [2695] = 2612, + [2696] = 2668, + [2697] = 2612, + [2698] = 2668, + [2699] = 2612, + [2700] = 2668, + [2701] = 2619, + [2702] = 2702, + [2703] = 905, + [2704] = 2704, + [2705] = 2704, + [2706] = 935, [2707] = 2707, - [2708] = 807, - [2709] = 2706, - [2710] = 2706, - [2711] = 2711, - [2712] = 2706, - [2713] = 939, - [2714] = 2707, - [2715] = 2715, - [2716] = 902, - [2717] = 939, - [2718] = 2718, - [2719] = 909, - [2720] = 2707, - [2721] = 2707, - [2722] = 2706, - [2723] = 2706, - [2724] = 2706, - [2725] = 2706, - [2726] = 2706, - [2727] = 2707, - [2728] = 2706, - [2729] = 2729, - [2730] = 2707, - [2731] = 915, - [2732] = 2732, - [2733] = 2733, - [2734] = 2734, - [2735] = 2707, - [2736] = 2707, + [2708] = 2708, + [2709] = 911, + [2710] = 2704, + [2711] = 2708, + [2712] = 2708, + [2713] = 2708, + [2714] = 2704, + [2715] = 935, + [2716] = 898, + [2717] = 2704, + [2718] = 2704, + [2719] = 2708, + [2720] = 2720, + [2721] = 2708, + [2722] = 2704, + [2723] = 2723, + [2724] = 2708, + [2725] = 2725, + [2726] = 2704, + [2727] = 2708, + [2728] = 2704, + [2729] = 801, + [2730] = 2704, + [2731] = 2704, + [2732] = 2708, + [2733] = 803, + [2734] = 2704, + [2735] = 2708, + [2736] = 2736, [2737] = 2737, - [2738] = 2706, - [2739] = 2707, - [2740] = 2707, - [2741] = 2706, - [2742] = 2707, - [2743] = 2743, - [2744] = 2707, - [2745] = 2745, + [2738] = 2708, + [2739] = 2739, + [2740] = 2708, + [2741] = 2741, + [2742] = 2742, + [2743] = 2741, + [2744] = 2744, + [2745] = 2742, [2746] = 2746, - [2747] = 2745, - [2748] = 2748, + [2747] = 2747, + [2748] = 2746, [2749] = 2749, - [2750] = 2750, - [2751] = 2745, - [2752] = 2749, - [2753] = 2746, - [2754] = 2754, - [2755] = 2749, - [2756] = 2756, - [2757] = 2756, - [2758] = 2758, - [2759] = 2759, - [2760] = 2760, - [2761] = 2761, - [2762] = 938, - [2763] = 2763, - [2764] = 2763, - [2765] = 2745, - [2766] = 2763, - [2767] = 2767, - [2768] = 2749, + [2750] = 2742, + [2751] = 2751, + [2752] = 2752, + [2753] = 2747, + [2754] = 2742, + [2755] = 2747, + [2756] = 2749, + [2757] = 2751, + [2758] = 2752, + [2759] = 2752, + [2760] = 2752, + [2761] = 2741, + [2762] = 2749, + [2763] = 2751, + [2764] = 2741, + [2765] = 2746, + [2766] = 2747, + [2767] = 2752, + [2768] = 2768, [2769] = 2769, - [2770] = 2767, - [2771] = 2748, - [2772] = 2767, - [2773] = 2767, - [2774] = 2767, - [2775] = 2746, - [2776] = 2767, - [2777] = 2760, - [2778] = 2760, - [2779] = 2761, - [2780] = 2761, - [2781] = 2767, - [2782] = 2746, - [2783] = 2783, - [2784] = 2750, - [2785] = 2750, - [2786] = 2748, - [2787] = 2763, - [2788] = 2763, - [2789] = 2767, - [2790] = 2745, - [2791] = 2748, - [2792] = 2748, - [2793] = 2763, - [2794] = 2756, + [2770] = 2744, + [2771] = 2741, + [2772] = 2741, + [2773] = 2746, + [2774] = 2749, + [2775] = 2751, + [2776] = 2742, + [2777] = 2742, + [2778] = 2742, + [2779] = 2779, + [2780] = 2746, + [2781] = 2742, + [2782] = 2769, + [2783] = 2747, + [2784] = 2742, + [2785] = 2744, + [2786] = 2752, + [2787] = 2752, + [2788] = 2747, + [2789] = 2789, + [2790] = 2744, + [2791] = 2769, + [2792] = 2749, + [2793] = 2751, + [2794] = 2794, [2795] = 2746, - [2796] = 2760, - [2797] = 2761, - [2798] = 2746, - [2799] = 2799, - [2800] = 2750, - [2801] = 2745, - [2802] = 2756, - [2803] = 2756, - [2804] = 2763, - [2805] = 2750, - [2806] = 2806, - [2807] = 2749, - [2808] = 2760, - [2809] = 2761, - [2810] = 2756, - [2811] = 2761, - [2812] = 2748, - [2813] = 2763, - [2814] = 2760, - [2815] = 2761, - [2816] = 2767, - [2817] = 2767, - [2818] = 2756, - [2819] = 2745, - [2820] = 2748, - [2821] = 2760, - [2822] = 2761, - [2823] = 2767, - [2824] = 2763, - [2825] = 2756, - [2826] = 2745, - [2827] = 2760, - [2828] = 2763, - [2829] = 2756, - [2830] = 2748, - [2831] = 2745, - [2832] = 2760, - [2833] = 2761, - [2834] = 2749, - [2835] = 2749, - [2836] = 2756, - [2837] = 2745, - [2838] = 2746, - [2839] = 2763, - [2840] = 2750, - [2841] = 2841, - [2842] = 2748, - [2843] = 2750, - [2844] = 2749, - [2845] = 2845, - [2846] = 2748, - [2847] = 2756, - [2848] = 2749, - [2849] = 2748, - [2850] = 2850, - [2851] = 2750, - [2852] = 2783, - [2853] = 2850, - [2854] = 2783, - [2855] = 2850, - [2856] = 2783, - [2857] = 2850, - [2858] = 2783, - [2859] = 2850, - [2860] = 2783, - [2861] = 2850, - [2862] = 2783, - [2863] = 2850, - [2864] = 2783, - [2865] = 2850, - [2866] = 2783, - [2867] = 2850, - [2868] = 2783, - [2869] = 2850, - [2870] = 2783, - [2871] = 2850, - [2872] = 2783, - [2873] = 2850, - [2874] = 2850, - [2875] = 2746, - [2876] = 2760, - [2877] = 2761, - [2878] = 2746, - [2879] = 2746, - [2880] = 2750, - [2881] = 2745, - [2882] = 2750, - [2883] = 2760, - [2884] = 2756, - [2885] = 2761, - [2886] = 2746, - [2887] = 2750, - [2888] = 2749, - [2889] = 2748, + [2796] = 2744, + [2797] = 2741, + [2798] = 2779, + [2799] = 2749, + [2800] = 2752, + [2801] = 2801, + [2802] = 2779, + [2803] = 2747, + [2804] = 2752, + [2805] = 2749, + [2806] = 2779, + [2807] = 2751, + [2808] = 2808, + [2809] = 2747, + [2810] = 2749, + [2811] = 2751, + [2812] = 2752, + [2813] = 2744, + [2814] = 2814, + [2815] = 2741, + [2816] = 2746, + [2817] = 2744, + [2818] = 2779, + [2819] = 2746, + [2820] = 2820, + [2821] = 2744, + [2822] = 2741, + [2823] = 2752, + [2824] = 2769, + [2825] = 2779, + [2826] = 2744, + [2827] = 2779, + [2828] = 2749, + [2829] = 2751, + [2830] = 2769, + [2831] = 2779, + [2832] = 2751, + [2833] = 2741, + [2834] = 2747, + [2835] = 2769, + [2836] = 2769, + [2837] = 2744, + [2838] = 2769, + [2839] = 2752, + [2840] = 2769, + [2841] = 2779, + [2842] = 2842, + [2843] = 2747, + [2844] = 2779, + [2845] = 2769, + [2846] = 2779, + [2847] = 2742, + [2848] = 2789, + [2849] = 2808, + [2850] = 2789, + [2851] = 2808, + [2852] = 2789, + [2853] = 2808, + [2854] = 2789, + [2855] = 2808, + [2856] = 2789, + [2857] = 2808, + [2858] = 2789, + [2859] = 2808, + [2860] = 2789, + [2861] = 2808, + [2862] = 2789, + [2863] = 2808, + [2864] = 2789, + [2865] = 2808, + [2866] = 2789, + [2867] = 2808, + [2868] = 2789, + [2869] = 2808, + [2870] = 2808, + [2871] = 2746, + [2872] = 2749, + [2873] = 2751, + [2874] = 2749, + [2875] = 2779, + [2876] = 935, + [2877] = 2741, + [2878] = 2751, + [2879] = 2769, + [2880] = 2746, + [2881] = 2746, + [2882] = 934, + [2883] = 2744, + [2884] = 2747, + [2885] = 2742, + [2886] = 2741, + [2887] = 2887, + [2888] = 2744, + [2889] = 2746, [2890] = 2749, - [2891] = 2746, - [2892] = 2745, - [2893] = 2750, - [2894] = 2760, - [2895] = 2761, - [2896] = 2763, - [2897] = 2767, - [2898] = 2749, + [2891] = 2751, + [2892] = 2769, + [2893] = 2747, + [2894] = 2742, }; static const TSCharacterRange aux_sym_key_value_value_token1_character_set_1[] = { @@ -4531,7 +4534,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 2196, '(', 2228, ')', 2229, - '=', 2207, ); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -26959,60 +26961,60 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [15] = {.lex_state = 4, .external_lex_state = 5}, [16] = {.lex_state = 4, .external_lex_state = 5}, [17] = {.lex_state = 4, .external_lex_state = 5}, - [18] = {.lex_state = 2181, .external_lex_state = 3}, - [19] = {.lex_state = 2181, .external_lex_state = 5}, - [20] = {.lex_state = 2181, .external_lex_state = 6}, - [21] = {.lex_state = 2181, .external_lex_state = 4}, - [22] = {.lex_state = 2181, .external_lex_state = 5}, - [23] = {.lex_state = 2181, .external_lex_state = 7}, - [24] = {.lex_state = 2181, .external_lex_state = 8}, - [25] = {.lex_state = 2181, .external_lex_state = 9}, - [26] = {.lex_state = 2181, .external_lex_state = 10}, - [27] = {.lex_state = 2181, .external_lex_state = 11}, - [28] = {.lex_state = 2181, .external_lex_state = 12}, - [29] = {.lex_state = 2181, .external_lex_state = 13}, + [18] = {.lex_state = 2181, .external_lex_state = 5}, + [19] = {.lex_state = 2181, .external_lex_state = 6}, + [20] = {.lex_state = 2181, .external_lex_state = 7}, + [21] = {.lex_state = 2181, .external_lex_state = 5}, + [22] = {.lex_state = 2181, .external_lex_state = 8}, + [23] = {.lex_state = 2181, .external_lex_state = 9}, + [24] = {.lex_state = 2181, .external_lex_state = 10}, + [25] = {.lex_state = 2181, .external_lex_state = 4}, + [26] = {.lex_state = 2181, .external_lex_state = 11}, + [27] = {.lex_state = 2181, .external_lex_state = 12}, + [28] = {.lex_state = 2181, .external_lex_state = 13}, + [29] = {.lex_state = 2181, .external_lex_state = 5}, [30] = {.lex_state = 2181, .external_lex_state = 5}, - [31] = {.lex_state = 2181, .external_lex_state = 5}, + [31] = {.lex_state = 4, .external_lex_state = 5}, [32] = {.lex_state = 4, .external_lex_state = 5}, [33] = {.lex_state = 4, .external_lex_state = 5}, [34] = {.lex_state = 4, .external_lex_state = 5}, - [35] = {.lex_state = 4, .external_lex_state = 5}, + [35] = {.lex_state = 2181, .external_lex_state = 5}, [36] = {.lex_state = 2181, .external_lex_state = 5}, [37] = {.lex_state = 2181, .external_lex_state = 5}, - [38] = {.lex_state = 2181, .external_lex_state = 5}, + [38] = {.lex_state = 2181, .external_lex_state = 6}, [39] = {.lex_state = 2181, .external_lex_state = 6}, - [40] = {.lex_state = 2181, .external_lex_state = 6}, + [40] = {.lex_state = 2181, .external_lex_state = 7}, [41] = {.lex_state = 2181, .external_lex_state = 7}, - [42] = {.lex_state = 2181, .external_lex_state = 4}, - [43] = {.lex_state = 2181, .external_lex_state = 7}, + [42] = {.lex_state = 2181, .external_lex_state = 8}, + [43] = {.lex_state = 2181, .external_lex_state = 5}, [44] = {.lex_state = 2181, .external_lex_state = 5}, - [45] = {.lex_state = 2181, .external_lex_state = 5}, + [45] = {.lex_state = 2181, .external_lex_state = 8}, [46] = {.lex_state = 2181, .external_lex_state = 5}, [47] = {.lex_state = 2181, .external_lex_state = 12}, [48] = {.lex_state = 2181, .external_lex_state = 13}, - [49] = {.lex_state = 2181, .external_lex_state = 8}, - [50] = {.lex_state = 2181, .external_lex_state = 9}, - [51] = {.lex_state = 2181, .external_lex_state = 10}, + [49] = {.lex_state = 2181, .external_lex_state = 9}, + [50] = {.lex_state = 2181, .external_lex_state = 10}, + [51] = {.lex_state = 2181, .external_lex_state = 4}, [52] = {.lex_state = 2181, .external_lex_state = 11}, [53] = {.lex_state = 4, .external_lex_state = 5}, [54] = {.lex_state = 2181, .external_lex_state = 5}, - [55] = {.lex_state = 2181, .external_lex_state = 7}, - [56] = {.lex_state = 2181, .external_lex_state = 8}, - [57] = {.lex_state = 2181, .external_lex_state = 9}, - [58] = {.lex_state = 2181, .external_lex_state = 10}, + [55] = {.lex_state = 2181, .external_lex_state = 8}, + [56] = {.lex_state = 2181, .external_lex_state = 9}, + [57] = {.lex_state = 2181, .external_lex_state = 10}, + [58] = {.lex_state = 2181, .external_lex_state = 4}, [59] = {.lex_state = 2181, .external_lex_state = 11}, [60] = {.lex_state = 2181, .external_lex_state = 5}, [61] = {.lex_state = 4, .external_lex_state = 5}, [62] = {.lex_state = 4, .external_lex_state = 5}, [63] = {.lex_state = 4, .external_lex_state = 5}, [64] = {.lex_state = 4, .external_lex_state = 5}, - [65] = {.lex_state = 2181, .external_lex_state = 8}, + [65] = {.lex_state = 2181, .external_lex_state = 9}, [66] = {.lex_state = 2181, .external_lex_state = 6}, - [67] = {.lex_state = 2181, .external_lex_state = 4}, - [68] = {.lex_state = 2181, .external_lex_state = 7}, - [69] = {.lex_state = 2181, .external_lex_state = 8}, - [70] = {.lex_state = 2181, .external_lex_state = 9}, - [71] = {.lex_state = 2181, .external_lex_state = 10}, + [67] = {.lex_state = 2181, .external_lex_state = 7}, + [68] = {.lex_state = 2181, .external_lex_state = 8}, + [69] = {.lex_state = 2181, .external_lex_state = 9}, + [70] = {.lex_state = 2181, .external_lex_state = 10}, + [71] = {.lex_state = 2181, .external_lex_state = 4}, [72] = {.lex_state = 2181, .external_lex_state = 11}, [73] = {.lex_state = 2181, .external_lex_state = 12}, [74] = {.lex_state = 2181, .external_lex_state = 13}, @@ -27024,25 +27026,25 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [80] = {.lex_state = 2181, .external_lex_state = 5}, [81] = {.lex_state = 2181, .external_lex_state = 5}, [82] = {.lex_state = 2181, .external_lex_state = 6}, - [83] = {.lex_state = 2181, .external_lex_state = 4}, + [83] = {.lex_state = 2181, .external_lex_state = 7}, [84] = {.lex_state = 2181, .external_lex_state = 5}, - [85] = {.lex_state = 2181, .external_lex_state = 7}, - [86] = {.lex_state = 2181, .external_lex_state = 8}, - [87] = {.lex_state = 2181, .external_lex_state = 9}, - [88] = {.lex_state = 2181, .external_lex_state = 10}, + [85] = {.lex_state = 2181, .external_lex_state = 8}, + [86] = {.lex_state = 2181, .external_lex_state = 9}, + [87] = {.lex_state = 2181, .external_lex_state = 10}, + [88] = {.lex_state = 2181, .external_lex_state = 4}, [89] = {.lex_state = 2181, .external_lex_state = 11}, [90] = {.lex_state = 2181, .external_lex_state = 5}, [91] = {.lex_state = 4, .external_lex_state = 5}, [92] = {.lex_state = 4, .external_lex_state = 5}, [93] = {.lex_state = 4, .external_lex_state = 5}, [94] = {.lex_state = 4, .external_lex_state = 5}, - [95] = {.lex_state = 2181, .external_lex_state = 9}, + [95] = {.lex_state = 2181, .external_lex_state = 10}, [96] = {.lex_state = 2181, .external_lex_state = 6}, - [97] = {.lex_state = 2181, .external_lex_state = 4}, - [98] = {.lex_state = 2181, .external_lex_state = 7}, - [99] = {.lex_state = 2181, .external_lex_state = 8}, - [100] = {.lex_state = 2181, .external_lex_state = 9}, - [101] = {.lex_state = 2181, .external_lex_state = 10}, + [97] = {.lex_state = 2181, .external_lex_state = 7}, + [98] = {.lex_state = 2181, .external_lex_state = 8}, + [99] = {.lex_state = 2181, .external_lex_state = 9}, + [100] = {.lex_state = 2181, .external_lex_state = 10}, + [101] = {.lex_state = 2181, .external_lex_state = 4}, [102] = {.lex_state = 2181, .external_lex_state = 11}, [103] = {.lex_state = 2181, .external_lex_state = 12}, [104] = {.lex_state = 2181, .external_lex_state = 13}, @@ -27054,25 +27056,25 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [110] = {.lex_state = 2181, .external_lex_state = 5}, [111] = {.lex_state = 2181, .external_lex_state = 5}, [112] = {.lex_state = 2181, .external_lex_state = 6}, - [113] = {.lex_state = 2181, .external_lex_state = 4}, + [113] = {.lex_state = 2181, .external_lex_state = 7}, [114] = {.lex_state = 2181, .external_lex_state = 5}, - [115] = {.lex_state = 2181, .external_lex_state = 7}, - [116] = {.lex_state = 2181, .external_lex_state = 8}, - [117] = {.lex_state = 2181, .external_lex_state = 9}, - [118] = {.lex_state = 2181, .external_lex_state = 10}, + [115] = {.lex_state = 2181, .external_lex_state = 8}, + [116] = {.lex_state = 2181, .external_lex_state = 9}, + [117] = {.lex_state = 2181, .external_lex_state = 10}, + [118] = {.lex_state = 2181, .external_lex_state = 4}, [119] = {.lex_state = 2181, .external_lex_state = 11}, [120] = {.lex_state = 2181, .external_lex_state = 5}, [121] = {.lex_state = 4, .external_lex_state = 5}, [122] = {.lex_state = 4, .external_lex_state = 5}, [123] = {.lex_state = 4, .external_lex_state = 5}, [124] = {.lex_state = 4, .external_lex_state = 5}, - [125] = {.lex_state = 2181, .external_lex_state = 10}, + [125] = {.lex_state = 2181, .external_lex_state = 3}, [126] = {.lex_state = 2181, .external_lex_state = 6}, - [127] = {.lex_state = 2181, .external_lex_state = 4}, - [128] = {.lex_state = 2181, .external_lex_state = 7}, - [129] = {.lex_state = 2181, .external_lex_state = 8}, - [130] = {.lex_state = 2181, .external_lex_state = 9}, - [131] = {.lex_state = 2181, .external_lex_state = 10}, + [127] = {.lex_state = 2181, .external_lex_state = 7}, + [128] = {.lex_state = 2181, .external_lex_state = 8}, + [129] = {.lex_state = 2181, .external_lex_state = 9}, + [130] = {.lex_state = 2181, .external_lex_state = 10}, + [131] = {.lex_state = 2181, .external_lex_state = 4}, [132] = {.lex_state = 2181, .external_lex_state = 11}, [133] = {.lex_state = 2181, .external_lex_state = 12}, [134] = {.lex_state = 2181, .external_lex_state = 13}, @@ -27084,12 +27086,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [140] = {.lex_state = 2181, .external_lex_state = 5}, [141] = {.lex_state = 2181, .external_lex_state = 5}, [142] = {.lex_state = 2181, .external_lex_state = 6}, - [143] = {.lex_state = 2181, .external_lex_state = 4}, + [143] = {.lex_state = 2181, .external_lex_state = 7}, [144] = {.lex_state = 2181, .external_lex_state = 5}, - [145] = {.lex_state = 2181, .external_lex_state = 7}, - [146] = {.lex_state = 2181, .external_lex_state = 8}, - [147] = {.lex_state = 2181, .external_lex_state = 9}, - [148] = {.lex_state = 2181, .external_lex_state = 10}, + [145] = {.lex_state = 2181, .external_lex_state = 8}, + [146] = {.lex_state = 2181, .external_lex_state = 9}, + [147] = {.lex_state = 2181, .external_lex_state = 10}, + [148] = {.lex_state = 2181, .external_lex_state = 4}, [149] = {.lex_state = 2181, .external_lex_state = 11}, [150] = {.lex_state = 2181, .external_lex_state = 5}, [151] = {.lex_state = 4, .external_lex_state = 5}, @@ -27098,11 +27100,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [154] = {.lex_state = 4, .external_lex_state = 5}, [155] = {.lex_state = 2181, .external_lex_state = 11}, [156] = {.lex_state = 2181, .external_lex_state = 6}, - [157] = {.lex_state = 2181, .external_lex_state = 4}, - [158] = {.lex_state = 2181, .external_lex_state = 7}, - [159] = {.lex_state = 2181, .external_lex_state = 8}, - [160] = {.lex_state = 2181, .external_lex_state = 9}, - [161] = {.lex_state = 2181, .external_lex_state = 10}, + [157] = {.lex_state = 2181, .external_lex_state = 7}, + [158] = {.lex_state = 2181, .external_lex_state = 8}, + [159] = {.lex_state = 2181, .external_lex_state = 9}, + [160] = {.lex_state = 2181, .external_lex_state = 10}, + [161] = {.lex_state = 2181, .external_lex_state = 4}, [162] = {.lex_state = 2181, .external_lex_state = 11}, [163] = {.lex_state = 2181, .external_lex_state = 12}, [164] = {.lex_state = 2181, .external_lex_state = 13}, @@ -27114,12 +27116,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [170] = {.lex_state = 2181, .external_lex_state = 5}, [171] = {.lex_state = 2181, .external_lex_state = 5}, [172] = {.lex_state = 2181, .external_lex_state = 6}, - [173] = {.lex_state = 2181, .external_lex_state = 4}, + [173] = {.lex_state = 2181, .external_lex_state = 7}, [174] = {.lex_state = 2181, .external_lex_state = 5}, - [175] = {.lex_state = 2181, .external_lex_state = 7}, - [176] = {.lex_state = 2181, .external_lex_state = 8}, - [177] = {.lex_state = 2181, .external_lex_state = 9}, - [178] = {.lex_state = 2181, .external_lex_state = 10}, + [175] = {.lex_state = 2181, .external_lex_state = 8}, + [176] = {.lex_state = 2181, .external_lex_state = 9}, + [177] = {.lex_state = 2181, .external_lex_state = 10}, + [178] = {.lex_state = 2181, .external_lex_state = 4}, [179] = {.lex_state = 2181, .external_lex_state = 11}, [180] = {.lex_state = 2181, .external_lex_state = 5}, [181] = {.lex_state = 4, .external_lex_state = 5}, @@ -27127,11 +27129,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [183] = {.lex_state = 4, .external_lex_state = 5}, [184] = {.lex_state = 4, .external_lex_state = 5}, [185] = {.lex_state = 2181, .external_lex_state = 6}, - [186] = {.lex_state = 2181, .external_lex_state = 4}, - [187] = {.lex_state = 2181, .external_lex_state = 7}, - [188] = {.lex_state = 2181, .external_lex_state = 8}, - [189] = {.lex_state = 2181, .external_lex_state = 9}, - [190] = {.lex_state = 2181, .external_lex_state = 10}, + [186] = {.lex_state = 2181, .external_lex_state = 7}, + [187] = {.lex_state = 2181, .external_lex_state = 8}, + [188] = {.lex_state = 2181, .external_lex_state = 9}, + [189] = {.lex_state = 2181, .external_lex_state = 10}, + [190] = {.lex_state = 2181, .external_lex_state = 4}, [191] = {.lex_state = 2181, .external_lex_state = 11}, [192] = {.lex_state = 2181, .external_lex_state = 12}, [193] = {.lex_state = 2181, .external_lex_state = 13}, @@ -27143,12 +27145,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [199] = {.lex_state = 2181, .external_lex_state = 5}, [200] = {.lex_state = 2181, .external_lex_state = 5}, [201] = {.lex_state = 2181, .external_lex_state = 6}, - [202] = {.lex_state = 2181, .external_lex_state = 4}, + [202] = {.lex_state = 2181, .external_lex_state = 7}, [203] = {.lex_state = 2181, .external_lex_state = 5}, - [204] = {.lex_state = 2181, .external_lex_state = 7}, - [205] = {.lex_state = 2181, .external_lex_state = 8}, - [206] = {.lex_state = 2181, .external_lex_state = 9}, - [207] = {.lex_state = 2181, .external_lex_state = 10}, + [204] = {.lex_state = 2181, .external_lex_state = 8}, + [205] = {.lex_state = 2181, .external_lex_state = 9}, + [206] = {.lex_state = 2181, .external_lex_state = 10}, + [207] = {.lex_state = 2181, .external_lex_state = 4}, [208] = {.lex_state = 2181, .external_lex_state = 11}, [209] = {.lex_state = 2181, .external_lex_state = 5}, [210] = {.lex_state = 4, .external_lex_state = 5}, @@ -27156,11 +27158,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [212] = {.lex_state = 4, .external_lex_state = 5}, [213] = {.lex_state = 4, .external_lex_state = 5}, [214] = {.lex_state = 2181, .external_lex_state = 6}, - [215] = {.lex_state = 2181, .external_lex_state = 4}, - [216] = {.lex_state = 2181, .external_lex_state = 7}, - [217] = {.lex_state = 2181, .external_lex_state = 8}, - [218] = {.lex_state = 2181, .external_lex_state = 9}, - [219] = {.lex_state = 2181, .external_lex_state = 10}, + [215] = {.lex_state = 2181, .external_lex_state = 7}, + [216] = {.lex_state = 2181, .external_lex_state = 8}, + [217] = {.lex_state = 2181, .external_lex_state = 9}, + [218] = {.lex_state = 2181, .external_lex_state = 10}, + [219] = {.lex_state = 2181, .external_lex_state = 4}, [220] = {.lex_state = 2181, .external_lex_state = 11}, [221] = {.lex_state = 2181, .external_lex_state = 12}, [222] = {.lex_state = 2181, .external_lex_state = 13}, @@ -27172,12 +27174,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [228] = {.lex_state = 2181, .external_lex_state = 5}, [229] = {.lex_state = 2181, .external_lex_state = 5}, [230] = {.lex_state = 4, .external_lex_state = 5}, - [231] = {.lex_state = 2181, .external_lex_state = 4}, + [231] = {.lex_state = 2181, .external_lex_state = 7}, [232] = {.lex_state = 2181, .external_lex_state = 5}, - [233] = {.lex_state = 2181, .external_lex_state = 7}, - [234] = {.lex_state = 2181, .external_lex_state = 8}, - [235] = {.lex_state = 2181, .external_lex_state = 9}, - [236] = {.lex_state = 2181, .external_lex_state = 10}, + [233] = {.lex_state = 2181, .external_lex_state = 8}, + [234] = {.lex_state = 2181, .external_lex_state = 9}, + [235] = {.lex_state = 2181, .external_lex_state = 10}, + [236] = {.lex_state = 2181, .external_lex_state = 4}, [237] = {.lex_state = 2181, .external_lex_state = 11}, [238] = {.lex_state = 2181, .external_lex_state = 5}, [239] = {.lex_state = 4, .external_lex_state = 5}, @@ -27185,11 +27187,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [241] = {.lex_state = 4, .external_lex_state = 5}, [242] = {.lex_state = 4, .external_lex_state = 5}, [243] = {.lex_state = 2181, .external_lex_state = 6}, - [244] = {.lex_state = 2181, .external_lex_state = 4}, - [245] = {.lex_state = 2181, .external_lex_state = 7}, - [246] = {.lex_state = 2181, .external_lex_state = 8}, - [247] = {.lex_state = 2181, .external_lex_state = 9}, - [248] = {.lex_state = 2181, .external_lex_state = 10}, + [244] = {.lex_state = 2181, .external_lex_state = 7}, + [245] = {.lex_state = 2181, .external_lex_state = 8}, + [246] = {.lex_state = 2181, .external_lex_state = 9}, + [247] = {.lex_state = 2181, .external_lex_state = 10}, + [248] = {.lex_state = 2181, .external_lex_state = 4}, [249] = {.lex_state = 2181, .external_lex_state = 11}, [250] = {.lex_state = 2181, .external_lex_state = 12}, [251] = {.lex_state = 2181, .external_lex_state = 13}, @@ -27201,12 +27203,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [257] = {.lex_state = 2181, .external_lex_state = 5}, [258] = {.lex_state = 2181, .external_lex_state = 5}, [259] = {.lex_state = 2181, .external_lex_state = 6}, - [260] = {.lex_state = 2181, .external_lex_state = 4}, + [260] = {.lex_state = 2181, .external_lex_state = 7}, [261] = {.lex_state = 2181, .external_lex_state = 5}, - [262] = {.lex_state = 2181, .external_lex_state = 7}, - [263] = {.lex_state = 2181, .external_lex_state = 8}, - [264] = {.lex_state = 2181, .external_lex_state = 9}, - [265] = {.lex_state = 2181, .external_lex_state = 10}, + [262] = {.lex_state = 2181, .external_lex_state = 8}, + [263] = {.lex_state = 2181, .external_lex_state = 9}, + [264] = {.lex_state = 2181, .external_lex_state = 10}, + [265] = {.lex_state = 2181, .external_lex_state = 4}, [266] = {.lex_state = 2181, .external_lex_state = 11}, [267] = {.lex_state = 2181, .external_lex_state = 5}, [268] = {.lex_state = 4, .external_lex_state = 5}, @@ -27214,11 +27216,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [270] = {.lex_state = 4, .external_lex_state = 5}, [271] = {.lex_state = 4, .external_lex_state = 5}, [272] = {.lex_state = 2181, .external_lex_state = 6}, - [273] = {.lex_state = 2181, .external_lex_state = 4}, - [274] = {.lex_state = 2181, .external_lex_state = 7}, - [275] = {.lex_state = 2181, .external_lex_state = 8}, - [276] = {.lex_state = 2181, .external_lex_state = 9}, - [277] = {.lex_state = 2181, .external_lex_state = 10}, + [273] = {.lex_state = 2181, .external_lex_state = 7}, + [274] = {.lex_state = 2181, .external_lex_state = 8}, + [275] = {.lex_state = 2181, .external_lex_state = 9}, + [276] = {.lex_state = 2181, .external_lex_state = 10}, + [277] = {.lex_state = 2181, .external_lex_state = 4}, [278] = {.lex_state = 2181, .external_lex_state = 11}, [279] = {.lex_state = 2181, .external_lex_state = 12}, [280] = {.lex_state = 2181, .external_lex_state = 13}, @@ -27230,12 +27232,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [286] = {.lex_state = 2181, .external_lex_state = 5}, [287] = {.lex_state = 2181, .external_lex_state = 5}, [288] = {.lex_state = 2181, .external_lex_state = 6}, - [289] = {.lex_state = 2181, .external_lex_state = 4}, + [289] = {.lex_state = 2181, .external_lex_state = 7}, [290] = {.lex_state = 2181, .external_lex_state = 5}, - [291] = {.lex_state = 2181, .external_lex_state = 7}, - [292] = {.lex_state = 2181, .external_lex_state = 8}, - [293] = {.lex_state = 2181, .external_lex_state = 9}, - [294] = {.lex_state = 2181, .external_lex_state = 10}, + [291] = {.lex_state = 2181, .external_lex_state = 8}, + [292] = {.lex_state = 2181, .external_lex_state = 9}, + [293] = {.lex_state = 2181, .external_lex_state = 10}, + [294] = {.lex_state = 2181, .external_lex_state = 4}, [295] = {.lex_state = 2181, .external_lex_state = 11}, [296] = {.lex_state = 2181, .external_lex_state = 5}, [297] = {.lex_state = 4, .external_lex_state = 5}, @@ -27244,11 +27246,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [300] = {.lex_state = 4, .external_lex_state = 5}, [301] = {.lex_state = 2181, .external_lex_state = 5}, [302] = {.lex_state = 2181, .external_lex_state = 6}, - [303] = {.lex_state = 2181, .external_lex_state = 4}, - [304] = {.lex_state = 2181, .external_lex_state = 7}, - [305] = {.lex_state = 2181, .external_lex_state = 8}, - [306] = {.lex_state = 2181, .external_lex_state = 9}, - [307] = {.lex_state = 2181, .external_lex_state = 10}, + [303] = {.lex_state = 2181, .external_lex_state = 7}, + [304] = {.lex_state = 2181, .external_lex_state = 8}, + [305] = {.lex_state = 2181, .external_lex_state = 9}, + [306] = {.lex_state = 2181, .external_lex_state = 10}, + [307] = {.lex_state = 2181, .external_lex_state = 4}, [308] = {.lex_state = 2181, .external_lex_state = 11}, [309] = {.lex_state = 2181, .external_lex_state = 12}, [310] = {.lex_state = 2181, .external_lex_state = 13}, @@ -27260,12 +27262,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [316] = {.lex_state = 2181, .external_lex_state = 5}, [317] = {.lex_state = 2181, .external_lex_state = 5}, [318] = {.lex_state = 2181, .external_lex_state = 6}, - [319] = {.lex_state = 2181, .external_lex_state = 4}, + [319] = {.lex_state = 2181, .external_lex_state = 7}, [320] = {.lex_state = 2181, .external_lex_state = 5}, - [321] = {.lex_state = 2181, .external_lex_state = 7}, - [322] = {.lex_state = 2181, .external_lex_state = 8}, - [323] = {.lex_state = 2181, .external_lex_state = 9}, - [324] = {.lex_state = 2181, .external_lex_state = 10}, + [321] = {.lex_state = 2181, .external_lex_state = 8}, + [322] = {.lex_state = 2181, .external_lex_state = 9}, + [323] = {.lex_state = 2181, .external_lex_state = 10}, + [324] = {.lex_state = 2181, .external_lex_state = 4}, [325] = {.lex_state = 2181, .external_lex_state = 11}, [326] = {.lex_state = 2181, .external_lex_state = 5}, [327] = {.lex_state = 4, .external_lex_state = 5}, @@ -27273,11 +27275,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [329] = {.lex_state = 4, .external_lex_state = 5}, [330] = {.lex_state = 4, .external_lex_state = 5}, [331] = {.lex_state = 2181, .external_lex_state = 6}, - [332] = {.lex_state = 2181, .external_lex_state = 4}, - [333] = {.lex_state = 2181, .external_lex_state = 7}, - [334] = {.lex_state = 2181, .external_lex_state = 8}, - [335] = {.lex_state = 2181, .external_lex_state = 9}, - [336] = {.lex_state = 2181, .external_lex_state = 10}, + [332] = {.lex_state = 2181, .external_lex_state = 7}, + [333] = {.lex_state = 2181, .external_lex_state = 8}, + [334] = {.lex_state = 2181, .external_lex_state = 9}, + [335] = {.lex_state = 2181, .external_lex_state = 10}, + [336] = {.lex_state = 2181, .external_lex_state = 4}, [337] = {.lex_state = 2181, .external_lex_state = 11}, [338] = {.lex_state = 2181, .external_lex_state = 12}, [339] = {.lex_state = 2181, .external_lex_state = 13}, @@ -27289,12 +27291,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [345] = {.lex_state = 2181, .external_lex_state = 5}, [346] = {.lex_state = 2181, .external_lex_state = 5}, [347] = {.lex_state = 2181, .external_lex_state = 6}, - [348] = {.lex_state = 2181, .external_lex_state = 4}, + [348] = {.lex_state = 2181, .external_lex_state = 7}, [349] = {.lex_state = 2181, .external_lex_state = 5}, - [350] = {.lex_state = 2181, .external_lex_state = 7}, - [351] = {.lex_state = 2181, .external_lex_state = 8}, - [352] = {.lex_state = 2181, .external_lex_state = 9}, - [353] = {.lex_state = 2181, .external_lex_state = 10}, + [350] = {.lex_state = 2181, .external_lex_state = 8}, + [351] = {.lex_state = 2181, .external_lex_state = 9}, + [352] = {.lex_state = 2181, .external_lex_state = 10}, + [353] = {.lex_state = 2181, .external_lex_state = 4}, [354] = {.lex_state = 2181, .external_lex_state = 11}, [355] = {.lex_state = 2181, .external_lex_state = 5}, [356] = {.lex_state = 4, .external_lex_state = 5}, @@ -27302,11 +27304,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [358] = {.lex_state = 4, .external_lex_state = 5}, [359] = {.lex_state = 4, .external_lex_state = 5}, [360] = {.lex_state = 2181, .external_lex_state = 6}, - [361] = {.lex_state = 2181, .external_lex_state = 4}, - [362] = {.lex_state = 2181, .external_lex_state = 7}, - [363] = {.lex_state = 2181, .external_lex_state = 8}, - [364] = {.lex_state = 2181, .external_lex_state = 9}, - [365] = {.lex_state = 2181, .external_lex_state = 10}, + [361] = {.lex_state = 2181, .external_lex_state = 7}, + [362] = {.lex_state = 2181, .external_lex_state = 8}, + [363] = {.lex_state = 2181, .external_lex_state = 9}, + [364] = {.lex_state = 2181, .external_lex_state = 10}, + [365] = {.lex_state = 2181, .external_lex_state = 4}, [366] = {.lex_state = 2181, .external_lex_state = 11}, [367] = {.lex_state = 2181, .external_lex_state = 12}, [368] = {.lex_state = 2181, .external_lex_state = 13}, @@ -27318,7 +27320,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [374] = {.lex_state = 2181, .external_lex_state = 5}, [375] = {.lex_state = 2181, .external_lex_state = 5}, [376] = {.lex_state = 2181, .external_lex_state = 6}, - [377] = {.lex_state = 2181, .external_lex_state = 4}, + [377] = {.lex_state = 2181, .external_lex_state = 7}, [378] = {.lex_state = 2181, .external_lex_state = 5}, [379] = {.lex_state = 2181, .external_lex_state = 3}, [380] = {.lex_state = 2181, .external_lex_state = 3}, @@ -27394,25 +27396,25 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [450] = {.lex_state = 2181, .external_lex_state = 5}, [451] = {.lex_state = 2181, .external_lex_state = 5}, [452] = {.lex_state = 2181, .external_lex_state = 5}, - [453] = {.lex_state = 2181, .external_lex_state = 6}, - [454] = {.lex_state = 2181, .external_lex_state = 5}, - [455] = {.lex_state = 2181, .external_lex_state = 4}, + [453] = {.lex_state = 2181, .external_lex_state = 5}, + [454] = {.lex_state = 2181, .external_lex_state = 6}, + [455] = {.lex_state = 4, .external_lex_state = 5}, [456] = {.lex_state = 2181, .external_lex_state = 13}, - [457] = {.lex_state = 2181, .external_lex_state = 4}, - [458] = {.lex_state = 4, .external_lex_state = 5}, - [459] = {.lex_state = 2181, .external_lex_state = 7}, - [460] = {.lex_state = 2181, .external_lex_state = 7}, + [457] = {.lex_state = 2181, .external_lex_state = 7}, + [458] = {.lex_state = 2181, .external_lex_state = 7}, + [459] = {.lex_state = 2181, .external_lex_state = 8}, + [460] = {.lex_state = 2181, .external_lex_state = 8}, [461] = {.lex_state = 4, .external_lex_state = 5}, - [462] = {.lex_state = 2181, .external_lex_state = 8}, - [463] = {.lex_state = 2181, .external_lex_state = 8}, + [462] = {.lex_state = 2181, .external_lex_state = 9}, + [463] = {.lex_state = 2181, .external_lex_state = 9}, [464] = {.lex_state = 2181, .external_lex_state = 5}, - [465] = {.lex_state = 2181, .external_lex_state = 9}, - [466] = {.lex_state = 2181, .external_lex_state = 9}, - [467] = {.lex_state = 2181, .external_lex_state = 6}, + [465] = {.lex_state = 2181, .external_lex_state = 6}, + [466] = {.lex_state = 2181, .external_lex_state = 10}, + [467] = {.lex_state = 2181, .external_lex_state = 10}, [468] = {.lex_state = 2181, .external_lex_state = 13}, - [469] = {.lex_state = 2181, .external_lex_state = 10}, - [470] = {.lex_state = 2181, .external_lex_state = 10}, - [471] = {.lex_state = 2181, .external_lex_state = 5}, + [469] = {.lex_state = 2181, .external_lex_state = 5}, + [470] = {.lex_state = 2181, .external_lex_state = 4}, + [471] = {.lex_state = 2181, .external_lex_state = 4}, [472] = {.lex_state = 2181, .external_lex_state = 11}, [473] = {.lex_state = 2181, .external_lex_state = 11}, [474] = {.lex_state = 2181, .external_lex_state = 12}, @@ -27433,8 +27435,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [489] = {.lex_state = 4, .external_lex_state = 5}, [490] = {.lex_state = 4, .external_lex_state = 5}, [491] = {.lex_state = 4, .external_lex_state = 5}, - [492] = {.lex_state = 2181, .external_lex_state = 5}, - [493] = {.lex_state = 2181, .external_lex_state = 13}, + [492] = {.lex_state = 2181, .external_lex_state = 13}, + [493] = {.lex_state = 2181, .external_lex_state = 5}, [494] = {.lex_state = 2181, .external_lex_state = 5}, [495] = {.lex_state = 2181, .external_lex_state = 5}, [496] = {.lex_state = 2181, .external_lex_state = 5}, @@ -27442,7 +27444,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [498] = {.lex_state = 2181, .external_lex_state = 5}, [499] = {.lex_state = 2181, .external_lex_state = 5}, [500] = {.lex_state = 2181, .external_lex_state = 5}, - [501] = {.lex_state = 2181, .external_lex_state = 5}, + [501] = {.lex_state = 2181, .external_lex_state = 13}, [502] = {.lex_state = 2181, .external_lex_state = 5}, [503] = {.lex_state = 2181, .external_lex_state = 5}, [504] = {.lex_state = 2181, .external_lex_state = 5}, @@ -27464,12 +27466,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [520] = {.lex_state = 2181, .external_lex_state = 6}, [521] = {.lex_state = 2181, .external_lex_state = 6}, [522] = {.lex_state = 2181, .external_lex_state = 6}, - [523] = {.lex_state = 2181, .external_lex_state = 5}, + [523] = {.lex_state = 2181, .external_lex_state = 13}, [524] = {.lex_state = 2181, .external_lex_state = 13}, [525] = {.lex_state = 2181, .external_lex_state = 6}, - [526] = {.lex_state = 2181, .external_lex_state = 13}, + [526] = {.lex_state = 2181, .external_lex_state = 5}, [527] = {.lex_state = 2181, .external_lex_state = 5}, - [528] = {.lex_state = 2181, .external_lex_state = 5}, + [528] = {.lex_state = 2181, .external_lex_state = 13}, [529] = {.lex_state = 2181, .external_lex_state = 6}, [530] = {.lex_state = 2181, .external_lex_state = 6}, [531] = {.lex_state = 2181, .external_lex_state = 6}, @@ -27486,140 +27488,140 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [542] = {.lex_state = 2181, .external_lex_state = 6}, [543] = {.lex_state = 2181, .external_lex_state = 6}, [544] = {.lex_state = 2181, .external_lex_state = 6}, - [545] = {.lex_state = 2181, .external_lex_state = 4}, - [546] = {.lex_state = 2181, .external_lex_state = 4}, + [545] = {.lex_state = 2181, .external_lex_state = 7}, + [546] = {.lex_state = 2181, .external_lex_state = 7}, [547] = {.lex_state = 2181, .external_lex_state = 13}, - [548] = {.lex_state = 2181, .external_lex_state = 4}, - [549] = {.lex_state = 2181, .external_lex_state = 4}, - [550] = {.lex_state = 2181, .external_lex_state = 4}, - [551] = {.lex_state = 2181, .external_lex_state = 4}, - [552] = {.lex_state = 2181, .external_lex_state = 4}, - [553] = {.lex_state = 2181, .external_lex_state = 4}, + [548] = {.lex_state = 2181, .external_lex_state = 7}, + [549] = {.lex_state = 2181, .external_lex_state = 7}, + [550] = {.lex_state = 2181, .external_lex_state = 7}, + [551] = {.lex_state = 2181, .external_lex_state = 7}, + [552] = {.lex_state = 2181, .external_lex_state = 7}, + [553] = {.lex_state = 2181, .external_lex_state = 7}, [554] = {.lex_state = 2181, .external_lex_state = 13}, - [555] = {.lex_state = 2181, .external_lex_state = 4}, - [556] = {.lex_state = 2181, .external_lex_state = 13}, - [557] = {.lex_state = 2181, .external_lex_state = 4}, - [558] = {.lex_state = 2181, .external_lex_state = 4}, - [559] = {.lex_state = 2181, .external_lex_state = 4}, - [560] = {.lex_state = 2181, .external_lex_state = 4}, - [561] = {.lex_state = 2181, .external_lex_state = 4}, - [562] = {.lex_state = 2181, .external_lex_state = 4}, - [563] = {.lex_state = 2181, .external_lex_state = 4}, - [564] = {.lex_state = 2181, .external_lex_state = 4}, - [565] = {.lex_state = 2181, .external_lex_state = 4}, - [566] = {.lex_state = 2181, .external_lex_state = 4}, - [567] = {.lex_state = 2181, .external_lex_state = 4}, - [568] = {.lex_state = 2181, .external_lex_state = 4}, - [569] = {.lex_state = 2181, .external_lex_state = 4}, - [570] = {.lex_state = 2181, .external_lex_state = 4}, - [571] = {.lex_state = 2181, .external_lex_state = 4}, - [572] = {.lex_state = 2181, .external_lex_state = 4}, - [573] = {.lex_state = 2181, .external_lex_state = 7}, - [574] = {.lex_state = 2181, .external_lex_state = 7}, - [575] = {.lex_state = 2181, .external_lex_state = 13}, - [576] = {.lex_state = 2181, .external_lex_state = 7}, - [577] = {.lex_state = 2181, .external_lex_state = 7}, - [578] = {.lex_state = 2181, .external_lex_state = 7}, - [579] = {.lex_state = 2181, .external_lex_state = 7}, - [580] = {.lex_state = 2181, .external_lex_state = 7}, - [581] = {.lex_state = 2181, .external_lex_state = 7}, - [582] = {.lex_state = 2181, .external_lex_state = 13}, - [583] = {.lex_state = 2181, .external_lex_state = 7}, - [584] = {.lex_state = 2181, .external_lex_state = 7}, - [585] = {.lex_state = 2181, .external_lex_state = 7}, - [586] = {.lex_state = 2181, .external_lex_state = 7}, - [587] = {.lex_state = 2181, .external_lex_state = 7}, - [588] = {.lex_state = 2181, .external_lex_state = 7}, - [589] = {.lex_state = 2181, .external_lex_state = 13}, - [590] = {.lex_state = 2181, .external_lex_state = 7}, - [591] = {.lex_state = 2181, .external_lex_state = 7}, - [592] = {.lex_state = 2181, .external_lex_state = 7}, - [593] = {.lex_state = 2181, .external_lex_state = 7}, - [594] = {.lex_state = 2181, .external_lex_state = 7}, - [595] = {.lex_state = 2181, .external_lex_state = 7}, - [596] = {.lex_state = 2181, .external_lex_state = 7}, - [597] = {.lex_state = 2181, .external_lex_state = 7}, - [598] = {.lex_state = 2181, .external_lex_state = 7}, - [599] = {.lex_state = 2181, .external_lex_state = 7}, - [600] = {.lex_state = 2181, .external_lex_state = 7}, - [601] = {.lex_state = 2181, .external_lex_state = 8}, - [602] = {.lex_state = 2181, .external_lex_state = 8}, - [603] = {.lex_state = 2181, .external_lex_state = 13}, - [604] = {.lex_state = 2181, .external_lex_state = 8}, - [605] = {.lex_state = 2181, .external_lex_state = 8}, - [606] = {.lex_state = 2181, .external_lex_state = 8}, - [607] = {.lex_state = 2181, .external_lex_state = 8}, - [608] = {.lex_state = 2181, .external_lex_state = 8}, - [609] = {.lex_state = 2181, .external_lex_state = 8}, - [610] = {.lex_state = 2181, .external_lex_state = 13}, - [611] = {.lex_state = 2181, .external_lex_state = 8}, - [612] = {.lex_state = 2181, .external_lex_state = 8}, - [613] = {.lex_state = 2181, .external_lex_state = 8}, - [614] = {.lex_state = 2181, .external_lex_state = 8}, - [615] = {.lex_state = 2181, .external_lex_state = 8}, - [616] = {.lex_state = 2181, .external_lex_state = 8}, - [617] = {.lex_state = 2181, .external_lex_state = 8}, - [618] = {.lex_state = 2181, .external_lex_state = 8}, - [619] = {.lex_state = 2181, .external_lex_state = 8}, - [620] = {.lex_state = 2181, .external_lex_state = 8}, - [621] = {.lex_state = 2181, .external_lex_state = 8}, - [622] = {.lex_state = 2181, .external_lex_state = 8}, - [623] = {.lex_state = 2181, .external_lex_state = 8}, - [624] = {.lex_state = 2181, .external_lex_state = 8}, - [625] = {.lex_state = 2181, .external_lex_state = 8}, - [626] = {.lex_state = 2181, .external_lex_state = 8}, - [627] = {.lex_state = 2181, .external_lex_state = 8}, - [628] = {.lex_state = 2181, .external_lex_state = 9}, - [629] = {.lex_state = 2181, .external_lex_state = 9}, - [630] = {.lex_state = 2181, .external_lex_state = 9}, - [631] = {.lex_state = 2181, .external_lex_state = 9}, - [632] = {.lex_state = 2181, .external_lex_state = 9}, - [633] = {.lex_state = 2181, .external_lex_state = 9}, - [634] = {.lex_state = 2181, .external_lex_state = 9}, - [635] = {.lex_state = 2181, .external_lex_state = 9}, - [636] = {.lex_state = 2181, .external_lex_state = 9}, - [637] = {.lex_state = 2181, .external_lex_state = 9}, - [638] = {.lex_state = 2181, .external_lex_state = 9}, - [639] = {.lex_state = 2181, .external_lex_state = 9}, - [640] = {.lex_state = 2181, .external_lex_state = 9}, - [641] = {.lex_state = 2181, .external_lex_state = 9}, - [642] = {.lex_state = 2181, .external_lex_state = 9}, - [643] = {.lex_state = 2181, .external_lex_state = 9}, - [644] = {.lex_state = 2181, .external_lex_state = 9}, - [645] = {.lex_state = 2181, .external_lex_state = 9}, - [646] = {.lex_state = 2181, .external_lex_state = 9}, - [647] = {.lex_state = 2181, .external_lex_state = 9}, - [648] = {.lex_state = 2181, .external_lex_state = 9}, - [649] = {.lex_state = 2181, .external_lex_state = 9}, - [650] = {.lex_state = 2181, .external_lex_state = 9}, - [651] = {.lex_state = 2181, .external_lex_state = 9}, - [652] = {.lex_state = 2181, .external_lex_state = 9}, - [653] = {.lex_state = 2181, .external_lex_state = 10}, - [654] = {.lex_state = 2181, .external_lex_state = 10}, - [655] = {.lex_state = 2181, .external_lex_state = 10}, - [656] = {.lex_state = 2181, .external_lex_state = 10}, - [657] = {.lex_state = 2181, .external_lex_state = 10}, - [658] = {.lex_state = 2181, .external_lex_state = 10}, - [659] = {.lex_state = 2181, .external_lex_state = 10}, - [660] = {.lex_state = 2181, .external_lex_state = 10}, - [661] = {.lex_state = 2181, .external_lex_state = 10}, + [555] = {.lex_state = 2181, .external_lex_state = 7}, + [556] = {.lex_state = 2181, .external_lex_state = 7}, + [557] = {.lex_state = 2181, .external_lex_state = 7}, + [558] = {.lex_state = 2181, .external_lex_state = 7}, + [559] = {.lex_state = 2181, .external_lex_state = 7}, + [560] = {.lex_state = 2181, .external_lex_state = 7}, + [561] = {.lex_state = 2181, .external_lex_state = 7}, + [562] = {.lex_state = 2181, .external_lex_state = 7}, + [563] = {.lex_state = 2181, .external_lex_state = 7}, + [564] = {.lex_state = 2181, .external_lex_state = 7}, + [565] = {.lex_state = 2181, .external_lex_state = 7}, + [566] = {.lex_state = 2181, .external_lex_state = 7}, + [567] = {.lex_state = 2181, .external_lex_state = 7}, + [568] = {.lex_state = 2181, .external_lex_state = 7}, + [569] = {.lex_state = 2181, .external_lex_state = 7}, + [570] = {.lex_state = 2181, .external_lex_state = 7}, + [571] = {.lex_state = 2181, .external_lex_state = 7}, + [572] = {.lex_state = 2181, .external_lex_state = 8}, + [573] = {.lex_state = 2181, .external_lex_state = 8}, + [574] = {.lex_state = 2181, .external_lex_state = 13}, + [575] = {.lex_state = 2181, .external_lex_state = 8}, + [576] = {.lex_state = 2181, .external_lex_state = 8}, + [577] = {.lex_state = 2181, .external_lex_state = 8}, + [578] = {.lex_state = 2181, .external_lex_state = 8}, + [579] = {.lex_state = 2181, .external_lex_state = 8}, + [580] = {.lex_state = 2181, .external_lex_state = 8}, + [581] = {.lex_state = 2181, .external_lex_state = 13}, + [582] = {.lex_state = 2181, .external_lex_state = 8}, + [583] = {.lex_state = 2181, .external_lex_state = 8}, + [584] = {.lex_state = 2181, .external_lex_state = 8}, + [585] = {.lex_state = 2181, .external_lex_state = 8}, + [586] = {.lex_state = 2181, .external_lex_state = 8}, + [587] = {.lex_state = 2181, .external_lex_state = 8}, + [588] = {.lex_state = 2181, .external_lex_state = 13}, + [589] = {.lex_state = 2181, .external_lex_state = 8}, + [590] = {.lex_state = 2181, .external_lex_state = 8}, + [591] = {.lex_state = 2181, .external_lex_state = 8}, + [592] = {.lex_state = 2181, .external_lex_state = 8}, + [593] = {.lex_state = 2181, .external_lex_state = 8}, + [594] = {.lex_state = 2181, .external_lex_state = 8}, + [595] = {.lex_state = 2181, .external_lex_state = 8}, + [596] = {.lex_state = 2181, .external_lex_state = 8}, + [597] = {.lex_state = 2181, .external_lex_state = 8}, + [598] = {.lex_state = 2181, .external_lex_state = 8}, + [599] = {.lex_state = 2181, .external_lex_state = 8}, + [600] = {.lex_state = 2181, .external_lex_state = 9}, + [601] = {.lex_state = 2181, .external_lex_state = 9}, + [602] = {.lex_state = 2181, .external_lex_state = 13}, + [603] = {.lex_state = 2181, .external_lex_state = 9}, + [604] = {.lex_state = 2181, .external_lex_state = 9}, + [605] = {.lex_state = 2181, .external_lex_state = 9}, + [606] = {.lex_state = 2181, .external_lex_state = 9}, + [607] = {.lex_state = 2181, .external_lex_state = 9}, + [608] = {.lex_state = 2181, .external_lex_state = 9}, + [609] = {.lex_state = 2181, .external_lex_state = 13}, + [610] = {.lex_state = 2181, .external_lex_state = 9}, + [611] = {.lex_state = 2181, .external_lex_state = 9}, + [612] = {.lex_state = 2181, .external_lex_state = 9}, + [613] = {.lex_state = 2181, .external_lex_state = 9}, + [614] = {.lex_state = 2181, .external_lex_state = 9}, + [615] = {.lex_state = 2181, .external_lex_state = 9}, + [616] = {.lex_state = 2181, .external_lex_state = 9}, + [617] = {.lex_state = 2181, .external_lex_state = 9}, + [618] = {.lex_state = 2181, .external_lex_state = 9}, + [619] = {.lex_state = 2181, .external_lex_state = 9}, + [620] = {.lex_state = 2181, .external_lex_state = 9}, + [621] = {.lex_state = 2181, .external_lex_state = 9}, + [622] = {.lex_state = 2181, .external_lex_state = 9}, + [623] = {.lex_state = 2181, .external_lex_state = 9}, + [624] = {.lex_state = 2181, .external_lex_state = 9}, + [625] = {.lex_state = 2181, .external_lex_state = 9}, + [626] = {.lex_state = 2181, .external_lex_state = 9}, + [627] = {.lex_state = 2181, .external_lex_state = 10}, + [628] = {.lex_state = 2181, .external_lex_state = 10}, + [629] = {.lex_state = 2181, .external_lex_state = 10}, + [630] = {.lex_state = 2181, .external_lex_state = 10}, + [631] = {.lex_state = 2181, .external_lex_state = 10}, + [632] = {.lex_state = 2181, .external_lex_state = 10}, + [633] = {.lex_state = 2181, .external_lex_state = 10}, + [634] = {.lex_state = 2181, .external_lex_state = 10}, + [635] = {.lex_state = 2181, .external_lex_state = 10}, + [636] = {.lex_state = 2181, .external_lex_state = 10}, + [637] = {.lex_state = 2181, .external_lex_state = 10}, + [638] = {.lex_state = 2181, .external_lex_state = 10}, + [639] = {.lex_state = 2181, .external_lex_state = 10}, + [640] = {.lex_state = 2181, .external_lex_state = 10}, + [641] = {.lex_state = 2181, .external_lex_state = 10}, + [642] = {.lex_state = 2181, .external_lex_state = 10}, + [643] = {.lex_state = 2181, .external_lex_state = 10}, + [644] = {.lex_state = 2181, .external_lex_state = 10}, + [645] = {.lex_state = 2181, .external_lex_state = 10}, + [646] = {.lex_state = 2181, .external_lex_state = 10}, + [647] = {.lex_state = 2181, .external_lex_state = 10}, + [648] = {.lex_state = 2181, .external_lex_state = 10}, + [649] = {.lex_state = 2181, .external_lex_state = 10}, + [650] = {.lex_state = 2181, .external_lex_state = 10}, + [651] = {.lex_state = 2181, .external_lex_state = 10}, + [652] = {.lex_state = 2181, .external_lex_state = 4}, + [653] = {.lex_state = 2181, .external_lex_state = 4}, + [654] = {.lex_state = 2181, .external_lex_state = 4}, + [655] = {.lex_state = 2181, .external_lex_state = 4}, + [656] = {.lex_state = 2181, .external_lex_state = 4}, + [657] = {.lex_state = 2181, .external_lex_state = 4}, + [658] = {.lex_state = 2181, .external_lex_state = 4}, + [659] = {.lex_state = 2181, .external_lex_state = 4}, + [660] = {.lex_state = 2181, .external_lex_state = 5}, + [661] = {.lex_state = 2181, .external_lex_state = 4}, [662] = {.lex_state = 2181, .external_lex_state = 5}, - [663] = {.lex_state = 2181, .external_lex_state = 10}, - [664] = {.lex_state = 2181, .external_lex_state = 10}, - [665] = {.lex_state = 2181, .external_lex_state = 10}, - [666] = {.lex_state = 2181, .external_lex_state = 10}, - [667] = {.lex_state = 2181, .external_lex_state = 10}, - [668] = {.lex_state = 2181, .external_lex_state = 10}, - [669] = {.lex_state = 2181, .external_lex_state = 10}, - [670] = {.lex_state = 2181, .external_lex_state = 10}, - [671] = {.lex_state = 2181, .external_lex_state = 10}, - [672] = {.lex_state = 2181, .external_lex_state = 10}, - [673] = {.lex_state = 2181, .external_lex_state = 10}, - [674] = {.lex_state = 2181, .external_lex_state = 10}, - [675] = {.lex_state = 2181, .external_lex_state = 10}, - [676] = {.lex_state = 2181, .external_lex_state = 10}, - [677] = {.lex_state = 2181, .external_lex_state = 10}, - [678] = {.lex_state = 2181, .external_lex_state = 10}, + [663] = {.lex_state = 2181, .external_lex_state = 4}, + [664] = {.lex_state = 2181, .external_lex_state = 4}, + [665] = {.lex_state = 2181, .external_lex_state = 4}, + [666] = {.lex_state = 2181, .external_lex_state = 4}, + [667] = {.lex_state = 2181, .external_lex_state = 4}, + [668] = {.lex_state = 2181, .external_lex_state = 4}, + [669] = {.lex_state = 2181, .external_lex_state = 4}, + [670] = {.lex_state = 2181, .external_lex_state = 4}, + [671] = {.lex_state = 2181, .external_lex_state = 4}, + [672] = {.lex_state = 2181, .external_lex_state = 4}, + [673] = {.lex_state = 2181, .external_lex_state = 4}, + [674] = {.lex_state = 2181, .external_lex_state = 4}, + [675] = {.lex_state = 2181, .external_lex_state = 4}, + [676] = {.lex_state = 2181, .external_lex_state = 4}, + [677] = {.lex_state = 2181, .external_lex_state = 4}, + [678] = {.lex_state = 2181, .external_lex_state = 4}, [679] = {.lex_state = 2181, .external_lex_state = 11}, [680] = {.lex_state = 2181, .external_lex_state = 11}, [681] = {.lex_state = 2181, .external_lex_state = 5}, @@ -27716,236 +27718,236 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [772] = {.lex_state = 2181, .external_lex_state = 13}, [773] = {.lex_state = 4, .external_lex_state = 5}, [774] = {.lex_state = 4, .external_lex_state = 5}, - [775] = {.lex_state = 2181, .external_lex_state = 13}, - [776] = {.lex_state = 2181, .external_lex_state = 14}, + [775] = {.lex_state = 2181, .external_lex_state = 5}, + [776] = {.lex_state = 2181, .external_lex_state = 3}, [777] = {.lex_state = 2181, .external_lex_state = 3}, - [778] = {.lex_state = 2181, .external_lex_state = 3}, - [779] = {.lex_state = 2181, .external_lex_state = 15}, - [780] = {.lex_state = 2181, .external_lex_state = 16}, - [781] = {.lex_state = 2181, .external_lex_state = 17}, - [782] = {.lex_state = 2181, .external_lex_state = 18}, - [783] = {.lex_state = 2181, .external_lex_state = 19}, - [784] = {.lex_state = 2181, .external_lex_state = 20}, - [785] = {.lex_state = 2181, .external_lex_state = 21}, - [786] = {.lex_state = 2181, .external_lex_state = 22}, - [787] = {.lex_state = 2181, .external_lex_state = 23}, - [788] = {.lex_state = 2181, .external_lex_state = 24}, - [789] = {.lex_state = 2181, .external_lex_state = 25}, - [790] = {.lex_state = 2181, .external_lex_state = 26}, - [791] = {.lex_state = 2181, .external_lex_state = 2}, + [778] = {.lex_state = 2181, .external_lex_state = 2}, + [779] = {.lex_state = 2181, .external_lex_state = 14}, + [780] = {.lex_state = 2181, .external_lex_state = 15}, + [781] = {.lex_state = 2181, .external_lex_state = 16}, + [782] = {.lex_state = 2181, .external_lex_state = 17}, + [783] = {.lex_state = 2181, .external_lex_state = 18}, + [784] = {.lex_state = 2181, .external_lex_state = 19}, + [785] = {.lex_state = 2181, .external_lex_state = 20}, + [786] = {.lex_state = 2181, .external_lex_state = 21}, + [787] = {.lex_state = 2181, .external_lex_state = 22}, + [788] = {.lex_state = 2181, .external_lex_state = 23}, + [789] = {.lex_state = 2181, .external_lex_state = 24}, + [790] = {.lex_state = 2181, .external_lex_state = 25}, + [791] = {.lex_state = 2181, .external_lex_state = 26}, [792] = {.lex_state = 2181, .external_lex_state = 27}, - [793] = {.lex_state = 2181, .external_lex_state = 28}, - [794] = {.lex_state = 2181, .external_lex_state = 2}, - [795] = {.lex_state = 4, .external_lex_state = 3}, - [796] = {.lex_state = 4, .external_lex_state = 2}, + [793] = {.lex_state = 2181, .external_lex_state = 2}, + [794] = {.lex_state = 4, .external_lex_state = 3}, + [795] = {.lex_state = 4, .external_lex_state = 2}, + [796] = {.lex_state = 2181, .external_lex_state = 28}, [797] = {.lex_state = 2181, .external_lex_state = 29}, [798] = {.lex_state = 2181, .external_lex_state = 30}, [799] = {.lex_state = 2181, .external_lex_state = 31}, - [800] = {.lex_state = 2181, .external_lex_state = 18}, - [801] = {.lex_state = 2181, .external_lex_state = 30}, - [802] = {.lex_state = 2181, .external_lex_state = 22}, - [803] = {.lex_state = 2181, .external_lex_state = 19}, - [804] = {.lex_state = 2181, .external_lex_state = 31}, - [805] = {.lex_state = 2181, .external_lex_state = 19}, - [806] = {.lex_state = 2181, .external_lex_state = 21}, - [807] = {.lex_state = 2181, .external_lex_state = 26}, - [808] = {.lex_state = 2181, .external_lex_state = 21}, + [800] = {.lex_state = 2181, .external_lex_state = 3}, + [801] = {.lex_state = 2181, .external_lex_state = 29}, + [802] = {.lex_state = 2181, .external_lex_state = 28}, + [803] = {.lex_state = 2181, .external_lex_state = 25}, + [804] = {.lex_state = 2181, .external_lex_state = 30}, + [805] = {.lex_state = 2181, .external_lex_state = 17}, + [806] = {.lex_state = 2181, .external_lex_state = 17}, + [807] = {.lex_state = 2181, .external_lex_state = 28}, + [808] = {.lex_state = 2181, .external_lex_state = 24}, [809] = {.lex_state = 2181, .external_lex_state = 2}, - [810] = {.lex_state = 2181, .external_lex_state = 26}, - [811] = {.lex_state = 2181, .external_lex_state = 29}, - [812] = {.lex_state = 2181, .external_lex_state = 17}, - [813] = {.lex_state = 2181, .external_lex_state = 31}, - [814] = {.lex_state = 2181, .external_lex_state = 23}, - [815] = {.lex_state = 2181, .external_lex_state = 23}, - [816] = {.lex_state = 4, .external_lex_state = 2}, + [810] = {.lex_state = 2181, .external_lex_state = 2}, + [811] = {.lex_state = 2181, .external_lex_state = 24}, + [812] = {.lex_state = 2181, .external_lex_state = 14}, + [813] = {.lex_state = 2181, .external_lex_state = 16}, + [814] = {.lex_state = 2181, .external_lex_state = 25}, + [815] = {.lex_state = 2181, .external_lex_state = 28}, + [816] = {.lex_state = 2181, .external_lex_state = 23}, [817] = {.lex_state = 2181, .external_lex_state = 3}, - [818] = {.lex_state = 2181, .external_lex_state = 24}, - [819] = {.lex_state = 2181, .external_lex_state = 17}, - [820] = {.lex_state = 2181, .external_lex_state = 17}, - [821] = {.lex_state = 2181, .external_lex_state = 24}, - [822] = {.lex_state = 2181, .external_lex_state = 15}, - [823] = {.lex_state = 2181, .external_lex_state = 17}, - [824] = {.lex_state = 2181, .external_lex_state = 20}, - [825] = {.lex_state = 2181, .external_lex_state = 18}, - [826] = {.lex_state = 2181, .external_lex_state = 14}, - [827] = {.lex_state = 2181, .external_lex_state = 16}, - [828] = {.lex_state = 2181, .external_lex_state = 15}, - [829] = {.lex_state = 2181, .external_lex_state = 23}, - [830] = {.lex_state = 2181, .external_lex_state = 16}, - [831] = {.lex_state = 2181, .external_lex_state = 3}, + [818] = {.lex_state = 2181, .external_lex_state = 21}, + [819] = {.lex_state = 2181, .external_lex_state = 14}, + [820] = {.lex_state = 2181, .external_lex_state = 14}, + [821] = {.lex_state = 2181, .external_lex_state = 21}, + [822] = {.lex_state = 2181, .external_lex_state = 30}, + [823] = {.lex_state = 2181, .external_lex_state = 14}, + [824] = {.lex_state = 2181, .external_lex_state = 18}, + [825] = {.lex_state = 2181, .external_lex_state = 15}, + [826] = {.lex_state = 2181, .external_lex_state = 31}, + [827] = {.lex_state = 2181, .external_lex_state = 23}, + [828] = {.lex_state = 2181, .external_lex_state = 2}, + [829] = {.lex_state = 2181, .external_lex_state = 15}, + [830] = {.lex_state = 2181, .external_lex_state = 19}, + [831] = {.lex_state = 2181, .external_lex_state = 23}, [832] = {.lex_state = 2181, .external_lex_state = 19}, - [833] = {.lex_state = 4, .external_lex_state = 2}, - [834] = {.lex_state = 2181, .external_lex_state = 3}, - [835] = {.lex_state = 2181, .external_lex_state = 27}, - [836] = {.lex_state = 2181, .external_lex_state = 24}, + [833] = {.lex_state = 2181, .external_lex_state = 17}, + [834] = {.lex_state = 2181, .external_lex_state = 20}, + [835] = {.lex_state = 2181, .external_lex_state = 3}, + [836] = {.lex_state = 2181, .external_lex_state = 21}, [837] = {.lex_state = 2181, .external_lex_state = 3}, - [838] = {.lex_state = 2181, .external_lex_state = 27}, + [838] = {.lex_state = 2181, .external_lex_state = 26}, [839] = {.lex_state = 2181, .external_lex_state = 3}, - [840] = {.lex_state = 2181, .external_lex_state = 2}, - [841] = {.lex_state = 2181, .external_lex_state = 21}, - [842] = {.lex_state = 2181, .external_lex_state = 27}, - [843] = {.lex_state = 2181, .external_lex_state = 21}, - [844] = {.lex_state = 4, .external_lex_state = 3}, - [845] = {.lex_state = 4, .external_lex_state = 3}, + [840] = {.lex_state = 2181, .external_lex_state = 3}, + [841] = {.lex_state = 4, .external_lex_state = 2}, + [842] = {.lex_state = 2181, .external_lex_state = 26}, + [843] = {.lex_state = 2181, .external_lex_state = 26}, + [844] = {.lex_state = 2181, .external_lex_state = 20}, + [845] = {.lex_state = 2181, .external_lex_state = 20}, [846] = {.lex_state = 2181, .external_lex_state = 3}, - [847] = {.lex_state = 2181, .external_lex_state = 27}, - [848] = {.lex_state = 2181, .external_lex_state = 2}, + [847] = {.lex_state = 2181, .external_lex_state = 26}, + [848] = {.lex_state = 2181, .external_lex_state = 16}, [849] = {.lex_state = 2181, .external_lex_state = 3}, - [850] = {.lex_state = 2181, .external_lex_state = 19}, - [851] = {.lex_state = 2181, .external_lex_state = 24}, + [850] = {.lex_state = 2181, .external_lex_state = 17}, + [851] = {.lex_state = 2181, .external_lex_state = 21}, [852] = {.lex_state = 2181, .external_lex_state = 3}, - [853] = {.lex_state = 2181, .external_lex_state = 30}, - [854] = {.lex_state = 2181, .external_lex_state = 15}, - [855] = {.lex_state = 2181, .external_lex_state = 24}, - [856] = {.lex_state = 2181, .external_lex_state = 19}, - [857] = {.lex_state = 2181, .external_lex_state = 15}, - [858] = {.lex_state = 2181, .external_lex_state = 24}, - [859] = {.lex_state = 2181, .external_lex_state = 21}, - [860] = {.lex_state = 2181, .external_lex_state = 19}, - [861] = {.lex_state = 2181, .external_lex_state = 23}, - [862] = {.lex_state = 4, .external_lex_state = 3}, - [863] = {.lex_state = 2181, .external_lex_state = 2}, - [864] = {.lex_state = 2181, .external_lex_state = 3}, - [865] = {.lex_state = 2181, .external_lex_state = 3}, - [866] = {.lex_state = 2181, .external_lex_state = 31}, - [867] = {.lex_state = 2181, .external_lex_state = 21}, + [853] = {.lex_state = 2181, .external_lex_state = 29}, + [854] = {.lex_state = 2181, .external_lex_state = 16}, + [855] = {.lex_state = 2181, .external_lex_state = 21}, + [856] = {.lex_state = 2181, .external_lex_state = 17}, + [857] = {.lex_state = 4, .external_lex_state = 2}, + [858] = {.lex_state = 2181, .external_lex_state = 21}, + [859] = {.lex_state = 2181, .external_lex_state = 2}, + [860] = {.lex_state = 2181, .external_lex_state = 17}, + [861] = {.lex_state = 2181, .external_lex_state = 16}, + [862] = {.lex_state = 2181, .external_lex_state = 23}, + [863] = {.lex_state = 2181, .external_lex_state = 20}, + [864] = {.lex_state = 4, .external_lex_state = 3}, + [865] = {.lex_state = 2181, .external_lex_state = 16}, + [866] = {.lex_state = 2181, .external_lex_state = 3}, + [867] = {.lex_state = 2181, .external_lex_state = 3}, [868] = {.lex_state = 4, .external_lex_state = 3}, [869] = {.lex_state = 4, .external_lex_state = 3}, - [870] = {.lex_state = 2181, .external_lex_state = 31}, - [871] = {.lex_state = 2181, .external_lex_state = 3}, - [872] = {.lex_state = 2181, .external_lex_state = 29}, - [873] = {.lex_state = 2181, .external_lex_state = 28}, - [874] = {.lex_state = 2181, .external_lex_state = 17}, - [875] = {.lex_state = 2181, .external_lex_state = 28}, - [876] = {.lex_state = 2181, .external_lex_state = 29}, - [877] = {.lex_state = 2181, .external_lex_state = 17}, - [878] = {.lex_state = 2181, .external_lex_state = 14}, - [879] = {.lex_state = 2181, .external_lex_state = 29}, - [880] = {.lex_state = 2181, .external_lex_state = 25}, - [881] = {.lex_state = 2181, .external_lex_state = 27}, - [882] = {.lex_state = 2181, .external_lex_state = 23}, - [883] = {.lex_state = 2181, .external_lex_state = 27}, + [870] = {.lex_state = 2181, .external_lex_state = 30}, + [871] = {.lex_state = 4, .external_lex_state = 3}, + [872] = {.lex_state = 2181, .external_lex_state = 28}, + [873] = {.lex_state = 2181, .external_lex_state = 27}, + [874] = {.lex_state = 2181, .external_lex_state = 30}, + [875] = {.lex_state = 2181, .external_lex_state = 27}, + [876] = {.lex_state = 2181, .external_lex_state = 28}, + [877] = {.lex_state = 2181, .external_lex_state = 14}, + [878] = {.lex_state = 2181, .external_lex_state = 31}, + [879] = {.lex_state = 2181, .external_lex_state = 14}, + [880] = {.lex_state = 2181, .external_lex_state = 22}, + [881] = {.lex_state = 2181, .external_lex_state = 26}, + [882] = {.lex_state = 2181, .external_lex_state = 3}, + [883] = {.lex_state = 2181, .external_lex_state = 26}, [884] = {.lex_state = 2181, .external_lex_state = 23}, - [885] = {.lex_state = 2181, .external_lex_state = 31}, - [886] = {.lex_state = 2181, .external_lex_state = 31}, - [887] = {.lex_state = 2181, .external_lex_state = 25}, - [888] = {.lex_state = 2181, .external_lex_state = 29}, - [889] = {.lex_state = 2181, .external_lex_state = 20}, - [890] = {.lex_state = 2181, .external_lex_state = 15}, + [885] = {.lex_state = 2181, .external_lex_state = 30}, + [886] = {.lex_state = 2181, .external_lex_state = 30}, + [887] = {.lex_state = 2181, .external_lex_state = 16}, + [888] = {.lex_state = 2181, .external_lex_state = 22}, + [889] = {.lex_state = 2181, .external_lex_state = 18}, + [890] = {.lex_state = 2181, .external_lex_state = 23}, [891] = {.lex_state = 4, .external_lex_state = 3}, - [892] = {.lex_state = 2181, .external_lex_state = 15}, - [893] = {.lex_state = 2181, .external_lex_state = 29}, - [894] = {.lex_state = 2181, .external_lex_state = 3}, - [895] = {.lex_state = 2181, .external_lex_state = 22}, + [892] = {.lex_state = 2181, .external_lex_state = 20}, + [893] = {.lex_state = 2181, .external_lex_state = 28}, + [894] = {.lex_state = 4, .external_lex_state = 3}, + [895] = {.lex_state = 2181, .external_lex_state = 20}, [896] = {.lex_state = 2181, .external_lex_state = 5}, - [897] = {.lex_state = 2181, .external_lex_state = 9}, - [898] = {.lex_state = 2181, .external_lex_state = 9}, - [899] = {.lex_state = 2181, .external_lex_state = 9}, - [900] = {.lex_state = 2181, .external_lex_state = 9}, - [901] = {.lex_state = 2181, .external_lex_state = 9}, - [902] = {.lex_state = 2181, .external_lex_state = 9}, - [903] = {.lex_state = 2181, .external_lex_state = 9}, - [904] = {.lex_state = 2181, .external_lex_state = 9}, - [905] = {.lex_state = 2181, .external_lex_state = 9}, - [906] = {.lex_state = 2181, .external_lex_state = 9}, - [907] = {.lex_state = 2181, .external_lex_state = 9}, - [908] = {.lex_state = 2181, .external_lex_state = 9}, - [909] = {.lex_state = 2181, .external_lex_state = 9}, - [910] = {.lex_state = 2181, .external_lex_state = 9}, - [911] = {.lex_state = 2181, .external_lex_state = 9}, - [912] = {.lex_state = 2181, .external_lex_state = 9}, - [913] = {.lex_state = 2181, .external_lex_state = 9}, - [914] = {.lex_state = 2181, .external_lex_state = 9}, - [915] = {.lex_state = 2181, .external_lex_state = 9}, - [916] = {.lex_state = 2181, .external_lex_state = 9}, - [917] = {.lex_state = 2181, .external_lex_state = 9}, - [918] = {.lex_state = 2181, .external_lex_state = 5}, - [919] = {.lex_state = 2181, .external_lex_state = 9}, - [920] = {.lex_state = 2181, .external_lex_state = 5}, - [921] = {.lex_state = 2181, .external_lex_state = 9}, - [922] = {.lex_state = 2181, .external_lex_state = 9}, - [923] = {.lex_state = 2181, .external_lex_state = 9}, - [924] = {.lex_state = 2181, .external_lex_state = 9}, - [925] = {.lex_state = 2181, .external_lex_state = 10}, - [926] = {.lex_state = 2181, .external_lex_state = 10}, - [927] = {.lex_state = 2181, .external_lex_state = 10}, - [928] = {.lex_state = 2181, .external_lex_state = 10}, - [929] = {.lex_state = 2181, .external_lex_state = 10}, - [930] = {.lex_state = 2181, .external_lex_state = 10}, - [931] = {.lex_state = 2181, .external_lex_state = 10}, - [932] = {.lex_state = 2181, .external_lex_state = 10}, - [933] = {.lex_state = 2181, .external_lex_state = 10}, - [934] = {.lex_state = 2181, .external_lex_state = 10}, + [897] = {.lex_state = 2181, .external_lex_state = 10}, + [898] = {.lex_state = 2181, .external_lex_state = 10}, + [899] = {.lex_state = 2181, .external_lex_state = 10}, + [900] = {.lex_state = 2181, .external_lex_state = 10}, + [901] = {.lex_state = 2181, .external_lex_state = 10}, + [902] = {.lex_state = 2181, .external_lex_state = 10}, + [903] = {.lex_state = 2181, .external_lex_state = 10}, + [904] = {.lex_state = 2181, .external_lex_state = 10}, + [905] = {.lex_state = 2181, .external_lex_state = 10}, + [906] = {.lex_state = 2181, .external_lex_state = 10}, + [907] = {.lex_state = 2181, .external_lex_state = 10}, + [908] = {.lex_state = 2181, .external_lex_state = 10}, + [909] = {.lex_state = 2181, .external_lex_state = 10}, + [910] = {.lex_state = 2181, .external_lex_state = 10}, + [911] = {.lex_state = 2181, .external_lex_state = 10}, + [912] = {.lex_state = 2181, .external_lex_state = 10}, + [913] = {.lex_state = 2181, .external_lex_state = 10}, + [914] = {.lex_state = 2181, .external_lex_state = 5}, + [915] = {.lex_state = 2181, .external_lex_state = 10}, + [916] = {.lex_state = 2181, .external_lex_state = 5}, + [917] = {.lex_state = 2181, .external_lex_state = 10}, + [918] = {.lex_state = 2181, .external_lex_state = 10}, + [919] = {.lex_state = 2181, .external_lex_state = 10}, + [920] = {.lex_state = 2181, .external_lex_state = 10}, + [921] = {.lex_state = 2181, .external_lex_state = 4}, + [922] = {.lex_state = 2181, .external_lex_state = 4}, + [923] = {.lex_state = 2181, .external_lex_state = 4}, + [924] = {.lex_state = 2181, .external_lex_state = 4}, + [925] = {.lex_state = 2181, .external_lex_state = 4}, + [926] = {.lex_state = 2181, .external_lex_state = 4}, + [927] = {.lex_state = 2181, .external_lex_state = 4}, + [928] = {.lex_state = 2181, .external_lex_state = 4}, + [929] = {.lex_state = 2181, .external_lex_state = 4}, + [930] = {.lex_state = 2181, .external_lex_state = 4}, + [931] = {.lex_state = 2181, .external_lex_state = 4}, + [932] = {.lex_state = 2181, .external_lex_state = 4}, + [933] = {.lex_state = 2181, .external_lex_state = 4}, + [934] = {.lex_state = 2181, .external_lex_state = 9}, [935] = {.lex_state = 2181, .external_lex_state = 10}, - [936] = {.lex_state = 2181, .external_lex_state = 10}, - [937] = {.lex_state = 2181, .external_lex_state = 10}, - [938] = {.lex_state = 2181, .external_lex_state = 8}, - [939] = {.lex_state = 2181, .external_lex_state = 9}, - [940] = {.lex_state = 2181, .external_lex_state = 10}, - [941] = {.lex_state = 2181, .external_lex_state = 10}, - [942] = {.lex_state = 2181, .external_lex_state = 10}, - [943] = {.lex_state = 2181, .external_lex_state = 10}, - [944] = {.lex_state = 2181, .external_lex_state = 10}, - [945] = {.lex_state = 2181, .external_lex_state = 10}, - [946] = {.lex_state = 2181, .external_lex_state = 10}, - [947] = {.lex_state = 2181, .external_lex_state = 10}, - [948] = {.lex_state = 2181, .external_lex_state = 10}, - [949] = {.lex_state = 2181, .external_lex_state = 10}, - [950] = {.lex_state = 2181, .external_lex_state = 10}, - [951] = {.lex_state = 2181, .external_lex_state = 10}, - [952] = {.lex_state = 2181, .external_lex_state = 10}, - [953] = {.lex_state = 2181, .external_lex_state = 10}, - [954] = {.lex_state = 2181, .external_lex_state = 10}, - [955] = {.lex_state = 2181, .external_lex_state = 10}, - [956] = {.lex_state = 2181, .external_lex_state = 10}, - [957] = {.lex_state = 2181, .external_lex_state = 10}, - [958] = {.lex_state = 2181, .external_lex_state = 10}, - [959] = {.lex_state = 2181, .external_lex_state = 10}, - [960] = {.lex_state = 2181, .external_lex_state = 5}, - [961] = {.lex_state = 2181, .external_lex_state = 10}, - [962] = {.lex_state = 2181, .external_lex_state = 10}, - [963] = {.lex_state = 2181, .external_lex_state = 10}, - [964] = {.lex_state = 2181, .external_lex_state = 10}, - [965] = {.lex_state = 2181, .external_lex_state = 10}, - [966] = {.lex_state = 2181, .external_lex_state = 10}, - [967] = {.lex_state = 2181, .external_lex_state = 10}, - [968] = {.lex_state = 2181, .external_lex_state = 10}, - [969] = {.lex_state = 2181, .external_lex_state = 10}, - [970] = {.lex_state = 2181, .external_lex_state = 10}, - [971] = {.lex_state = 2181, .external_lex_state = 10}, - [972] = {.lex_state = 2181, .external_lex_state = 10}, - [973] = {.lex_state = 2181, .external_lex_state = 10}, - [974] = {.lex_state = 2181, .external_lex_state = 10}, - [975] = {.lex_state = 2181, .external_lex_state = 10}, - [976] = {.lex_state = 2181, .external_lex_state = 10}, - [977] = {.lex_state = 2181, .external_lex_state = 10}, - [978] = {.lex_state = 2181, .external_lex_state = 5}, - [979] = {.lex_state = 2181, .external_lex_state = 10}, - [980] = {.lex_state = 2181, .external_lex_state = 10}, - [981] = {.lex_state = 2181, .external_lex_state = 10}, - [982] = {.lex_state = 2181, .external_lex_state = 10}, - [983] = {.lex_state = 2181, .external_lex_state = 10}, - [984] = {.lex_state = 2181, .external_lex_state = 10}, - [985] = {.lex_state = 2181, .external_lex_state = 5}, - [986] = {.lex_state = 2181, .external_lex_state = 10}, - [987] = {.lex_state = 2181, .external_lex_state = 10}, - [988] = {.lex_state = 2181, .external_lex_state = 10}, - [989] = {.lex_state = 2181, .external_lex_state = 10}, - [990] = {.lex_state = 2181, .external_lex_state = 10}, - [991] = {.lex_state = 2181, .external_lex_state = 10}, - [992] = {.lex_state = 2181, .external_lex_state = 9}, - [993] = {.lex_state = 2181, .external_lex_state = 10}, - [994] = {.lex_state = 2181, .external_lex_state = 10}, - [995] = {.lex_state = 2181, .external_lex_state = 10}, - [996] = {.lex_state = 2181, .external_lex_state = 10}, - [997] = {.lex_state = 2181, .external_lex_state = 10}, + [936] = {.lex_state = 2181, .external_lex_state = 4}, + [937] = {.lex_state = 2181, .external_lex_state = 4}, + [938] = {.lex_state = 2181, .external_lex_state = 4}, + [939] = {.lex_state = 2181, .external_lex_state = 4}, + [940] = {.lex_state = 2181, .external_lex_state = 4}, + [941] = {.lex_state = 2181, .external_lex_state = 4}, + [942] = {.lex_state = 2181, .external_lex_state = 4}, + [943] = {.lex_state = 2181, .external_lex_state = 4}, + [944] = {.lex_state = 2181, .external_lex_state = 4}, + [945] = {.lex_state = 2181, .external_lex_state = 4}, + [946] = {.lex_state = 2181, .external_lex_state = 4}, + [947] = {.lex_state = 2181, .external_lex_state = 4}, + [948] = {.lex_state = 2181, .external_lex_state = 4}, + [949] = {.lex_state = 2181, .external_lex_state = 4}, + [950] = {.lex_state = 2181, .external_lex_state = 4}, + [951] = {.lex_state = 2181, .external_lex_state = 4}, + [952] = {.lex_state = 2181, .external_lex_state = 4}, + [953] = {.lex_state = 2181, .external_lex_state = 4}, + [954] = {.lex_state = 2181, .external_lex_state = 4}, + [955] = {.lex_state = 2181, .external_lex_state = 4}, + [956] = {.lex_state = 2181, .external_lex_state = 5}, + [957] = {.lex_state = 2181, .external_lex_state = 4}, + [958] = {.lex_state = 2181, .external_lex_state = 4}, + [959] = {.lex_state = 2181, .external_lex_state = 4}, + [960] = {.lex_state = 2181, .external_lex_state = 4}, + [961] = {.lex_state = 2181, .external_lex_state = 4}, + [962] = {.lex_state = 2181, .external_lex_state = 4}, + [963] = {.lex_state = 2181, .external_lex_state = 4}, + [964] = {.lex_state = 2181, .external_lex_state = 4}, + [965] = {.lex_state = 2181, .external_lex_state = 4}, + [966] = {.lex_state = 2181, .external_lex_state = 4}, + [967] = {.lex_state = 2181, .external_lex_state = 4}, + [968] = {.lex_state = 2181, .external_lex_state = 4}, + [969] = {.lex_state = 2181, .external_lex_state = 4}, + [970] = {.lex_state = 2181, .external_lex_state = 4}, + [971] = {.lex_state = 2181, .external_lex_state = 4}, + [972] = {.lex_state = 2181, .external_lex_state = 4}, + [973] = {.lex_state = 2181, .external_lex_state = 4}, + [974] = {.lex_state = 2181, .external_lex_state = 5}, + [975] = {.lex_state = 2181, .external_lex_state = 4}, + [976] = {.lex_state = 2181, .external_lex_state = 4}, + [977] = {.lex_state = 2181, .external_lex_state = 4}, + [978] = {.lex_state = 2181, .external_lex_state = 4}, + [979] = {.lex_state = 2181, .external_lex_state = 4}, + [980] = {.lex_state = 2181, .external_lex_state = 4}, + [981] = {.lex_state = 2181, .external_lex_state = 5}, + [982] = {.lex_state = 2181, .external_lex_state = 4}, + [983] = {.lex_state = 2181, .external_lex_state = 4}, + [984] = {.lex_state = 2181, .external_lex_state = 4}, + [985] = {.lex_state = 2181, .external_lex_state = 4}, + [986] = {.lex_state = 2181, .external_lex_state = 4}, + [987] = {.lex_state = 2181, .external_lex_state = 4}, + [988] = {.lex_state = 2181, .external_lex_state = 4}, + [989] = {.lex_state = 2181, .external_lex_state = 4}, + [990] = {.lex_state = 2181, .external_lex_state = 4}, + [991] = {.lex_state = 2181, .external_lex_state = 4}, + [992] = {.lex_state = 2181, .external_lex_state = 4}, + [993] = {.lex_state = 2181, .external_lex_state = 5}, + [994] = {.lex_state = 2181, .external_lex_state = 4}, + [995] = {.lex_state = 2181, .external_lex_state = 4}, + [996] = {.lex_state = 2181, .external_lex_state = 4}, + [997] = {.lex_state = 2181, .external_lex_state = 4}, [998] = {.lex_state = 2181, .external_lex_state = 5}, - [999] = {.lex_state = 2181, .external_lex_state = 10}, - [1000] = {.lex_state = 2181, .external_lex_state = 10}, - [1001] = {.lex_state = 2181, .external_lex_state = 10}, - [1002] = {.lex_state = 2181, .external_lex_state = 10}, - [1003] = {.lex_state = 2181, .external_lex_state = 5}, - [1004] = {.lex_state = 2181, .external_lex_state = 5}, + [999] = {.lex_state = 2181, .external_lex_state = 5}, + [1000] = {.lex_state = 2181, .external_lex_state = 11}, + [1001] = {.lex_state = 2181, .external_lex_state = 11}, + [1002] = {.lex_state = 2181, .external_lex_state = 11}, + [1003] = {.lex_state = 2181, .external_lex_state = 11}, + [1004] = {.lex_state = 2181, .external_lex_state = 11}, [1005] = {.lex_state = 2181, .external_lex_state = 11}, [1006] = {.lex_state = 2181, .external_lex_state = 11}, [1007] = {.lex_state = 2181, .external_lex_state = 11}, @@ -27954,14 +27956,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1010] = {.lex_state = 2181, .external_lex_state = 11}, [1011] = {.lex_state = 2181, .external_lex_state = 11}, [1012] = {.lex_state = 2181, .external_lex_state = 11}, - [1013] = {.lex_state = 2181, .external_lex_state = 11}, - [1014] = {.lex_state = 2181, .external_lex_state = 11}, - [1015] = {.lex_state = 2181, .external_lex_state = 11}, + [1013] = {.lex_state = 2181, .external_lex_state = 10}, + [1014] = {.lex_state = 2181, .external_lex_state = 5}, + [1015] = {.lex_state = 2181, .external_lex_state = 4}, [1016] = {.lex_state = 2181, .external_lex_state = 11}, [1017] = {.lex_state = 2181, .external_lex_state = 11}, - [1018] = {.lex_state = 2181, .external_lex_state = 9}, + [1018] = {.lex_state = 2181, .external_lex_state = 11}, [1019] = {.lex_state = 2181, .external_lex_state = 5}, - [1020] = {.lex_state = 2181, .external_lex_state = 10}, + [1020] = {.lex_state = 2181, .external_lex_state = 11}, [1021] = {.lex_state = 2181, .external_lex_state = 11}, [1022] = {.lex_state = 2181, .external_lex_state = 11}, [1023] = {.lex_state = 2181, .external_lex_state = 11}, @@ -27976,30 +27978,30 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1032] = {.lex_state = 2181, .external_lex_state = 11}, [1033] = {.lex_state = 2181, .external_lex_state = 11}, [1034] = {.lex_state = 2181, .external_lex_state = 11}, - [1035] = {.lex_state = 2181, .external_lex_state = 11}, + [1035] = {.lex_state = 2181, .external_lex_state = 5}, [1036] = {.lex_state = 2181, .external_lex_state = 11}, [1037] = {.lex_state = 2181, .external_lex_state = 11}, [1038] = {.lex_state = 2181, .external_lex_state = 11}, [1039] = {.lex_state = 2181, .external_lex_state = 5}, [1040] = {.lex_state = 2181, .external_lex_state = 11}, - [1041] = {.lex_state = 2181, .external_lex_state = 5}, + [1041] = {.lex_state = 2181, .external_lex_state = 11}, [1042] = {.lex_state = 2181, .external_lex_state = 11}, [1043] = {.lex_state = 2181, .external_lex_state = 11}, - [1044] = {.lex_state = 2181, .external_lex_state = 5}, + [1044] = {.lex_state = 2181, .external_lex_state = 11}, [1045] = {.lex_state = 2181, .external_lex_state = 11}, [1046] = {.lex_state = 2181, .external_lex_state = 11}, [1047] = {.lex_state = 2181, .external_lex_state = 11}, [1048] = {.lex_state = 2181, .external_lex_state = 11}, [1049] = {.lex_state = 2181, .external_lex_state = 11}, [1050] = {.lex_state = 2181, .external_lex_state = 11}, - [1051] = {.lex_state = 2181, .external_lex_state = 11}, + [1051] = {.lex_state = 2181, .external_lex_state = 5}, [1052] = {.lex_state = 2181, .external_lex_state = 11}, [1053] = {.lex_state = 2181, .external_lex_state = 11}, [1054] = {.lex_state = 2181, .external_lex_state = 11}, [1055] = {.lex_state = 2181, .external_lex_state = 11}, - [1056] = {.lex_state = 2181, .external_lex_state = 11}, + [1056] = {.lex_state = 2181, .external_lex_state = 5}, [1057] = {.lex_state = 2181, .external_lex_state = 11}, - [1058] = {.lex_state = 2181, .external_lex_state = 11}, + [1058] = {.lex_state = 2181, .external_lex_state = 5}, [1059] = {.lex_state = 2181, .external_lex_state = 11}, [1060] = {.lex_state = 2181, .external_lex_state = 11}, [1061] = {.lex_state = 2181, .external_lex_state = 11}, @@ -28008,50 +28010,50 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1064] = {.lex_state = 2181, .external_lex_state = 11}, [1065] = {.lex_state = 2181, .external_lex_state = 11}, [1066] = {.lex_state = 2181, .external_lex_state = 11}, - [1067] = {.lex_state = 2181, .external_lex_state = 5}, + [1067] = {.lex_state = 2181, .external_lex_state = 11}, [1068] = {.lex_state = 2181, .external_lex_state = 11}, - [1069] = {.lex_state = 2181, .external_lex_state = 5}, + [1069] = {.lex_state = 2181, .external_lex_state = 11}, [1070] = {.lex_state = 2181, .external_lex_state = 11}, - [1071] = {.lex_state = 2181, .external_lex_state = 11}, + [1071] = {.lex_state = 2181, .external_lex_state = 5}, [1072] = {.lex_state = 2181, .external_lex_state = 11}, [1073] = {.lex_state = 2181, .external_lex_state = 11}, [1074] = {.lex_state = 2181, .external_lex_state = 11}, - [1075] = {.lex_state = 2181, .external_lex_state = 5}, + [1075] = {.lex_state = 2181, .external_lex_state = 11}, [1076] = {.lex_state = 2181, .external_lex_state = 11}, - [1077] = {.lex_state = 2181, .external_lex_state = 11}, + [1077] = {.lex_state = 2181, .external_lex_state = 5}, [1078] = {.lex_state = 2181, .external_lex_state = 11}, [1079] = {.lex_state = 2181, .external_lex_state = 11}, - [1080] = {.lex_state = 2181, .external_lex_state = 11}, - [1081] = {.lex_state = 2181, .external_lex_state = 5}, + [1080] = {.lex_state = 2181, .external_lex_state = 5}, + [1081] = {.lex_state = 2181, .external_lex_state = 11}, [1082] = {.lex_state = 2181, .external_lex_state = 11}, [1083] = {.lex_state = 2181, .external_lex_state = 11}, - [1084] = {.lex_state = 2181, .external_lex_state = 11}, - [1085] = {.lex_state = 2181, .external_lex_state = 11}, - [1086] = {.lex_state = 2181, .external_lex_state = 11}, - [1087] = {.lex_state = 2181, .external_lex_state = 5}, - [1088] = {.lex_state = 2181, .external_lex_state = 5}, + [1084] = {.lex_state = 2181, .external_lex_state = 5}, + [1085] = {.lex_state = 2181, .external_lex_state = 5}, + [1086] = {.lex_state = 2181, .external_lex_state = 6}, + [1087] = {.lex_state = 2181, .external_lex_state = 12}, + [1088] = {.lex_state = 2181, .external_lex_state = 12}, [1089] = {.lex_state = 2181, .external_lex_state = 12}, [1090] = {.lex_state = 2181, .external_lex_state = 5}, [1091] = {.lex_state = 2181, .external_lex_state = 12}, [1092] = {.lex_state = 2181, .external_lex_state = 12}, - [1093] = {.lex_state = 2181, .external_lex_state = 5}, - [1094] = {.lex_state = 2181, .external_lex_state = 6}, + [1093] = {.lex_state = 2181, .external_lex_state = 12}, + [1094] = {.lex_state = 2181, .external_lex_state = 12}, [1095] = {.lex_state = 2181, .external_lex_state = 12}, [1096] = {.lex_state = 2181, .external_lex_state = 12}, [1097] = {.lex_state = 2181, .external_lex_state = 12}, [1098] = {.lex_state = 2181, .external_lex_state = 12}, - [1099] = {.lex_state = 2181, .external_lex_state = 12}, + [1099] = {.lex_state = 2181, .external_lex_state = 6}, [1100] = {.lex_state = 2181, .external_lex_state = 12}, [1101] = {.lex_state = 2181, .external_lex_state = 12}, - [1102] = {.lex_state = 2181, .external_lex_state = 12}, - [1103] = {.lex_state = 2181, .external_lex_state = 12}, - [1104] = {.lex_state = 2181, .external_lex_state = 12}, - [1105] = {.lex_state = 2181, .external_lex_state = 10}, - [1106] = {.lex_state = 2181, .external_lex_state = 5}, - [1107] = {.lex_state = 2181, .external_lex_state = 11}, + [1102] = {.lex_state = 2181, .external_lex_state = 4}, + [1103] = {.lex_state = 2181, .external_lex_state = 6}, + [1104] = {.lex_state = 2181, .external_lex_state = 6}, + [1105] = {.lex_state = 2181, .external_lex_state = 5}, + [1106] = {.lex_state = 2181, .external_lex_state = 11}, + [1107] = {.lex_state = 2181, .external_lex_state = 12}, [1108] = {.lex_state = 2181, .external_lex_state = 12}, [1109] = {.lex_state = 2181, .external_lex_state = 12}, - [1110] = {.lex_state = 2181, .external_lex_state = 6}, + [1110] = {.lex_state = 2181, .external_lex_state = 12}, [1111] = {.lex_state = 2181, .external_lex_state = 12}, [1112] = {.lex_state = 2181, .external_lex_state = 12}, [1113] = {.lex_state = 2181, .external_lex_state = 12}, @@ -28066,19 +28068,19 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1122] = {.lex_state = 2181, .external_lex_state = 12}, [1123] = {.lex_state = 2181, .external_lex_state = 12}, [1124] = {.lex_state = 2181, .external_lex_state = 12}, - [1125] = {.lex_state = 2181, .external_lex_state = 12}, + [1125] = {.lex_state = 2181, .external_lex_state = 6}, [1126] = {.lex_state = 2181, .external_lex_state = 12}, - [1127] = {.lex_state = 2181, .external_lex_state = 12}, - [1128] = {.lex_state = 2181, .external_lex_state = 6}, - [1129] = {.lex_state = 2181, .external_lex_state = 12}, - [1130] = {.lex_state = 2181, .external_lex_state = 6}, - [1131] = {.lex_state = 2181, .external_lex_state = 12}, - [1132] = {.lex_state = 2181, .external_lex_state = 5}, + [1127] = {.lex_state = 2181, .external_lex_state = 6}, + [1128] = {.lex_state = 2181, .external_lex_state = 12}, + [1129] = {.lex_state = 2181, .external_lex_state = 6}, + [1130] = {.lex_state = 2181, .external_lex_state = 12}, + [1131] = {.lex_state = 2181, .external_lex_state = 6}, + [1132] = {.lex_state = 2181, .external_lex_state = 6}, [1133] = {.lex_state = 2181, .external_lex_state = 12}, - [1134] = {.lex_state = 2181, .external_lex_state = 12}, - [1135] = {.lex_state = 2181, .external_lex_state = 6}, + [1134] = {.lex_state = 2181, .external_lex_state = 6}, + [1135] = {.lex_state = 2181, .external_lex_state = 12}, [1136] = {.lex_state = 2181, .external_lex_state = 6}, - [1137] = {.lex_state = 2181, .external_lex_state = 12}, + [1137] = {.lex_state = 2181, .external_lex_state = 6}, [1138] = {.lex_state = 2181, .external_lex_state = 12}, [1139] = {.lex_state = 2181, .external_lex_state = 12}, [1140] = {.lex_state = 2181, .external_lex_state = 12}, @@ -28087,7 +28089,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1143] = {.lex_state = 2181, .external_lex_state = 12}, [1144] = {.lex_state = 2181, .external_lex_state = 12}, [1145] = {.lex_state = 2181, .external_lex_state = 12}, - [1146] = {.lex_state = 2181, .external_lex_state = 6}, + [1146] = {.lex_state = 2181, .external_lex_state = 12}, [1147] = {.lex_state = 2181, .external_lex_state = 12}, [1148] = {.lex_state = 2181, .external_lex_state = 12}, [1149] = {.lex_state = 2181, .external_lex_state = 12}, @@ -28101,34 +28103,34 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1157] = {.lex_state = 2181, .external_lex_state = 12}, [1158] = {.lex_state = 2181, .external_lex_state = 12}, [1159] = {.lex_state = 2181, .external_lex_state = 12}, - [1160] = {.lex_state = 2181, .external_lex_state = 6}, + [1160] = {.lex_state = 2181, .external_lex_state = 12}, [1161] = {.lex_state = 2181, .external_lex_state = 12}, - [1162] = {.lex_state = 2181, .external_lex_state = 6}, + [1162] = {.lex_state = 2181, .external_lex_state = 12}, [1163] = {.lex_state = 2181, .external_lex_state = 12}, [1164] = {.lex_state = 2181, .external_lex_state = 12}, [1165] = {.lex_state = 2181, .external_lex_state = 12}, - [1166] = {.lex_state = 2181, .external_lex_state = 12}, + [1166] = {.lex_state = 2181, .external_lex_state = 5}, [1167] = {.lex_state = 2181, .external_lex_state = 12}, - [1168] = {.lex_state = 2181, .external_lex_state = 6}, + [1168] = {.lex_state = 2181, .external_lex_state = 12}, [1169] = {.lex_state = 2181, .external_lex_state = 12}, - [1170] = {.lex_state = 2181, .external_lex_state = 5}, + [1170] = {.lex_state = 2181, .external_lex_state = 12}, [1171] = {.lex_state = 2181, .external_lex_state = 12}, [1172] = {.lex_state = 2181, .external_lex_state = 12}, [1173] = {.lex_state = 2181, .external_lex_state = 12}, - [1174] = {.lex_state = 2181, .external_lex_state = 6}, + [1174] = {.lex_state = 2181, .external_lex_state = 12}, [1175] = {.lex_state = 2181, .external_lex_state = 12}, - [1176] = {.lex_state = 2181, .external_lex_state = 6}, - [1177] = {.lex_state = 2181, .external_lex_state = 12}, - [1178] = {.lex_state = 2181, .external_lex_state = 12}, - [1179] = {.lex_state = 2181, .external_lex_state = 12}, - [1180] = {.lex_state = 2181, .external_lex_state = 12}, - [1181] = {.lex_state = 2181, .external_lex_state = 12}, - [1182] = {.lex_state = 2181, .external_lex_state = 5}, + [1176] = {.lex_state = 2181, .external_lex_state = 12}, + [1177] = {.lex_state = 2181, .external_lex_state = 6}, + [1178] = {.lex_state = 2181, .external_lex_state = 6}, + [1179] = {.lex_state = 2181, .external_lex_state = 5}, + [1180] = {.lex_state = 2181, .external_lex_state = 6}, + [1181] = {.lex_state = 2181, .external_lex_state = 13}, + [1182] = {.lex_state = 2181, .external_lex_state = 6}, [1183] = {.lex_state = 2181, .external_lex_state = 13}, - [1184] = {.lex_state = 2181, .external_lex_state = 6}, - [1185] = {.lex_state = 2181, .external_lex_state = 13}, - [1186] = {.lex_state = 2181, .external_lex_state = 13}, - [1187] = {.lex_state = 2181, .external_lex_state = 6}, + [1184] = {.lex_state = 2181, .external_lex_state = 13}, + [1185] = {.lex_state = 2181, .external_lex_state = 5}, + [1186] = {.lex_state = 2181, .external_lex_state = 6}, + [1187] = {.lex_state = 2181, .external_lex_state = 13}, [1188] = {.lex_state = 2181, .external_lex_state = 13}, [1189] = {.lex_state = 2181, .external_lex_state = 13}, [1190] = {.lex_state = 2181, .external_lex_state = 13}, @@ -28138,14 +28140,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1194] = {.lex_state = 2181, .external_lex_state = 13}, [1195] = {.lex_state = 2181, .external_lex_state = 13}, [1196] = {.lex_state = 2181, .external_lex_state = 13}, - [1197] = {.lex_state = 2181, .external_lex_state = 13}, - [1198] = {.lex_state = 2181, .external_lex_state = 11}, + [1197] = {.lex_state = 2181, .external_lex_state = 11}, + [1198] = {.lex_state = 2181, .external_lex_state = 6}, [1199] = {.lex_state = 2181, .external_lex_state = 6}, [1200] = {.lex_state = 2181, .external_lex_state = 6}, - [1201] = {.lex_state = 2181, .external_lex_state = 5}, - [1202] = {.lex_state = 2181, .external_lex_state = 6}, + [1201] = {.lex_state = 2181, .external_lex_state = 6}, + [1202] = {.lex_state = 2181, .external_lex_state = 13}, [1203] = {.lex_state = 2181, .external_lex_state = 13}, - [1204] = {.lex_state = 2181, .external_lex_state = 13}, + [1204] = {.lex_state = 2181, .external_lex_state = 6}, [1205] = {.lex_state = 2181, .external_lex_state = 13}, [1206] = {.lex_state = 2181, .external_lex_state = 6}, [1207] = {.lex_state = 2181, .external_lex_state = 13}, @@ -28163,19 +28165,19 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1219] = {.lex_state = 2181, .external_lex_state = 13}, [1220] = {.lex_state = 2181, .external_lex_state = 13}, [1221] = {.lex_state = 2181, .external_lex_state = 13}, - [1222] = {.lex_state = 2181, .external_lex_state = 13}, - [1223] = {.lex_state = 2181, .external_lex_state = 6}, - [1224] = {.lex_state = 2181, .external_lex_state = 13}, - [1225] = {.lex_state = 2181, .external_lex_state = 6}, - [1226] = {.lex_state = 2181, .external_lex_state = 13}, - [1227] = {.lex_state = 2181, .external_lex_state = 6}, + [1222] = {.lex_state = 2181, .external_lex_state = 6}, + [1223] = {.lex_state = 2181, .external_lex_state = 13}, + [1224] = {.lex_state = 2181, .external_lex_state = 6}, + [1225] = {.lex_state = 2181, .external_lex_state = 13}, + [1226] = {.lex_state = 2181, .external_lex_state = 6}, + [1227] = {.lex_state = 2181, .external_lex_state = 13}, [1228] = {.lex_state = 2181, .external_lex_state = 6}, - [1229] = {.lex_state = 2181, .external_lex_state = 13}, - [1230] = {.lex_state = 2181, .external_lex_state = 6}, - [1231] = {.lex_state = 2181, .external_lex_state = 13}, - [1232] = {.lex_state = 2181, .external_lex_state = 6}, + [1229] = {.lex_state = 2181, .external_lex_state = 6}, + [1230] = {.lex_state = 2181, .external_lex_state = 13}, + [1231] = {.lex_state = 2181, .external_lex_state = 6}, + [1232] = {.lex_state = 2181, .external_lex_state = 13}, [1233] = {.lex_state = 2181, .external_lex_state = 6}, - [1234] = {.lex_state = 2181, .external_lex_state = 13}, + [1234] = {.lex_state = 2181, .external_lex_state = 5}, [1235] = {.lex_state = 2181, .external_lex_state = 13}, [1236] = {.lex_state = 2181, .external_lex_state = 13}, [1237] = {.lex_state = 2181, .external_lex_state = 13}, @@ -28184,21 +28186,21 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1240] = {.lex_state = 2181, .external_lex_state = 13}, [1241] = {.lex_state = 2181, .external_lex_state = 13}, [1242] = {.lex_state = 2181, .external_lex_state = 13}, - [1243] = {.lex_state = 2181, .external_lex_state = 6}, - [1244] = {.lex_state = 2181, .external_lex_state = 13}, + [1243] = {.lex_state = 2181, .external_lex_state = 13}, + [1244] = {.lex_state = 2181, .external_lex_state = 6}, [1245] = {.lex_state = 2181, .external_lex_state = 13}, [1246] = {.lex_state = 2181, .external_lex_state = 13}, [1247] = {.lex_state = 2181, .external_lex_state = 13}, - [1248] = {.lex_state = 2181, .external_lex_state = 6}, - [1249] = {.lex_state = 2181, .external_lex_state = 13}, - [1250] = {.lex_state = 2181, .external_lex_state = 6}, - [1251] = {.lex_state = 2181, .external_lex_state = 13}, + [1248] = {.lex_state = 2181, .external_lex_state = 13}, + [1249] = {.lex_state = 2181, .external_lex_state = 5}, + [1250] = {.lex_state = 2181, .external_lex_state = 13}, + [1251] = {.lex_state = 2181, .external_lex_state = 6}, [1252] = {.lex_state = 2181, .external_lex_state = 13}, [1253] = {.lex_state = 2181, .external_lex_state = 13}, [1254] = {.lex_state = 2181, .external_lex_state = 13}, [1255] = {.lex_state = 2181, .external_lex_state = 13}, [1256] = {.lex_state = 2181, .external_lex_state = 13}, - [1257] = {.lex_state = 2181, .external_lex_state = 6}, + [1257] = {.lex_state = 2181, .external_lex_state = 13}, [1258] = {.lex_state = 2181, .external_lex_state = 13}, [1259] = {.lex_state = 2181, .external_lex_state = 6}, [1260] = {.lex_state = 2181, .external_lex_state = 13}, @@ -28206,31 +28208,31 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1262] = {.lex_state = 2181, .external_lex_state = 13}, [1263] = {.lex_state = 2181, .external_lex_state = 13}, [1264] = {.lex_state = 2181, .external_lex_state = 13}, - [1265] = {.lex_state = 2181, .external_lex_state = 5}, - [1266] = {.lex_state = 2181, .external_lex_state = 13}, - [1267] = {.lex_state = 2181, .external_lex_state = 6}, + [1265] = {.lex_state = 2181, .external_lex_state = 13}, + [1266] = {.lex_state = 2181, .external_lex_state = 5}, + [1267] = {.lex_state = 2181, .external_lex_state = 13}, [1268] = {.lex_state = 2181, .external_lex_state = 13}, [1269] = {.lex_state = 2181, .external_lex_state = 13}, - [1270] = {.lex_state = 2181, .external_lex_state = 13}, - [1271] = {.lex_state = 2181, .external_lex_state = 5}, - [1272] = {.lex_state = 2181, .external_lex_state = 13}, - [1273] = {.lex_state = 2181, .external_lex_state = 6}, - [1274] = {.lex_state = 2181, .external_lex_state = 13}, + [1270] = {.lex_state = 2181, .external_lex_state = 6}, + [1271] = {.lex_state = 2181, .external_lex_state = 13}, + [1272] = {.lex_state = 2181, .external_lex_state = 5}, + [1273] = {.lex_state = 2181, .external_lex_state = 13}, + [1274] = {.lex_state = 2181, .external_lex_state = 6}, [1275] = {.lex_state = 2181, .external_lex_state = 13}, - [1276] = {.lex_state = 2181, .external_lex_state = 6}, + [1276] = {.lex_state = 2181, .external_lex_state = 13}, [1277] = {.lex_state = 2181, .external_lex_state = 13}, [1278] = {.lex_state = 2181, .external_lex_state = 13}, - [1279] = {.lex_state = 2181, .external_lex_state = 13}, - [1280] = {.lex_state = 2181, .external_lex_state = 5}, + [1279] = {.lex_state = 2181, .external_lex_state = 6}, + [1280] = {.lex_state = 2181, .external_lex_state = 6}, [1281] = {.lex_state = 2181, .external_lex_state = 6}, - [1282] = {.lex_state = 2181, .external_lex_state = 5}, - [1283] = {.lex_state = 2181, .external_lex_state = 6}, - [1284] = {.lex_state = 2181, .external_lex_state = 5}, - [1285] = {.lex_state = 2181, .external_lex_state = 5}, + [1282] = {.lex_state = 2181, .external_lex_state = 6}, + [1283] = {.lex_state = 2181, .external_lex_state = 5}, + [1284] = {.lex_state = 2181, .external_lex_state = 6}, + [1285] = {.lex_state = 2181, .external_lex_state = 6}, [1286] = {.lex_state = 2181, .external_lex_state = 5}, - [1287] = {.lex_state = 2181, .external_lex_state = 6}, + [1287] = {.lex_state = 2181, .external_lex_state = 5}, [1288] = {.lex_state = 2181, .external_lex_state = 6}, - [1289] = {.lex_state = 2181, .external_lex_state = 5}, + [1289] = {.lex_state = 2181, .external_lex_state = 6}, [1290] = {.lex_state = 2181, .external_lex_state = 5}, [1291] = {.lex_state = 2181, .external_lex_state = 5}, [1292] = {.lex_state = 2181, .external_lex_state = 5}, @@ -28238,11 +28240,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1294] = {.lex_state = 2181, .external_lex_state = 5}, [1295] = {.lex_state = 2181, .external_lex_state = 5}, [1296] = {.lex_state = 2181, .external_lex_state = 5}, - [1297] = {.lex_state = 2181, .external_lex_state = 6}, - [1298] = {.lex_state = 2181, .external_lex_state = 5}, + [1297] = {.lex_state = 2181, .external_lex_state = 5}, + [1298] = {.lex_state = 2181, .external_lex_state = 6}, [1299] = {.lex_state = 2181, .external_lex_state = 5}, - [1300] = {.lex_state = 2181, .external_lex_state = 12}, - [1301] = {.lex_state = 2181, .external_lex_state = 6}, + [1300] = {.lex_state = 2181, .external_lex_state = 5}, + [1301] = {.lex_state = 2181, .external_lex_state = 12}, [1302] = {.lex_state = 2181, .external_lex_state = 6}, [1303] = {.lex_state = 2181, .external_lex_state = 6}, [1304] = {.lex_state = 2181, .external_lex_state = 6}, @@ -28250,8 +28252,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1306] = {.lex_state = 2181, .external_lex_state = 12}, [1307] = {.lex_state = 2181, .external_lex_state = 5}, [1308] = {.lex_state = 2181, .external_lex_state = 5}, - [1309] = {.lex_state = 2181, .external_lex_state = 6}, - [1310] = {.lex_state = 2181, .external_lex_state = 5}, + [1309] = {.lex_state = 2181, .external_lex_state = 5}, + [1310] = {.lex_state = 2181, .external_lex_state = 6}, [1311] = {.lex_state = 2181, .external_lex_state = 5}, [1312] = {.lex_state = 2181, .external_lex_state = 5}, [1313] = {.lex_state = 2181, .external_lex_state = 5}, @@ -28267,19 +28269,19 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1323] = {.lex_state = 2181, .external_lex_state = 5}, [1324] = {.lex_state = 2181, .external_lex_state = 5}, [1325] = {.lex_state = 2181, .external_lex_state = 5}, - [1326] = {.lex_state = 2181, .external_lex_state = 6}, + [1326] = {.lex_state = 2181, .external_lex_state = 5}, [1327] = {.lex_state = 2181, .external_lex_state = 5}, [1328] = {.lex_state = 2181, .external_lex_state = 6}, [1329] = {.lex_state = 2181, .external_lex_state = 5}, [1330] = {.lex_state = 2181, .external_lex_state = 6}, [1331] = {.lex_state = 2181, .external_lex_state = 5}, [1332] = {.lex_state = 2181, .external_lex_state = 6}, - [1333] = {.lex_state = 2181, .external_lex_state = 5}, + [1333] = {.lex_state = 2181, .external_lex_state = 6}, [1334] = {.lex_state = 2181, .external_lex_state = 5}, [1335] = {.lex_state = 2181, .external_lex_state = 6}, [1336] = {.lex_state = 2181, .external_lex_state = 5}, - [1337] = {.lex_state = 2181, .external_lex_state = 5}, - [1338] = {.lex_state = 2181, .external_lex_state = 6}, + [1337] = {.lex_state = 2181, .external_lex_state = 6}, + [1338] = {.lex_state = 2181, .external_lex_state = 5}, [1339] = {.lex_state = 2181, .external_lex_state = 5}, [1340] = {.lex_state = 2181, .external_lex_state = 5}, [1341] = {.lex_state = 2181, .external_lex_state = 5}, @@ -28294,7 +28296,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1350] = {.lex_state = 2181, .external_lex_state = 5}, [1351] = {.lex_state = 2181, .external_lex_state = 5}, [1352] = {.lex_state = 2181, .external_lex_state = 5}, - [1353] = {.lex_state = 2181, .external_lex_state = 6}, + [1353] = {.lex_state = 2181, .external_lex_state = 5}, [1354] = {.lex_state = 2181, .external_lex_state = 5}, [1355] = {.lex_state = 2181, .external_lex_state = 6}, [1356] = {.lex_state = 2181, .external_lex_state = 5}, @@ -28311,32 +28313,32 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1367] = {.lex_state = 2181, .external_lex_state = 5}, [1368] = {.lex_state = 2181, .external_lex_state = 5}, [1369] = {.lex_state = 2181, .external_lex_state = 5}, - [1370] = {.lex_state = 2181, .external_lex_state = 5}, - [1371] = {.lex_state = 2181, .external_lex_state = 6}, - [1372] = {.lex_state = 2181, .external_lex_state = 5}, + [1370] = {.lex_state = 2181, .external_lex_state = 6}, + [1371] = {.lex_state = 2181, .external_lex_state = 5}, + [1372] = {.lex_state = 2181, .external_lex_state = 6}, [1373] = {.lex_state = 2181, .external_lex_state = 5}, [1374] = {.lex_state = 2181, .external_lex_state = 5}, [1375] = {.lex_state = 2181, .external_lex_state = 5}, - [1376] = {.lex_state = 2181, .external_lex_state = 6}, + [1376] = {.lex_state = 2181, .external_lex_state = 5}, [1377] = {.lex_state = 2181, .external_lex_state = 5}, [1378] = {.lex_state = 2181, .external_lex_state = 6}, [1379] = {.lex_state = 2181, .external_lex_state = 5}, - [1380] = {.lex_state = 2181, .external_lex_state = 6}, - [1381] = {.lex_state = 2181, .external_lex_state = 5}, + [1380] = {.lex_state = 2181, .external_lex_state = 5}, + [1381] = {.lex_state = 2181, .external_lex_state = 6}, [1382] = {.lex_state = 2181, .external_lex_state = 5}, [1383] = {.lex_state = 2181, .external_lex_state = 5}, - [1384] = {.lex_state = 2181, .external_lex_state = 6}, + [1384] = {.lex_state = 2181, .external_lex_state = 5}, [1385] = {.lex_state = 2181, .external_lex_state = 6}, - [1386] = {.lex_state = 2181, .external_lex_state = 5}, - [1387] = {.lex_state = 2181, .external_lex_state = 6}, - [1388] = {.lex_state = 2181, .external_lex_state = 5}, - [1389] = {.lex_state = 2181, .external_lex_state = 6}, - [1390] = {.lex_state = 4, .external_lex_state = 5}, - [1391] = {.lex_state = 2181, .external_lex_state = 6}, - [1392] = {.lex_state = 2181, .external_lex_state = 6}, - [1393] = {.lex_state = 4, .external_lex_state = 5}, + [1386] = {.lex_state = 2181, .external_lex_state = 6}, + [1387] = {.lex_state = 2181, .external_lex_state = 5}, + [1388] = {.lex_state = 2181, .external_lex_state = 6}, + [1389] = {.lex_state = 2181, .external_lex_state = 5}, + [1390] = {.lex_state = 2181, .external_lex_state = 6}, + [1391] = {.lex_state = 4, .external_lex_state = 5}, + [1392] = {.lex_state = 2181, .external_lex_state = 5}, + [1393] = {.lex_state = 2181, .external_lex_state = 6}, [1394] = {.lex_state = 4, .external_lex_state = 5}, - [1395] = {.lex_state = 2181, .external_lex_state = 5}, + [1395] = {.lex_state = 4, .external_lex_state = 5}, [1396] = {.lex_state = 2181, .external_lex_state = 6}, [1397] = {.lex_state = 4, .external_lex_state = 5}, [1398] = {.lex_state = 4, .external_lex_state = 5}, @@ -28346,19 +28348,19 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1402] = {.lex_state = 4, .external_lex_state = 5}, [1403] = {.lex_state = 4, .external_lex_state = 5}, [1404] = {.lex_state = 4, .external_lex_state = 5}, - [1405] = {.lex_state = 4, .external_lex_state = 5}, + [1405] = {.lex_state = 2181, .external_lex_state = 6}, [1406] = {.lex_state = 4, .external_lex_state = 5}, - [1407] = {.lex_state = 2181, .external_lex_state = 13}, - [1408] = {.lex_state = 2181, .external_lex_state = 6}, - [1409] = {.lex_state = 2181, .external_lex_state = 5}, - [1410] = {.lex_state = 2181, .external_lex_state = 6}, - [1411] = {.lex_state = 2181, .external_lex_state = 6}, - [1412] = {.lex_state = 2181, .external_lex_state = 13}, - [1413] = {.lex_state = 4, .external_lex_state = 5}, - [1414] = {.lex_state = 4, .external_lex_state = 5}, - [1415] = {.lex_state = 2181, .external_lex_state = 6}, + [1407] = {.lex_state = 4, .external_lex_state = 5}, + [1408] = {.lex_state = 2181, .external_lex_state = 13}, + [1409] = {.lex_state = 2181, .external_lex_state = 7}, + [1410] = {.lex_state = 2181, .external_lex_state = 5}, + [1411] = {.lex_state = 2181, .external_lex_state = 5}, + [1412] = {.lex_state = 2181, .external_lex_state = 5}, + [1413] = {.lex_state = 2181, .external_lex_state = 5}, + [1414] = {.lex_state = 2181, .external_lex_state = 13}, + [1415] = {.lex_state = 4, .external_lex_state = 5}, [1416] = {.lex_state = 4, .external_lex_state = 5}, - [1417] = {.lex_state = 2181, .external_lex_state = 4}, + [1417] = {.lex_state = 2181, .external_lex_state = 5}, [1418] = {.lex_state = 4, .external_lex_state = 5}, [1419] = {.lex_state = 4, .external_lex_state = 5}, [1420] = {.lex_state = 4, .external_lex_state = 5}, @@ -28374,18 +28376,18 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1430] = {.lex_state = 4, .external_lex_state = 5}, [1431] = {.lex_state = 4, .external_lex_state = 5}, [1432] = {.lex_state = 4, .external_lex_state = 5}, - [1433] = {.lex_state = 2181, .external_lex_state = 5}, - [1434] = {.lex_state = 4, .external_lex_state = 5}, - [1435] = {.lex_state = 2181, .external_lex_state = 5}, + [1433] = {.lex_state = 4, .external_lex_state = 5}, + [1434] = {.lex_state = 2181, .external_lex_state = 7}, + [1435] = {.lex_state = 4, .external_lex_state = 5}, [1436] = {.lex_state = 4, .external_lex_state = 5}, [1437] = {.lex_state = 2181, .external_lex_state = 5}, [1438] = {.lex_state = 4, .external_lex_state = 5}, - [1439] = {.lex_state = 2181, .external_lex_state = 5}, - [1440] = {.lex_state = 2181, .external_lex_state = 5}, + [1439] = {.lex_state = 2181, .external_lex_state = 7}, + [1440] = {.lex_state = 2181, .external_lex_state = 7}, [1441] = {.lex_state = 4, .external_lex_state = 5}, - [1442] = {.lex_state = 4, .external_lex_state = 5}, - [1443] = {.lex_state = 2181, .external_lex_state = 4}, - [1444] = {.lex_state = 4, .external_lex_state = 5}, + [1442] = {.lex_state = 2181, .external_lex_state = 5}, + [1443] = {.lex_state = 4, .external_lex_state = 5}, + [1444] = {.lex_state = 2181, .external_lex_state = 7}, [1445] = {.lex_state = 4, .external_lex_state = 5}, [1446] = {.lex_state = 4, .external_lex_state = 5}, [1447] = {.lex_state = 4, .external_lex_state = 5}, @@ -28394,339 +28396,339 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1450] = {.lex_state = 4, .external_lex_state = 5}, [1451] = {.lex_state = 4, .external_lex_state = 5}, [1452] = {.lex_state = 4, .external_lex_state = 5}, - [1453] = {.lex_state = 2181, .external_lex_state = 5}, - [1454] = {.lex_state = 4, .external_lex_state = 5}, + [1453] = {.lex_state = 4, .external_lex_state = 5}, + [1454] = {.lex_state = 2181, .external_lex_state = 7}, [1455] = {.lex_state = 4, .external_lex_state = 5}, [1456] = {.lex_state = 4, .external_lex_state = 5}, [1457] = {.lex_state = 4, .external_lex_state = 5}, - [1458] = {.lex_state = 2181, .external_lex_state = 4}, - [1459] = {.lex_state = 4, .external_lex_state = 5}, - [1460] = {.lex_state = 2181, .external_lex_state = 4}, - [1461] = {.lex_state = 4, .external_lex_state = 5}, + [1458] = {.lex_state = 4, .external_lex_state = 5}, + [1459] = {.lex_state = 2181, .external_lex_state = 7}, + [1460] = {.lex_state = 4, .external_lex_state = 5}, + [1461] = {.lex_state = 2181, .external_lex_state = 7}, [1462] = {.lex_state = 4, .external_lex_state = 5}, [1463] = {.lex_state = 4, .external_lex_state = 5}, [1464] = {.lex_state = 4, .external_lex_state = 5}, [1465] = {.lex_state = 4, .external_lex_state = 5}, [1466] = {.lex_state = 4, .external_lex_state = 5}, - [1467] = {.lex_state = 2181, .external_lex_state = 5}, - [1468] = {.lex_state = 4, .external_lex_state = 5}, + [1467] = {.lex_state = 4, .external_lex_state = 5}, + [1468] = {.lex_state = 2181, .external_lex_state = 7}, [1469] = {.lex_state = 4, .external_lex_state = 5}, - [1470] = {.lex_state = 4, .external_lex_state = 5}, + [1470] = {.lex_state = 2181, .external_lex_state = 7}, [1471] = {.lex_state = 4, .external_lex_state = 5}, [1472] = {.lex_state = 4, .external_lex_state = 5}, [1473] = {.lex_state = 4, .external_lex_state = 5}, - [1474] = {.lex_state = 2181, .external_lex_state = 4}, + [1474] = {.lex_state = 4, .external_lex_state = 5}, [1475] = {.lex_state = 4, .external_lex_state = 5}, - [1476] = {.lex_state = 2181, .external_lex_state = 4}, + [1476] = {.lex_state = 2181, .external_lex_state = 7}, [1477] = {.lex_state = 4, .external_lex_state = 5}, - [1478] = {.lex_state = 4, .external_lex_state = 5}, + [1478] = {.lex_state = 2181, .external_lex_state = 7}, [1479] = {.lex_state = 4, .external_lex_state = 5}, - [1480] = {.lex_state = 2181, .external_lex_state = 4}, + [1480] = {.lex_state = 4, .external_lex_state = 5}, [1481] = {.lex_state = 4, .external_lex_state = 5}, - [1482] = {.lex_state = 2181, .external_lex_state = 4}, - [1483] = {.lex_state = 4, .external_lex_state = 5}, - [1484] = {.lex_state = 2181, .external_lex_state = 4}, - [1485] = {.lex_state = 4, .external_lex_state = 5}, - [1486] = {.lex_state = 2181, .external_lex_state = 4}, - [1487] = {.lex_state = 4, .external_lex_state = 5}, + [1482] = {.lex_state = 4, .external_lex_state = 5}, + [1483] = {.lex_state = 2181, .external_lex_state = 7}, + [1484] = {.lex_state = 4, .external_lex_state = 5}, + [1485] = {.lex_state = 2181, .external_lex_state = 7}, + [1486] = {.lex_state = 4, .external_lex_state = 5}, + [1487] = {.lex_state = 2181, .external_lex_state = 6}, [1488] = {.lex_state = 4, .external_lex_state = 5}, [1489] = {.lex_state = 4, .external_lex_state = 5}, - [1490] = {.lex_state = 2181, .external_lex_state = 4}, - [1491] = {.lex_state = 2181, .external_lex_state = 4}, + [1490] = {.lex_state = 4, .external_lex_state = 5}, + [1491] = {.lex_state = 2181, .external_lex_state = 5}, [1492] = {.lex_state = 2181, .external_lex_state = 5}, [1493] = {.lex_state = 2181, .external_lex_state = 5}, [1494] = {.lex_state = 2181, .external_lex_state = 5}, - [1495] = {.lex_state = 2181, .external_lex_state = 4}, + [1495] = {.lex_state = 2181, .external_lex_state = 5}, [1496] = {.lex_state = 4, .external_lex_state = 5}, [1497] = {.lex_state = 4, .external_lex_state = 5}, - [1498] = {.lex_state = 2181, .external_lex_state = 4}, - [1499] = {.lex_state = 2181, .external_lex_state = 6}, - [1500] = {.lex_state = 2181, .external_lex_state = 5}, - [1501] = {.lex_state = 2181, .external_lex_state = 5}, - [1502] = {.lex_state = 2181, .external_lex_state = 5}, - [1503] = {.lex_state = 2181, .external_lex_state = 6}, - [1504] = {.lex_state = 2181, .external_lex_state = 4}, - [1505] = {.lex_state = 2181, .external_lex_state = 4}, - [1506] = {.lex_state = 2181, .external_lex_state = 4}, - [1507] = {.lex_state = 2181, .external_lex_state = 4}, - [1508] = {.lex_state = 2181, .external_lex_state = 4}, - [1509] = {.lex_state = 2181, .external_lex_state = 4}, - [1510] = {.lex_state = 2181, .external_lex_state = 4}, - [1511] = {.lex_state = 2181, .external_lex_state = 4}, - [1512] = {.lex_state = 2181, .external_lex_state = 4}, - [1513] = {.lex_state = 2181, .external_lex_state = 4}, - [1514] = {.lex_state = 2181, .external_lex_state = 4}, - [1515] = {.lex_state = 2181, .external_lex_state = 4}, - [1516] = {.lex_state = 2181, .external_lex_state = 4}, - [1517] = {.lex_state = 2181, .external_lex_state = 4}, - [1518] = {.lex_state = 2181, .external_lex_state = 4}, - [1519] = {.lex_state = 2181, .external_lex_state = 4}, - [1520] = {.lex_state = 2181, .external_lex_state = 4}, - [1521] = {.lex_state = 2181, .external_lex_state = 4}, - [1522] = {.lex_state = 2181, .external_lex_state = 4}, - [1523] = {.lex_state = 2181, .external_lex_state = 4}, - [1524] = {.lex_state = 2181, .external_lex_state = 4}, - [1525] = {.lex_state = 2181, .external_lex_state = 4}, - [1526] = {.lex_state = 2181, .external_lex_state = 4}, - [1527] = {.lex_state = 2181, .external_lex_state = 5}, - [1528] = {.lex_state = 2181, .external_lex_state = 5}, - [1529] = {.lex_state = 2181, .external_lex_state = 4}, - [1530] = {.lex_state = 2181, .external_lex_state = 4}, - [1531] = {.lex_state = 2181, .external_lex_state = 4}, - [1532] = {.lex_state = 2181, .external_lex_state = 4}, - [1533] = {.lex_state = 2181, .external_lex_state = 4}, - [1534] = {.lex_state = 2181, .external_lex_state = 4}, - [1535] = {.lex_state = 2181, .external_lex_state = 4}, - [1536] = {.lex_state = 2181, .external_lex_state = 4}, - [1537] = {.lex_state = 2181, .external_lex_state = 4}, - [1538] = {.lex_state = 2181, .external_lex_state = 5}, - [1539] = {.lex_state = 2181, .external_lex_state = 4}, - [1540] = {.lex_state = 2181, .external_lex_state = 4}, - [1541] = {.lex_state = 2181, .external_lex_state = 4}, - [1542] = {.lex_state = 2181, .external_lex_state = 4}, - [1543] = {.lex_state = 2181, .external_lex_state = 4}, - [1544] = {.lex_state = 2181, .external_lex_state = 5}, - [1545] = {.lex_state = 2181, .external_lex_state = 4}, - [1546] = {.lex_state = 2181, .external_lex_state = 4}, - [1547] = {.lex_state = 2181, .external_lex_state = 4}, - [1548] = {.lex_state = 2181, .external_lex_state = 4}, - [1549] = {.lex_state = 2181, .external_lex_state = 4}, - [1550] = {.lex_state = 2181, .external_lex_state = 4}, - [1551] = {.lex_state = 2181, .external_lex_state = 4}, - [1552] = {.lex_state = 2181, .external_lex_state = 5}, - [1553] = {.lex_state = 2181, .external_lex_state = 4}, - [1554] = {.lex_state = 2181, .external_lex_state = 4}, - [1555] = {.lex_state = 2181, .external_lex_state = 4}, - [1556] = {.lex_state = 2181, .external_lex_state = 4}, - [1557] = {.lex_state = 2181, .external_lex_state = 4}, + [1498] = {.lex_state = 2181, .external_lex_state = 6}, + [1499] = {.lex_state = 2181, .external_lex_state = 7}, + [1500] = {.lex_state = 2181, .external_lex_state = 7}, + [1501] = {.lex_state = 2181, .external_lex_state = 7}, + [1502] = {.lex_state = 2181, .external_lex_state = 7}, + [1503] = {.lex_state = 2181, .external_lex_state = 7}, + [1504] = {.lex_state = 2181, .external_lex_state = 7}, + [1505] = {.lex_state = 2181, .external_lex_state = 7}, + [1506] = {.lex_state = 2181, .external_lex_state = 7}, + [1507] = {.lex_state = 2181, .external_lex_state = 7}, + [1508] = {.lex_state = 2181, .external_lex_state = 7}, + [1509] = {.lex_state = 2181, .external_lex_state = 7}, + [1510] = {.lex_state = 2181, .external_lex_state = 7}, + [1511] = {.lex_state = 2181, .external_lex_state = 7}, + [1512] = {.lex_state = 2181, .external_lex_state = 7}, + [1513] = {.lex_state = 2181, .external_lex_state = 7}, + [1514] = {.lex_state = 2181, .external_lex_state = 7}, + [1515] = {.lex_state = 2181, .external_lex_state = 7}, + [1516] = {.lex_state = 2181, .external_lex_state = 7}, + [1517] = {.lex_state = 2181, .external_lex_state = 7}, + [1518] = {.lex_state = 2181, .external_lex_state = 7}, + [1519] = {.lex_state = 2181, .external_lex_state = 7}, + [1520] = {.lex_state = 2181, .external_lex_state = 7}, + [1521] = {.lex_state = 2181, .external_lex_state = 7}, + [1522] = {.lex_state = 2181, .external_lex_state = 5}, + [1523] = {.lex_state = 2181, .external_lex_state = 5}, + [1524] = {.lex_state = 2181, .external_lex_state = 7}, + [1525] = {.lex_state = 2181, .external_lex_state = 7}, + [1526] = {.lex_state = 2181, .external_lex_state = 7}, + [1527] = {.lex_state = 2181, .external_lex_state = 7}, + [1528] = {.lex_state = 2181, .external_lex_state = 7}, + [1529] = {.lex_state = 2181, .external_lex_state = 7}, + [1530] = {.lex_state = 2181, .external_lex_state = 7}, + [1531] = {.lex_state = 2181, .external_lex_state = 7}, + [1532] = {.lex_state = 2181, .external_lex_state = 7}, + [1533] = {.lex_state = 2181, .external_lex_state = 5}, + [1534] = {.lex_state = 2181, .external_lex_state = 7}, + [1535] = {.lex_state = 2181, .external_lex_state = 7}, + [1536] = {.lex_state = 2181, .external_lex_state = 7}, + [1537] = {.lex_state = 2181, .external_lex_state = 7}, + [1538] = {.lex_state = 2181, .external_lex_state = 7}, + [1539] = {.lex_state = 2181, .external_lex_state = 5}, + [1540] = {.lex_state = 2181, .external_lex_state = 7}, + [1541] = {.lex_state = 2181, .external_lex_state = 7}, + [1542] = {.lex_state = 2181, .external_lex_state = 7}, + [1543] = {.lex_state = 2181, .external_lex_state = 7}, + [1544] = {.lex_state = 2181, .external_lex_state = 7}, + [1545] = {.lex_state = 2181, .external_lex_state = 7}, + [1546] = {.lex_state = 2181, .external_lex_state = 7}, + [1547] = {.lex_state = 2181, .external_lex_state = 5}, + [1548] = {.lex_state = 2181, .external_lex_state = 7}, + [1549] = {.lex_state = 2181, .external_lex_state = 7}, + [1550] = {.lex_state = 2181, .external_lex_state = 7}, + [1551] = {.lex_state = 2181, .external_lex_state = 7}, + [1552] = {.lex_state = 2181, .external_lex_state = 7}, + [1553] = {.lex_state = 2181, .external_lex_state = 7}, + [1554] = {.lex_state = 2181, .external_lex_state = 5}, + [1555] = {.lex_state = 2181, .external_lex_state = 7}, + [1556] = {.lex_state = 2181, .external_lex_state = 7}, + [1557] = {.lex_state = 2181, .external_lex_state = 7}, [1558] = {.lex_state = 2181, .external_lex_state = 5}, - [1559] = {.lex_state = 2181, .external_lex_state = 4}, + [1559] = {.lex_state = 2181, .external_lex_state = 7}, [1560] = {.lex_state = 2181, .external_lex_state = 5}, - [1561] = {.lex_state = 2181, .external_lex_state = 4}, - [1562] = {.lex_state = 2181, .external_lex_state = 4}, - [1563] = {.lex_state = 2181, .external_lex_state = 4}, - [1564] = {.lex_state = 2181, .external_lex_state = 4}, - [1565] = {.lex_state = 2181, .external_lex_state = 5}, - [1566] = {.lex_state = 2181, .external_lex_state = 4}, - [1567] = {.lex_state = 2181, .external_lex_state = 4}, - [1568] = {.lex_state = 2181, .external_lex_state = 5}, - [1569] = {.lex_state = 2181, .external_lex_state = 4}, - [1570] = {.lex_state = 2181, .external_lex_state = 4}, - [1571] = {.lex_state = 2181, .external_lex_state = 7}, - [1572] = {.lex_state = 2181, .external_lex_state = 7}, - [1573] = {.lex_state = 2181, .external_lex_state = 7}, - [1574] = {.lex_state = 2181, .external_lex_state = 7}, - [1575] = {.lex_state = 2181, .external_lex_state = 7}, - [1576] = {.lex_state = 2181, .external_lex_state = 7}, - [1577] = {.lex_state = 2181, .external_lex_state = 7}, - [1578] = {.lex_state = 2181, .external_lex_state = 7}, - [1579] = {.lex_state = 2181, .external_lex_state = 7}, + [1561] = {.lex_state = 2181, .external_lex_state = 7}, + [1562] = {.lex_state = 2181, .external_lex_state = 7}, + [1563] = {.lex_state = 2181, .external_lex_state = 5}, + [1564] = {.lex_state = 2181, .external_lex_state = 7}, + [1565] = {.lex_state = 2181, .external_lex_state = 7}, + [1566] = {.lex_state = 2181, .external_lex_state = 8}, + [1567] = {.lex_state = 2181, .external_lex_state = 8}, + [1568] = {.lex_state = 2181, .external_lex_state = 8}, + [1569] = {.lex_state = 2181, .external_lex_state = 8}, + [1570] = {.lex_state = 2181, .external_lex_state = 8}, + [1571] = {.lex_state = 2181, .external_lex_state = 8}, + [1572] = {.lex_state = 2181, .external_lex_state = 8}, + [1573] = {.lex_state = 2181, .external_lex_state = 8}, + [1574] = {.lex_state = 2181, .external_lex_state = 8}, + [1575] = {.lex_state = 2181, .external_lex_state = 8}, + [1576] = {.lex_state = 2181, .external_lex_state = 8}, + [1577] = {.lex_state = 2181, .external_lex_state = 8}, + [1578] = {.lex_state = 2181, .external_lex_state = 8}, + [1579] = {.lex_state = 2181, .external_lex_state = 8}, [1580] = {.lex_state = 2181, .external_lex_state = 7}, - [1581] = {.lex_state = 2181, .external_lex_state = 7}, + [1581] = {.lex_state = 2181, .external_lex_state = 5}, [1582] = {.lex_state = 2181, .external_lex_state = 7}, - [1583] = {.lex_state = 2181, .external_lex_state = 7}, - [1584] = {.lex_state = 2181, .external_lex_state = 7}, - [1585] = {.lex_state = 2181, .external_lex_state = 4}, + [1583] = {.lex_state = 2181, .external_lex_state = 8}, + [1584] = {.lex_state = 2181, .external_lex_state = 8}, + [1585] = {.lex_state = 2181, .external_lex_state = 8}, [1586] = {.lex_state = 2181, .external_lex_state = 5}, - [1587] = {.lex_state = 2181, .external_lex_state = 4}, - [1588] = {.lex_state = 2181, .external_lex_state = 7}, - [1589] = {.lex_state = 2181, .external_lex_state = 7}, - [1590] = {.lex_state = 2181, .external_lex_state = 7}, - [1591] = {.lex_state = 2181, .external_lex_state = 5}, - [1592] = {.lex_state = 2181, .external_lex_state = 7}, - [1593] = {.lex_state = 2181, .external_lex_state = 7}, - [1594] = {.lex_state = 2181, .external_lex_state = 7}, - [1595] = {.lex_state = 2181, .external_lex_state = 5}, - [1596] = {.lex_state = 2181, .external_lex_state = 7}, - [1597] = {.lex_state = 2181, .external_lex_state = 7}, - [1598] = {.lex_state = 2181, .external_lex_state = 7}, - [1599] = {.lex_state = 2181, .external_lex_state = 7}, - [1600] = {.lex_state = 2181, .external_lex_state = 7}, - [1601] = {.lex_state = 2181, .external_lex_state = 7}, - [1602] = {.lex_state = 2181, .external_lex_state = 7}, - [1603] = {.lex_state = 2181, .external_lex_state = 7}, - [1604] = {.lex_state = 2181, .external_lex_state = 7}, - [1605] = {.lex_state = 2181, .external_lex_state = 7}, - [1606] = {.lex_state = 2181, .external_lex_state = 7}, - [1607] = {.lex_state = 2181, .external_lex_state = 7}, - [1608] = {.lex_state = 2181, .external_lex_state = 5}, - [1609] = {.lex_state = 2181, .external_lex_state = 7}, - [1610] = {.lex_state = 2181, .external_lex_state = 7}, - [1611] = {.lex_state = 2181, .external_lex_state = 7}, - [1612] = {.lex_state = 2181, .external_lex_state = 7}, - [1613] = {.lex_state = 2181, .external_lex_state = 7}, - [1614] = {.lex_state = 2181, .external_lex_state = 7}, - [1615] = {.lex_state = 2181, .external_lex_state = 7}, - [1616] = {.lex_state = 2181, .external_lex_state = 7}, - [1617] = {.lex_state = 2181, .external_lex_state = 7}, - [1618] = {.lex_state = 2181, .external_lex_state = 7}, - [1619] = {.lex_state = 2181, .external_lex_state = 7}, - [1620] = {.lex_state = 2181, .external_lex_state = 7}, - [1621] = {.lex_state = 2181, .external_lex_state = 7}, - [1622] = {.lex_state = 2181, .external_lex_state = 7}, - [1623] = {.lex_state = 2181, .external_lex_state = 5}, - [1624] = {.lex_state = 2181, .external_lex_state = 7}, - [1625] = {.lex_state = 2181, .external_lex_state = 7}, - [1626] = {.lex_state = 2181, .external_lex_state = 7}, - [1627] = {.lex_state = 2181, .external_lex_state = 7}, - [1628] = {.lex_state = 2181, .external_lex_state = 7}, - [1629] = {.lex_state = 2181, .external_lex_state = 7}, - [1630] = {.lex_state = 2181, .external_lex_state = 7}, - [1631] = {.lex_state = 2181, .external_lex_state = 7}, - [1632] = {.lex_state = 2181, .external_lex_state = 7}, - [1633] = {.lex_state = 2181, .external_lex_state = 7}, - [1634] = {.lex_state = 2181, .external_lex_state = 7}, - [1635] = {.lex_state = 2181, .external_lex_state = 7}, - [1636] = {.lex_state = 2181, .external_lex_state = 7}, - [1637] = {.lex_state = 2181, .external_lex_state = 7}, - [1638] = {.lex_state = 2181, .external_lex_state = 7}, - [1639] = {.lex_state = 2181, .external_lex_state = 7}, - [1640] = {.lex_state = 2181, .external_lex_state = 7}, - [1641] = {.lex_state = 2181, .external_lex_state = 7}, - [1642] = {.lex_state = 2181, .external_lex_state = 7}, - [1643] = {.lex_state = 2181, .external_lex_state = 7}, - [1644] = {.lex_state = 2181, .external_lex_state = 7}, - [1645] = {.lex_state = 2181, .external_lex_state = 7}, - [1646] = {.lex_state = 2181, .external_lex_state = 7}, + [1587] = {.lex_state = 2181, .external_lex_state = 8}, + [1588] = {.lex_state = 2181, .external_lex_state = 8}, + [1589] = {.lex_state = 2181, .external_lex_state = 8}, + [1590] = {.lex_state = 2181, .external_lex_state = 8}, + [1591] = {.lex_state = 2181, .external_lex_state = 8}, + [1592] = {.lex_state = 2181, .external_lex_state = 8}, + [1593] = {.lex_state = 2181, .external_lex_state = 8}, + [1594] = {.lex_state = 2181, .external_lex_state = 8}, + [1595] = {.lex_state = 2181, .external_lex_state = 8}, + [1596] = {.lex_state = 2181, .external_lex_state = 8}, + [1597] = {.lex_state = 2181, .external_lex_state = 8}, + [1598] = {.lex_state = 2181, .external_lex_state = 8}, + [1599] = {.lex_state = 2181, .external_lex_state = 8}, + [1600] = {.lex_state = 2181, .external_lex_state = 8}, + [1601] = {.lex_state = 2181, .external_lex_state = 8}, + [1602] = {.lex_state = 2181, .external_lex_state = 5}, + [1603] = {.lex_state = 2181, .external_lex_state = 8}, + [1604] = {.lex_state = 2181, .external_lex_state = 8}, + [1605] = {.lex_state = 2181, .external_lex_state = 8}, + [1606] = {.lex_state = 2181, .external_lex_state = 8}, + [1607] = {.lex_state = 2181, .external_lex_state = 8}, + [1608] = {.lex_state = 2181, .external_lex_state = 8}, + [1609] = {.lex_state = 2181, .external_lex_state = 8}, + [1610] = {.lex_state = 2181, .external_lex_state = 8}, + [1611] = {.lex_state = 2181, .external_lex_state = 8}, + [1612] = {.lex_state = 2181, .external_lex_state = 8}, + [1613] = {.lex_state = 2181, .external_lex_state = 8}, + [1614] = {.lex_state = 2181, .external_lex_state = 8}, + [1615] = {.lex_state = 2181, .external_lex_state = 8}, + [1616] = {.lex_state = 2181, .external_lex_state = 8}, + [1617] = {.lex_state = 2181, .external_lex_state = 5}, + [1618] = {.lex_state = 2181, .external_lex_state = 8}, + [1619] = {.lex_state = 2181, .external_lex_state = 8}, + [1620] = {.lex_state = 2181, .external_lex_state = 8}, + [1621] = {.lex_state = 2181, .external_lex_state = 8}, + [1622] = {.lex_state = 2181, .external_lex_state = 8}, + [1623] = {.lex_state = 2181, .external_lex_state = 8}, + [1624] = {.lex_state = 2181, .external_lex_state = 8}, + [1625] = {.lex_state = 2181, .external_lex_state = 8}, + [1626] = {.lex_state = 2181, .external_lex_state = 8}, + [1627] = {.lex_state = 2181, .external_lex_state = 8}, + [1628] = {.lex_state = 2181, .external_lex_state = 8}, + [1629] = {.lex_state = 2181, .external_lex_state = 8}, + [1630] = {.lex_state = 2181, .external_lex_state = 8}, + [1631] = {.lex_state = 2181, .external_lex_state = 8}, + [1632] = {.lex_state = 2181, .external_lex_state = 8}, + [1633] = {.lex_state = 2181, .external_lex_state = 8}, + [1634] = {.lex_state = 2181, .external_lex_state = 8}, + [1635] = {.lex_state = 2181, .external_lex_state = 8}, + [1636] = {.lex_state = 2181, .external_lex_state = 8}, + [1637] = {.lex_state = 2181, .external_lex_state = 8}, + [1638] = {.lex_state = 2181, .external_lex_state = 8}, + [1639] = {.lex_state = 2181, .external_lex_state = 8}, + [1640] = {.lex_state = 2181, .external_lex_state = 8}, + [1641] = {.lex_state = 2181, .external_lex_state = 5}, + [1642] = {.lex_state = 2181, .external_lex_state = 8}, + [1643] = {.lex_state = 2181, .external_lex_state = 5}, + [1644] = {.lex_state = 2181, .external_lex_state = 8}, + [1645] = {.lex_state = 2181, .external_lex_state = 8}, + [1646] = {.lex_state = 2181, .external_lex_state = 5}, [1647] = {.lex_state = 2181, .external_lex_state = 5}, - [1648] = {.lex_state = 2181, .external_lex_state = 7}, + [1648] = {.lex_state = 2181, .external_lex_state = 5}, [1649] = {.lex_state = 2181, .external_lex_state = 5}, - [1650] = {.lex_state = 2181, .external_lex_state = 7}, - [1651] = {.lex_state = 2181, .external_lex_state = 7}, - [1652] = {.lex_state = 2181, .external_lex_state = 5}, - [1653] = {.lex_state = 2181, .external_lex_state = 5}, - [1654] = {.lex_state = 2181, .external_lex_state = 5}, + [1650] = {.lex_state = 2181, .external_lex_state = 5}, + [1651] = {.lex_state = 2181, .external_lex_state = 5}, + [1652] = {.lex_state = 2181, .external_lex_state = 9}, + [1653] = {.lex_state = 2181, .external_lex_state = 9}, + [1654] = {.lex_state = 2181, .external_lex_state = 9}, [1655] = {.lex_state = 2181, .external_lex_state = 5}, - [1656] = {.lex_state = 2181, .external_lex_state = 5}, - [1657] = {.lex_state = 2181, .external_lex_state = 5}, - [1658] = {.lex_state = 2181, .external_lex_state = 8}, - [1659] = {.lex_state = 2181, .external_lex_state = 8}, - [1660] = {.lex_state = 2181, .external_lex_state = 8}, - [1661] = {.lex_state = 2181, .external_lex_state = 5}, - [1662] = {.lex_state = 2181, .external_lex_state = 8}, - [1663] = {.lex_state = 2181, .external_lex_state = 8}, - [1664] = {.lex_state = 2181, .external_lex_state = 8}, - [1665] = {.lex_state = 2181, .external_lex_state = 8}, + [1656] = {.lex_state = 2181, .external_lex_state = 9}, + [1657] = {.lex_state = 2181, .external_lex_state = 9}, + [1658] = {.lex_state = 2181, .external_lex_state = 9}, + [1659] = {.lex_state = 2181, .external_lex_state = 9}, + [1660] = {.lex_state = 2181, .external_lex_state = 9}, + [1661] = {.lex_state = 2181, .external_lex_state = 9}, + [1662] = {.lex_state = 2181, .external_lex_state = 9}, + [1663] = {.lex_state = 2181, .external_lex_state = 9}, + [1664] = {.lex_state = 2181, .external_lex_state = 9}, + [1665] = {.lex_state = 2181, .external_lex_state = 9}, [1666] = {.lex_state = 2181, .external_lex_state = 8}, [1667] = {.lex_state = 2181, .external_lex_state = 8}, - [1668] = {.lex_state = 2181, .external_lex_state = 8}, - [1669] = {.lex_state = 2181, .external_lex_state = 8}, - [1670] = {.lex_state = 2181, .external_lex_state = 8}, - [1671] = {.lex_state = 2181, .external_lex_state = 8}, - [1672] = {.lex_state = 2181, .external_lex_state = 7}, - [1673] = {.lex_state = 2181, .external_lex_state = 7}, - [1674] = {.lex_state = 2181, .external_lex_state = 8}, - [1675] = {.lex_state = 2181, .external_lex_state = 8}, - [1676] = {.lex_state = 2181, .external_lex_state = 8}, - [1677] = {.lex_state = 2181, .external_lex_state = 8}, - [1678] = {.lex_state = 2181, .external_lex_state = 8}, - [1679] = {.lex_state = 2181, .external_lex_state = 8}, - [1680] = {.lex_state = 2181, .external_lex_state = 8}, - [1681] = {.lex_state = 2181, .external_lex_state = 8}, - [1682] = {.lex_state = 2181, .external_lex_state = 8}, - [1683] = {.lex_state = 2181, .external_lex_state = 8}, - [1684] = {.lex_state = 2181, .external_lex_state = 8}, - [1685] = {.lex_state = 2181, .external_lex_state = 8}, - [1686] = {.lex_state = 2181, .external_lex_state = 8}, - [1687] = {.lex_state = 2181, .external_lex_state = 8}, - [1688] = {.lex_state = 2181, .external_lex_state = 8}, - [1689] = {.lex_state = 2181, .external_lex_state = 8}, - [1690] = {.lex_state = 2181, .external_lex_state = 8}, - [1691] = {.lex_state = 2181, .external_lex_state = 8}, - [1692] = {.lex_state = 2181, .external_lex_state = 8}, - [1693] = {.lex_state = 2181, .external_lex_state = 8}, - [1694] = {.lex_state = 2181, .external_lex_state = 8}, - [1695] = {.lex_state = 2181, .external_lex_state = 8}, - [1696] = {.lex_state = 2181, .external_lex_state = 8}, - [1697] = {.lex_state = 2181, .external_lex_state = 8}, - [1698] = {.lex_state = 2181, .external_lex_state = 8}, - [1699] = {.lex_state = 2181, .external_lex_state = 8}, - [1700] = {.lex_state = 2181, .external_lex_state = 8}, - [1701] = {.lex_state = 2181, .external_lex_state = 8}, - [1702] = {.lex_state = 2181, .external_lex_state = 8}, - [1703] = {.lex_state = 2181, .external_lex_state = 8}, - [1704] = {.lex_state = 2181, .external_lex_state = 8}, - [1705] = {.lex_state = 2181, .external_lex_state = 8}, - [1706] = {.lex_state = 2181, .external_lex_state = 8}, - [1707] = {.lex_state = 2181, .external_lex_state = 8}, - [1708] = {.lex_state = 2181, .external_lex_state = 8}, - [1709] = {.lex_state = 2181, .external_lex_state = 8}, - [1710] = {.lex_state = 2181, .external_lex_state = 8}, - [1711] = {.lex_state = 2181, .external_lex_state = 8}, - [1712] = {.lex_state = 2181, .external_lex_state = 8}, - [1713] = {.lex_state = 2181, .external_lex_state = 8}, - [1714] = {.lex_state = 2181, .external_lex_state = 8}, - [1715] = {.lex_state = 2181, .external_lex_state = 8}, - [1716] = {.lex_state = 2181, .external_lex_state = 8}, - [1717] = {.lex_state = 2181, .external_lex_state = 8}, - [1718] = {.lex_state = 2181, .external_lex_state = 8}, - [1719] = {.lex_state = 2181, .external_lex_state = 8}, - [1720] = {.lex_state = 2181, .external_lex_state = 8}, - [1721] = {.lex_state = 2181, .external_lex_state = 8}, - [1722] = {.lex_state = 2181, .external_lex_state = 8}, - [1723] = {.lex_state = 2181, .external_lex_state = 8}, - [1724] = {.lex_state = 2181, .external_lex_state = 8}, - [1725] = {.lex_state = 2181, .external_lex_state = 8}, - [1726] = {.lex_state = 2181, .external_lex_state = 8}, - [1727] = {.lex_state = 2181, .external_lex_state = 8}, - [1728] = {.lex_state = 2181, .external_lex_state = 5}, - [1729] = {.lex_state = 2181, .external_lex_state = 8}, - [1730] = {.lex_state = 2181, .external_lex_state = 5}, - [1731] = {.lex_state = 2181, .external_lex_state = 8}, - [1732] = {.lex_state = 2181, .external_lex_state = 8}, - [1733] = {.lex_state = 2181, .external_lex_state = 8}, - [1734] = {.lex_state = 2181, .external_lex_state = 8}, - [1735] = {.lex_state = 2181, .external_lex_state = 5}, - [1736] = {.lex_state = 2181, .external_lex_state = 9}, - [1737] = {.lex_state = 2181, .external_lex_state = 9}, - [1738] = {.lex_state = 2181, .external_lex_state = 9}, - [1739] = {.lex_state = 2181, .external_lex_state = 9}, - [1740] = {.lex_state = 2181, .external_lex_state = 9}, - [1741] = {.lex_state = 2181, .external_lex_state = 9}, - [1742] = {.lex_state = 2181, .external_lex_state = 9}, - [1743] = {.lex_state = 2181, .external_lex_state = 9}, - [1744] = {.lex_state = 2181, .external_lex_state = 9}, + [1668] = {.lex_state = 2181, .external_lex_state = 9}, + [1669] = {.lex_state = 2181, .external_lex_state = 9}, + [1670] = {.lex_state = 2181, .external_lex_state = 9}, + [1671] = {.lex_state = 2181, .external_lex_state = 9}, + [1672] = {.lex_state = 2181, .external_lex_state = 9}, + [1673] = {.lex_state = 2181, .external_lex_state = 9}, + [1674] = {.lex_state = 2181, .external_lex_state = 9}, + [1675] = {.lex_state = 2181, .external_lex_state = 9}, + [1676] = {.lex_state = 2181, .external_lex_state = 9}, + [1677] = {.lex_state = 2181, .external_lex_state = 9}, + [1678] = {.lex_state = 2181, .external_lex_state = 9}, + [1679] = {.lex_state = 2181, .external_lex_state = 9}, + [1680] = {.lex_state = 2181, .external_lex_state = 9}, + [1681] = {.lex_state = 2181, .external_lex_state = 9}, + [1682] = {.lex_state = 2181, .external_lex_state = 9}, + [1683] = {.lex_state = 2181, .external_lex_state = 9}, + [1684] = {.lex_state = 2181, .external_lex_state = 9}, + [1685] = {.lex_state = 2181, .external_lex_state = 9}, + [1686] = {.lex_state = 2181, .external_lex_state = 9}, + [1687] = {.lex_state = 2181, .external_lex_state = 9}, + [1688] = {.lex_state = 2181, .external_lex_state = 9}, + [1689] = {.lex_state = 2181, .external_lex_state = 9}, + [1690] = {.lex_state = 2181, .external_lex_state = 9}, + [1691] = {.lex_state = 2181, .external_lex_state = 9}, + [1692] = {.lex_state = 2181, .external_lex_state = 9}, + [1693] = {.lex_state = 2181, .external_lex_state = 9}, + [1694] = {.lex_state = 2181, .external_lex_state = 9}, + [1695] = {.lex_state = 2181, .external_lex_state = 9}, + [1696] = {.lex_state = 2181, .external_lex_state = 9}, + [1697] = {.lex_state = 2181, .external_lex_state = 9}, + [1698] = {.lex_state = 2181, .external_lex_state = 9}, + [1699] = {.lex_state = 2181, .external_lex_state = 9}, + [1700] = {.lex_state = 2181, .external_lex_state = 9}, + [1701] = {.lex_state = 2181, .external_lex_state = 9}, + [1702] = {.lex_state = 2181, .external_lex_state = 9}, + [1703] = {.lex_state = 2181, .external_lex_state = 9}, + [1704] = {.lex_state = 2181, .external_lex_state = 9}, + [1705] = {.lex_state = 2181, .external_lex_state = 9}, + [1706] = {.lex_state = 2181, .external_lex_state = 9}, + [1707] = {.lex_state = 2181, .external_lex_state = 9}, + [1708] = {.lex_state = 2181, .external_lex_state = 9}, + [1709] = {.lex_state = 2181, .external_lex_state = 9}, + [1710] = {.lex_state = 2181, .external_lex_state = 9}, + [1711] = {.lex_state = 2181, .external_lex_state = 9}, + [1712] = {.lex_state = 2181, .external_lex_state = 9}, + [1713] = {.lex_state = 2181, .external_lex_state = 9}, + [1714] = {.lex_state = 2181, .external_lex_state = 9}, + [1715] = {.lex_state = 2181, .external_lex_state = 9}, + [1716] = {.lex_state = 2181, .external_lex_state = 9}, + [1717] = {.lex_state = 2181, .external_lex_state = 9}, + [1718] = {.lex_state = 2181, .external_lex_state = 9}, + [1719] = {.lex_state = 2181, .external_lex_state = 9}, + [1720] = {.lex_state = 2181, .external_lex_state = 9}, + [1721] = {.lex_state = 2181, .external_lex_state = 9}, + [1722] = {.lex_state = 2181, .external_lex_state = 5}, + [1723] = {.lex_state = 2181, .external_lex_state = 9}, + [1724] = {.lex_state = 2181, .external_lex_state = 5}, + [1725] = {.lex_state = 2181, .external_lex_state = 9}, + [1726] = {.lex_state = 2181, .external_lex_state = 9}, + [1727] = {.lex_state = 2181, .external_lex_state = 9}, + [1728] = {.lex_state = 2181, .external_lex_state = 9}, + [1729] = {.lex_state = 2181, .external_lex_state = 5}, + [1730] = {.lex_state = 2181, .external_lex_state = 10}, + [1731] = {.lex_state = 2181, .external_lex_state = 5}, + [1732] = {.lex_state = 2181, .external_lex_state = 10}, + [1733] = {.lex_state = 2181, .external_lex_state = 10}, + [1734] = {.lex_state = 2181, .external_lex_state = 10}, + [1735] = {.lex_state = 2181, .external_lex_state = 10}, + [1736] = {.lex_state = 2181, .external_lex_state = 10}, + [1737] = {.lex_state = 2181, .external_lex_state = 10}, + [1738] = {.lex_state = 2181, .external_lex_state = 10}, + [1739] = {.lex_state = 2181, .external_lex_state = 10}, + [1740] = {.lex_state = 2181, .external_lex_state = 10}, + [1741] = {.lex_state = 2181, .external_lex_state = 10}, + [1742] = {.lex_state = 2181, .external_lex_state = 10}, + [1743] = {.lex_state = 2181, .external_lex_state = 10}, + [1744] = {.lex_state = 2181, .external_lex_state = 5}, [1745] = {.lex_state = 2181, .external_lex_state = 9}, - [1746] = {.lex_state = 2181, .external_lex_state = 9}, - [1747] = {.lex_state = 2181, .external_lex_state = 9}, - [1748] = {.lex_state = 2181, .external_lex_state = 9}, - [1749] = {.lex_state = 2181, .external_lex_state = 5}, - [1750] = {.lex_state = 2181, .external_lex_state = 8}, - [1751] = {.lex_state = 2181, .external_lex_state = 9}, - [1752] = {.lex_state = 2181, .external_lex_state = 9}, - [1753] = {.lex_state = 2181, .external_lex_state = 9}, - [1754] = {.lex_state = 2181, .external_lex_state = 9}, - [1755] = {.lex_state = 2181, .external_lex_state = 9}, - [1756] = {.lex_state = 2181, .external_lex_state = 9}, - [1757] = {.lex_state = 2181, .external_lex_state = 9}, - [1758] = {.lex_state = 2181, .external_lex_state = 9}, - [1759] = {.lex_state = 2181, .external_lex_state = 9}, - [1760] = {.lex_state = 2181, .external_lex_state = 9}, - [1761] = {.lex_state = 2181, .external_lex_state = 9}, - [1762] = {.lex_state = 2181, .external_lex_state = 9}, - [1763] = {.lex_state = 2181, .external_lex_state = 9}, - [1764] = {.lex_state = 2181, .external_lex_state = 9}, - [1765] = {.lex_state = 2181, .external_lex_state = 9}, - [1766] = {.lex_state = 2181, .external_lex_state = 9}, - [1767] = {.lex_state = 2181, .external_lex_state = 9}, - [1768] = {.lex_state = 2181, .external_lex_state = 9}, - [1769] = {.lex_state = 2181, .external_lex_state = 9}, - [1770] = {.lex_state = 2181, .external_lex_state = 9}, - [1771] = {.lex_state = 2181, .external_lex_state = 9}, - [1772] = {.lex_state = 2181, .external_lex_state = 5}, - [1773] = {.lex_state = 2181, .external_lex_state = 9}, - [1774] = {.lex_state = 2181, .external_lex_state = 9}, - [1775] = {.lex_state = 2181, .external_lex_state = 5}, - [1776] = {.lex_state = 2181, .external_lex_state = 9}, - [1777] = {.lex_state = 2181, .external_lex_state = 9}, - [1778] = {.lex_state = 2181, .external_lex_state = 9}, - [1779] = {.lex_state = 2181, .external_lex_state = 9}, - [1780] = {.lex_state = 2181, .external_lex_state = 9}, - [1781] = {.lex_state = 2181, .external_lex_state = 9}, - [1782] = {.lex_state = 2181, .external_lex_state = 9}, - [1783] = {.lex_state = 2181, .external_lex_state = 9}, - [1784] = {.lex_state = 2181, .external_lex_state = 9}, - [1785] = {.lex_state = 2181, .external_lex_state = 10}, + [1746] = {.lex_state = 2181, .external_lex_state = 10}, + [1747] = {.lex_state = 2181, .external_lex_state = 10}, + [1748] = {.lex_state = 2181, .external_lex_state = 10}, + [1749] = {.lex_state = 2181, .external_lex_state = 10}, + [1750] = {.lex_state = 2181, .external_lex_state = 10}, + [1751] = {.lex_state = 2181, .external_lex_state = 10}, + [1752] = {.lex_state = 2181, .external_lex_state = 10}, + [1753] = {.lex_state = 2181, .external_lex_state = 10}, + [1754] = {.lex_state = 2181, .external_lex_state = 10}, + [1755] = {.lex_state = 2181, .external_lex_state = 10}, + [1756] = {.lex_state = 2181, .external_lex_state = 10}, + [1757] = {.lex_state = 2181, .external_lex_state = 10}, + [1758] = {.lex_state = 2181, .external_lex_state = 10}, + [1759] = {.lex_state = 2181, .external_lex_state = 10}, + [1760] = {.lex_state = 2181, .external_lex_state = 10}, + [1761] = {.lex_state = 2181, .external_lex_state = 10}, + [1762] = {.lex_state = 2181, .external_lex_state = 10}, + [1763] = {.lex_state = 2181, .external_lex_state = 10}, + [1764] = {.lex_state = 2181, .external_lex_state = 10}, + [1765] = {.lex_state = 2181, .external_lex_state = 10}, + [1766] = {.lex_state = 2181, .external_lex_state = 10}, + [1767] = {.lex_state = 2181, .external_lex_state = 5}, + [1768] = {.lex_state = 2181, .external_lex_state = 10}, + [1769] = {.lex_state = 2181, .external_lex_state = 10}, + [1770] = {.lex_state = 2181, .external_lex_state = 5}, + [1771] = {.lex_state = 2181, .external_lex_state = 10}, + [1772] = {.lex_state = 2181, .external_lex_state = 10}, + [1773] = {.lex_state = 2181, .external_lex_state = 10}, + [1774] = {.lex_state = 2181, .external_lex_state = 10}, + [1775] = {.lex_state = 2181, .external_lex_state = 10}, + [1776] = {.lex_state = 2181, .external_lex_state = 10}, + [1777] = {.lex_state = 2181, .external_lex_state = 10}, + [1778] = {.lex_state = 2181, .external_lex_state = 10}, + [1779] = {.lex_state = 2181, .external_lex_state = 10}, + [1780] = {.lex_state = 2181, .external_lex_state = 10}, + [1781] = {.lex_state = 2181, .external_lex_state = 10}, + [1782] = {.lex_state = 2181, .external_lex_state = 10}, + [1783] = {.lex_state = 2181, .external_lex_state = 10}, + [1784] = {.lex_state = 2181, .external_lex_state = 10}, + [1785] = {.lex_state = 2181, .external_lex_state = 4}, [1786] = {.lex_state = 1}, [1787] = {.lex_state = 1}, [1788] = {.lex_state = 1}, @@ -28784,9 +28786,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1840] = {.lex_state = 1}, [1841] = {.lex_state = 1}, [1842] = {.lex_state = 1}, - [1843] = {.lex_state = 1}, + [1843] = {.lex_state = 1, .external_lex_state = 32}, [1844] = {.lex_state = 1}, - [1845] = {.lex_state = 1, .external_lex_state = 32}, + [1845] = {.lex_state = 1}, [1846] = {.lex_state = 1}, [1847] = {.lex_state = 1}, [1848] = {.lex_state = 1}, @@ -28799,157 +28801,157 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1855] = {.lex_state = 2, .external_lex_state = 33}, [1856] = {.lex_state = 2, .external_lex_state = 33}, [1857] = {.lex_state = 2, .external_lex_state = 33}, - [1858] = {.lex_state = 1}, + [1858] = {.lex_state = 2, .external_lex_state = 33}, [1859] = {.lex_state = 2, .external_lex_state = 33}, [1860] = {.lex_state = 2, .external_lex_state = 33}, [1861] = {.lex_state = 2, .external_lex_state = 33}, [1862] = {.lex_state = 2, .external_lex_state = 33}, - [1863] = {.lex_state = 1}, - [1864] = {.lex_state = 2, .external_lex_state = 33}, + [1863] = {.lex_state = 2, .external_lex_state = 33}, + [1864] = {.lex_state = 1}, [1865] = {.lex_state = 2, .external_lex_state = 33}, [1866] = {.lex_state = 2, .external_lex_state = 33}, [1867] = {.lex_state = 2, .external_lex_state = 33}, [1868] = {.lex_state = 2, .external_lex_state = 33}, [1869] = {.lex_state = 2, .external_lex_state = 33}, - [1870] = {.lex_state = 2, .external_lex_state = 33}, + [1870] = {.lex_state = 1}, [1871] = {.lex_state = 2, .external_lex_state = 33}, [1872] = {.lex_state = 2, .external_lex_state = 33}, [1873] = {.lex_state = 2, .external_lex_state = 33}, - [1874] = {.lex_state = 2, .external_lex_state = 33}, + [1874] = {.lex_state = 1}, [1875] = {.lex_state = 2, .external_lex_state = 33}, - [1876] = {.lex_state = 1}, + [1876] = {.lex_state = 2, .external_lex_state = 33}, [1877] = {.lex_state = 2, .external_lex_state = 33}, [1878] = {.lex_state = 2, .external_lex_state = 33}, [1879] = {.lex_state = 2, .external_lex_state = 33}, - [1880] = {.lex_state = 2, .external_lex_state = 33}, + [1880] = {.lex_state = 1}, [1881] = {.lex_state = 2, .external_lex_state = 33}, - [1882] = {.lex_state = 1}, + [1882] = {.lex_state = 2, .external_lex_state = 33}, [1883] = {.lex_state = 1, .external_lex_state = 32}, [1884] = {.lex_state = 1, .external_lex_state = 32}, - [1885] = {.lex_state = 1, .external_lex_state = 32}, - [1886] = {.lex_state = 1, .external_lex_state = 32}, - [1887] = {.lex_state = 1}, - [1888] = {.lex_state = 1, .external_lex_state = 32}, - [1889] = {.lex_state = 1}, - [1890] = {.lex_state = 1, .external_lex_state = 32}, - [1891] = {.lex_state = 1, .external_lex_state = 34}, + [1885] = {.lex_state = 1}, + [1886] = {.lex_state = 1, .external_lex_state = 34}, + [1887] = {.lex_state = 1, .external_lex_state = 32}, + [1888] = {.lex_state = 1}, + [1889] = {.lex_state = 1, .external_lex_state = 34}, + [1890] = {.lex_state = 1}, + [1891] = {.lex_state = 1, .external_lex_state = 32}, [1892] = {.lex_state = 1, .external_lex_state = 32}, - [1893] = {.lex_state = 1, .external_lex_state = 34}, - [1894] = {.lex_state = 1}, - [1895] = {.lex_state = 1}, - [1896] = {.lex_state = 6}, - [1897] = {.lex_state = 1}, - [1898] = {.lex_state = 1}, - [1899] = {.lex_state = 6}, + [1893] = {.lex_state = 1}, + [1894] = {.lex_state = 1, .external_lex_state = 32}, + [1895] = {.lex_state = 1, .external_lex_state = 32}, + [1896] = {.lex_state = 1}, + [1897] = {.lex_state = 6}, + [1898] = {.lex_state = 7}, + [1899] = {.lex_state = 1}, [1900] = {.lex_state = 1}, [1901] = {.lex_state = 1}, [1902] = {.lex_state = 1}, [1903] = {.lex_state = 1}, [1904] = {.lex_state = 1}, - [1905] = {.lex_state = 1}, - [1906] = {.lex_state = 1}, - [1907] = {.lex_state = 1, .external_lex_state = 32}, - [1908] = {.lex_state = 7}, + [1905] = {.lex_state = 6}, + [1906] = {.lex_state = 6}, + [1907] = {.lex_state = 1}, + [1908] = {.lex_state = 1}, [1909] = {.lex_state = 1}, - [1910] = {.lex_state = 7}, - [1911] = {.lex_state = 7}, - [1912] = {.lex_state = 6}, + [1910] = {.lex_state = 1}, + [1911] = {.lex_state = 1}, + [1912] = {.lex_state = 1}, [1913] = {.lex_state = 1}, [1914] = {.lex_state = 1}, - [1915] = {.lex_state = 1}, + [1915] = {.lex_state = 1, .external_lex_state = 32}, [1916] = {.lex_state = 1}, - [1917] = {.lex_state = 1}, - [1918] = {.lex_state = 1}, + [1917] = {.lex_state = 7}, + [1918] = {.lex_state = 7}, [1919] = {.lex_state = 1}, [1920] = {.lex_state = 1}, - [1921] = {.lex_state = 2, .external_lex_state = 35}, + [1921] = {.lex_state = 1, .external_lex_state = 32}, [1922] = {.lex_state = 1}, - [1923] = {.lex_state = 1}, - [1924] = {.lex_state = 2, .external_lex_state = 35}, - [1925] = {.lex_state = 1, .external_lex_state = 32}, - [1926] = {.lex_state = 2, .external_lex_state = 36}, - [1927] = {.lex_state = 7, .external_lex_state = 34}, - [1928] = {.lex_state = 2, .external_lex_state = 33}, - [1929] = {.lex_state = 6, .external_lex_state = 34}, - [1930] = {.lex_state = 1}, - [1931] = {.lex_state = 2, .external_lex_state = 33}, - [1932] = {.lex_state = 6, .external_lex_state = 32}, - [1933] = {.lex_state = 2, .external_lex_state = 33}, + [1923] = {.lex_state = 2, .external_lex_state = 35}, + [1924] = {.lex_state = 2, .external_lex_state = 36}, + [1925] = {.lex_state = 2, .external_lex_state = 36}, + [1926] = {.lex_state = 1}, + [1927] = {.lex_state = 2, .external_lex_state = 33}, + [1928] = {.lex_state = 7, .external_lex_state = 32}, + [1929] = {.lex_state = 2, .external_lex_state = 33}, + [1930] = {.lex_state = 2, .external_lex_state = 33}, + [1931] = {.lex_state = 1}, + [1932] = {.lex_state = 7, .external_lex_state = 34}, + [1933] = {.lex_state = 6, .external_lex_state = 34}, [1934] = {.lex_state = 2, .external_lex_state = 33}, - [1935] = {.lex_state = 7, .external_lex_state = 32}, + [1935] = {.lex_state = 6, .external_lex_state = 32}, [1936] = {.lex_state = 7}, - [1937] = {.lex_state = 6}, - [1938] = {.lex_state = 7}, + [1937] = {.lex_state = 7}, + [1938] = {.lex_state = 6}, [1939] = {.lex_state = 6}, [1940] = {.lex_state = 5, .external_lex_state = 37}, - [1941] = {.lex_state = 5, .external_lex_state = 37}, - [1942] = {.lex_state = 5, .external_lex_state = 38}, - [1943] = {.lex_state = 5, .external_lex_state = 39}, - [1944] = {.lex_state = 5, .external_lex_state = 39}, + [1941] = {.lex_state = 5, .external_lex_state = 38}, + [1942] = {.lex_state = 5, .external_lex_state = 37}, + [1943] = {.lex_state = 5, .external_lex_state = 38}, + [1944] = {.lex_state = 5, .external_lex_state = 37}, [1945] = {.lex_state = 5, .external_lex_state = 38}, - [1946] = {.lex_state = 5, .external_lex_state = 39}, + [1946] = {.lex_state = 5, .external_lex_state = 37}, [1947] = {.lex_state = 5, .external_lex_state = 38}, - [1948] = {.lex_state = 5, .external_lex_state = 39}, - [1949] = {.lex_state = 5, .external_lex_state = 38}, - [1950] = {.lex_state = 5, .external_lex_state = 39}, - [1951] = {.lex_state = 5, .external_lex_state = 38}, + [1948] = {.lex_state = 5, .external_lex_state = 38}, + [1949] = {.lex_state = 5, .external_lex_state = 37}, + [1950] = {.lex_state = 5, .external_lex_state = 38}, + [1951] = {.lex_state = 5, .external_lex_state = 37}, [1952] = {.lex_state = 5, .external_lex_state = 38}, - [1953] = {.lex_state = 5, .external_lex_state = 39}, + [1953] = {.lex_state = 5, .external_lex_state = 38}, [1954] = {.lex_state = 5, .external_lex_state = 38}, - [1955] = {.lex_state = 5, .external_lex_state = 39}, - [1956] = {.lex_state = 5, .external_lex_state = 39}, - [1957] = {.lex_state = 5, .external_lex_state = 38}, + [1955] = {.lex_state = 5, .external_lex_state = 37}, + [1956] = {.lex_state = 5, .external_lex_state = 37}, + [1957] = {.lex_state = 5, .external_lex_state = 37}, [1958] = {.lex_state = 5, .external_lex_state = 38}, - [1959] = {.lex_state = 5, .external_lex_state = 39}, + [1959] = {.lex_state = 5, .external_lex_state = 38}, [1960] = {.lex_state = 5, .external_lex_state = 38}, - [1961] = {.lex_state = 5, .external_lex_state = 39}, + [1961] = {.lex_state = 5, .external_lex_state = 37}, [1962] = {.lex_state = 5, .external_lex_state = 38}, - [1963] = {.lex_state = 5, .external_lex_state = 39}, - [1964] = {.lex_state = 5, .external_lex_state = 39}, - [1965] = {.lex_state = 5, .external_lex_state = 38}, - [1966] = {.lex_state = 5, .external_lex_state = 39}, - [1967] = {.lex_state = 5, .external_lex_state = 39}, + [1963] = {.lex_state = 5, .external_lex_state = 37}, + [1964] = {.lex_state = 5, .external_lex_state = 38}, + [1965] = {.lex_state = 5, .external_lex_state = 37}, + [1966] = {.lex_state = 5, .external_lex_state = 38}, + [1967] = {.lex_state = 5, .external_lex_state = 37}, [1968] = {.lex_state = 5, .external_lex_state = 38}, - [1969] = {.lex_state = 5, .external_lex_state = 39}, - [1970] = {.lex_state = 5, .external_lex_state = 39}, - [1971] = {.lex_state = 5, .external_lex_state = 38}, + [1969] = {.lex_state = 5, .external_lex_state = 37}, + [1970] = {.lex_state = 5, .external_lex_state = 38}, + [1971] = {.lex_state = 5, .external_lex_state = 37}, [1972] = {.lex_state = 5, .external_lex_state = 38}, - [1973] = {.lex_state = 5, .external_lex_state = 39}, + [1973] = {.lex_state = 5, .external_lex_state = 37}, [1974] = {.lex_state = 5, .external_lex_state = 38}, - [1975] = {.lex_state = 5, .external_lex_state = 39}, - [1976] = {.lex_state = 5, .external_lex_state = 38}, - [1977] = {.lex_state = 5, .external_lex_state = 39}, + [1975] = {.lex_state = 5, .external_lex_state = 37}, + [1976] = {.lex_state = 5, .external_lex_state = 37}, + [1977] = {.lex_state = 5, .external_lex_state = 37}, [1978] = {.lex_state = 5, .external_lex_state = 38}, - [1979] = {.lex_state = 5, .external_lex_state = 38}, - [1980] = {.lex_state = 5, .external_lex_state = 39}, - [1981] = {.lex_state = 5, .external_lex_state = 38}, - [1982] = {.lex_state = 5, .external_lex_state = 39}, - [1983] = {.lex_state = 5, .external_lex_state = 38}, - [1984] = {.lex_state = 5, .external_lex_state = 38}, - [1985] = {.lex_state = 5, .external_lex_state = 38}, - [1986] = {.lex_state = 5, .external_lex_state = 39}, - [1987] = {.lex_state = 5, .external_lex_state = 38}, - [1988] = {.lex_state = 5, .external_lex_state = 38}, - [1989] = {.lex_state = 5, .external_lex_state = 39}, - [1990] = {.lex_state = 5, .external_lex_state = 38}, + [1979] = {.lex_state = 5, .external_lex_state = 39}, + [1980] = {.lex_state = 5, .external_lex_state = 38}, + [1981] = {.lex_state = 5, .external_lex_state = 37}, + [1982] = {.lex_state = 5, .external_lex_state = 38}, + [1983] = {.lex_state = 5, .external_lex_state = 37}, + [1984] = {.lex_state = 5, .external_lex_state = 37}, + [1985] = {.lex_state = 5, .external_lex_state = 37}, + [1986] = {.lex_state = 5, .external_lex_state = 38}, + [1987] = {.lex_state = 5, .external_lex_state = 37}, + [1988] = {.lex_state = 5, .external_lex_state = 37}, + [1989] = {.lex_state = 5, .external_lex_state = 38}, + [1990] = {.lex_state = 5, .external_lex_state = 37}, [1991] = {.lex_state = 5, .external_lex_state = 39}, - [1992] = {.lex_state = 5, .external_lex_state = 37}, - [1993] = {.lex_state = 5, .external_lex_state = 37}, - [1994] = {.lex_state = 5, .external_lex_state = 37}, + [1992] = {.lex_state = 5, .external_lex_state = 39}, + [1993] = {.lex_state = 5, .external_lex_state = 40}, + [1994] = {.lex_state = 5, .external_lex_state = 41}, [1995] = {.lex_state = 2181}, [1996] = {.lex_state = 2181}, - [1997] = {.lex_state = 12}, + [1997] = {.lex_state = 2181}, [1998] = {.lex_state = 2181}, [1999] = {.lex_state = 2181}, [2000] = {.lex_state = 2181}, - [2001] = {.lex_state = 2181}, + [2001] = {.lex_state = 12}, [2002] = {.lex_state = 2181}, - [2003] = {.lex_state = 12}, + [2003] = {.lex_state = 2181}, [2004] = {.lex_state = 2181}, [2005] = {.lex_state = 2181}, [2006] = {.lex_state = 2181}, - [2007] = {.lex_state = 2181}, - [2008] = {.lex_state = 2181}, + [2007] = {.lex_state = 5, .external_lex_state = 38}, + [2008] = {.lex_state = 12}, [2009] = {.lex_state = 2181}, [2010] = {.lex_state = 2181}, [2011] = {.lex_state = 2181}, @@ -28960,14 +28962,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2016] = {.lex_state = 2181}, [2017] = {.lex_state = 2181}, [2018] = {.lex_state = 2181}, - [2019] = {.lex_state = 2181}, - [2020] = {.lex_state = 5, .external_lex_state = 40}, - [2021] = {.lex_state = 12}, - [2022] = {.lex_state = 2181}, - [2023] = {.lex_state = 5, .external_lex_state = 41}, + [2019] = {.lex_state = 12}, + [2020] = {.lex_state = 12}, + [2021] = {.lex_state = 2181}, + [2022] = {.lex_state = 12}, + [2023] = {.lex_state = 2181}, [2024] = {.lex_state = 2181}, [2025] = {.lex_state = 2181}, - [2026] = {.lex_state = 2181}, + [2026] = {.lex_state = 12}, [2027] = {.lex_state = 2181}, [2028] = {.lex_state = 2181}, [2029] = {.lex_state = 2181}, @@ -28977,80 +28979,80 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2033] = {.lex_state = 2181}, [2034] = {.lex_state = 2181}, [2035] = {.lex_state = 12}, - [2036] = {.lex_state = 12}, - [2037] = {.lex_state = 2181}, - [2038] = {.lex_state = 2181}, + [2036] = {.lex_state = 2181}, + [2037] = {.lex_state = 12}, + [2038] = {.lex_state = 12}, [2039] = {.lex_state = 2181}, [2040] = {.lex_state = 2181}, [2041] = {.lex_state = 2181}, - [2042] = {.lex_state = 2181}, + [2042] = {.lex_state = 5, .external_lex_state = 37}, [2043] = {.lex_state = 2181}, [2044] = {.lex_state = 2181}, [2045] = {.lex_state = 12}, - [2046] = {.lex_state = 12}, - [2047] = {.lex_state = 12}, + [2046] = {.lex_state = 2181}, + [2047] = {.lex_state = 2181}, [2048] = {.lex_state = 12}, - [2049] = {.lex_state = 12}, + [2049] = {.lex_state = 2181}, [2050] = {.lex_state = 12}, [2051] = {.lex_state = 2181}, [2052] = {.lex_state = 2181}, [2053] = {.lex_state = 2181}, [2054] = {.lex_state = 2181}, - [2055] = {.lex_state = 12}, + [2055] = {.lex_state = 2181}, [2056] = {.lex_state = 2181}, [2057] = {.lex_state = 12}, - [2058] = {.lex_state = 12}, + [2058] = {.lex_state = 8, .external_lex_state = 42}, [2059] = {.lex_state = 12}, - [2060] = {.lex_state = 12}, - [2061] = {.lex_state = 12}, - [2062] = {.lex_state = 8, .external_lex_state = 42}, - [2063] = {.lex_state = 8, .external_lex_state = 42}, - [2064] = {.lex_state = 2181}, - [2065] = {.lex_state = 5, .external_lex_state = 38}, - [2066] = {.lex_state = 8, .external_lex_state = 42}, - [2067] = {.lex_state = 12}, + [2060] = {.lex_state = 8, .external_lex_state = 42}, + [2061] = {.lex_state = 8, .external_lex_state = 42}, + [2062] = {.lex_state = 12}, + [2063] = {.lex_state = 5, .external_lex_state = 43}, + [2064] = {.lex_state = 8, .external_lex_state = 42}, + [2065] = {.lex_state = 8, .external_lex_state = 42}, + [2066] = {.lex_state = 12}, + [2067] = {.lex_state = 8, .external_lex_state = 42}, [2068] = {.lex_state = 12}, - [2069] = {.lex_state = 5, .external_lex_state = 43}, + [2069] = {.lex_state = 8, .external_lex_state = 42}, [2070] = {.lex_state = 8, .external_lex_state = 42}, - [2071] = {.lex_state = 8, .external_lex_state = 42}, + [2071] = {.lex_state = 12}, [2072] = {.lex_state = 8, .external_lex_state = 42}, - [2073] = {.lex_state = 8, .external_lex_state = 42}, + [2073] = {.lex_state = 12}, [2074] = {.lex_state = 8, .external_lex_state = 42}, - [2075] = {.lex_state = 12}, - [2076] = {.lex_state = 12}, - [2077] = {.lex_state = 8, .external_lex_state = 42}, + [2075] = {.lex_state = 8, .external_lex_state = 42}, + [2076] = {.lex_state = 8, .external_lex_state = 42}, + [2077] = {.lex_state = 12}, [2078] = {.lex_state = 12}, - [2079] = {.lex_state = 12}, + [2079] = {.lex_state = 8, .external_lex_state = 42}, [2080] = {.lex_state = 12}, - [2081] = {.lex_state = 8, .external_lex_state = 42}, + [2081] = {.lex_state = 12}, [2082] = {.lex_state = 12}, - [2083] = {.lex_state = 8, .external_lex_state = 42}, - [2084] = {.lex_state = 8, .external_lex_state = 42}, + [2083] = {.lex_state = 12}, + [2084] = {.lex_state = 12}, [2085] = {.lex_state = 8, .external_lex_state = 42}, [2086] = {.lex_state = 8, .external_lex_state = 42}, - [2087] = {.lex_state = 12}, - [2088] = {.lex_state = 12}, + [2087] = {.lex_state = 8, .external_lex_state = 42}, + [2088] = {.lex_state = 2181}, [2089] = {.lex_state = 8, .external_lex_state = 42}, - [2090] = {.lex_state = 12}, + [2090] = {.lex_state = 8, .external_lex_state = 42}, [2091] = {.lex_state = 12}, - [2092] = {.lex_state = 8, .external_lex_state = 42}, + [2092] = {.lex_state = 12}, [2093] = {.lex_state = 8, .external_lex_state = 42}, [2094] = {.lex_state = 8, .external_lex_state = 42}, - [2095] = {.lex_state = 3, .external_lex_state = 34}, + [2095] = {.lex_state = 12}, [2096] = {.lex_state = 8, .external_lex_state = 42}, [2097] = {.lex_state = 12}, [2098] = {.lex_state = 12}, - [2099] = {.lex_state = 8, .external_lex_state = 42}, - [2100] = {.lex_state = 12}, - [2101] = {.lex_state = 12}, - [2102] = {.lex_state = 8, .external_lex_state = 42}, + [2099] = {.lex_state = 12}, + [2100] = {.lex_state = 8, .external_lex_state = 42}, + [2101] = {.lex_state = 8, .external_lex_state = 42}, + [2102] = {.lex_state = 12}, [2103] = {.lex_state = 8, .external_lex_state = 42}, - [2104] = {.lex_state = 8, .external_lex_state = 42}, - [2105] = {.lex_state = 5, .external_lex_state = 39}, + [2104] = {.lex_state = 12}, + [2105] = {.lex_state = 12}, [2106] = {.lex_state = 12}, - [2107] = {.lex_state = 12}, - [2108] = {.lex_state = 8, .external_lex_state = 42}, - [2109] = {.lex_state = 8, .external_lex_state = 42}, + [2107] = {.lex_state = 8, .external_lex_state = 42}, + [2108] = {.lex_state = 12}, + [2109] = {.lex_state = 12}, [2110] = {.lex_state = 12}, [2111] = {.lex_state = 12}, [2112] = {.lex_state = 12}, @@ -29062,19 +29064,19 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2118] = {.lex_state = 12}, [2119] = {.lex_state = 12}, [2120] = {.lex_state = 12}, - [2121] = {.lex_state = 5, .external_lex_state = 37}, + [2121] = {.lex_state = 12}, [2122] = {.lex_state = 12}, [2123] = {.lex_state = 12}, - [2124] = {.lex_state = 12}, + [2124] = {.lex_state = 3, .external_lex_state = 34}, [2125] = {.lex_state = 12}, [2126] = {.lex_state = 12}, - [2127] = {.lex_state = 12}, + [2127] = {.lex_state = 5, .external_lex_state = 39}, [2128] = {.lex_state = 12}, [2129] = {.lex_state = 12}, [2130] = {.lex_state = 12}, [2131] = {.lex_state = 12}, [2132] = {.lex_state = 12}, - [2133] = {.lex_state = 3}, + [2133] = {.lex_state = 12}, [2134] = {.lex_state = 12}, [2135] = {.lex_state = 12}, [2136] = {.lex_state = 12}, @@ -29087,16 +29089,16 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2143] = {.lex_state = 12}, [2144] = {.lex_state = 12}, [2145] = {.lex_state = 12}, - [2146] = {.lex_state = 12}, - [2147] = {.lex_state = 12}, - [2148] = {.lex_state = 12}, - [2149] = {.lex_state = 8, .external_lex_state = 44}, + [2146] = {.lex_state = 3}, + [2147] = {.lex_state = 8, .external_lex_state = 44}, + [2148] = {.lex_state = 2181}, + [2149] = {.lex_state = 2181}, [2150] = {.lex_state = 2181}, [2151] = {.lex_state = 2181}, [2152] = {.lex_state = 2181}, - [2153] = {.lex_state = 2181}, + [2153] = {.lex_state = 12}, [2154] = {.lex_state = 2181}, - [2155] = {.lex_state = 12}, + [2155] = {.lex_state = 2181}, [2156] = {.lex_state = 2181}, [2157] = {.lex_state = 2181}, [2158] = {.lex_state = 2181}, @@ -29115,21 +29117,21 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2171] = {.lex_state = 2181}, [2172] = {.lex_state = 2181}, [2173] = {.lex_state = 2181}, - [2174] = {.lex_state = 12}, + [2174] = {.lex_state = 2181}, [2175] = {.lex_state = 2181}, - [2176] = {.lex_state = 12}, + [2176] = {.lex_state = 2181}, [2177] = {.lex_state = 2181}, [2178] = {.lex_state = 2181}, - [2179] = {.lex_state = 2181}, + [2179] = {.lex_state = 12}, [2180] = {.lex_state = 2181}, - [2181] = {.lex_state = 12}, - [2182] = {.lex_state = 2181}, - [2183] = {.lex_state = 12}, - [2184] = {.lex_state = 12}, - [2185] = {.lex_state = 8, .external_lex_state = 42}, - [2186] = {.lex_state = 8, .external_lex_state = 42}, + [2181] = {.lex_state = 2181}, + [2182] = {.lex_state = 8, .external_lex_state = 42}, + [2183] = {.lex_state = 2181}, + [2184] = {.lex_state = 2181}, + [2185] = {.lex_state = 12}, + [2186] = {.lex_state = 2181}, [2187] = {.lex_state = 2181}, - [2188] = {.lex_state = 12}, + [2188] = {.lex_state = 2181}, [2189] = {.lex_state = 2181}, [2190] = {.lex_state = 12}, [2191] = {.lex_state = 2181}, @@ -29140,15 +29142,15 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2196] = {.lex_state = 2181}, [2197] = {.lex_state = 2181}, [2198] = {.lex_state = 2181}, - [2199] = {.lex_state = 12}, - [2200] = {.lex_state = 2181}, + [2199] = {.lex_state = 2181}, + [2200] = {.lex_state = 12}, [2201] = {.lex_state = 2181}, [2202] = {.lex_state = 2181}, [2203] = {.lex_state = 2181}, [2204] = {.lex_state = 2181}, [2205] = {.lex_state = 2181}, [2206] = {.lex_state = 2181}, - [2207] = {.lex_state = 12}, + [2207] = {.lex_state = 2181}, [2208] = {.lex_state = 2181}, [2209] = {.lex_state = 2181}, [2210] = {.lex_state = 2181}, @@ -29160,10 +29162,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2216] = {.lex_state = 2181}, [2217] = {.lex_state = 2181}, [2218] = {.lex_state = 2181}, - [2219] = {.lex_state = 12}, + [2219] = {.lex_state = 2181}, [2220] = {.lex_state = 2181}, [2221] = {.lex_state = 2181}, - [2222] = {.lex_state = 2181}, + [2222] = {.lex_state = 12}, [2223] = {.lex_state = 2181}, [2224] = {.lex_state = 2181}, [2225] = {.lex_state = 2181}, @@ -29175,20 +29177,20 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2231] = {.lex_state = 2181}, [2232] = {.lex_state = 2181}, [2233] = {.lex_state = 2181}, - [2234] = {.lex_state = 2181}, + [2234] = {.lex_state = 12}, [2235] = {.lex_state = 2181}, - [2236] = {.lex_state = 2181}, + [2236] = {.lex_state = 12}, [2237] = {.lex_state = 2181}, - [2238] = {.lex_state = 12}, - [2239] = {.lex_state = 2181}, + [2238] = {.lex_state = 2181}, + [2239] = {.lex_state = 12}, [2240] = {.lex_state = 2181}, [2241] = {.lex_state = 2181}, [2242] = {.lex_state = 2181}, - [2243] = {.lex_state = 2181}, + [2243] = {.lex_state = 12}, [2244] = {.lex_state = 2181}, [2245] = {.lex_state = 2181}, - [2246] = {.lex_state = 12}, - [2247] = {.lex_state = 12}, + [2246] = {.lex_state = 2181}, + [2247] = {.lex_state = 2181}, [2248] = {.lex_state = 2181}, [2249] = {.lex_state = 2181}, [2250] = {.lex_state = 2181}, @@ -29205,19 +29207,19 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2261] = {.lex_state = 2181}, [2262] = {.lex_state = 2181}, [2263] = {.lex_state = 2181}, - [2264] = {.lex_state = 2181}, + [2264] = {.lex_state = 12}, [2265] = {.lex_state = 2181}, - [2266] = {.lex_state = 12}, - [2267] = {.lex_state = 2181}, - [2268] = {.lex_state = 2181}, + [2266] = {.lex_state = 2181}, + [2267] = {.lex_state = 12}, + [2268] = {.lex_state = 12}, [2269] = {.lex_state = 2181}, [2270] = {.lex_state = 2181}, - [2271] = {.lex_state = 2181}, + [2271] = {.lex_state = 12}, [2272] = {.lex_state = 2181}, [2273] = {.lex_state = 2181}, - [2274] = {.lex_state = 12}, - [2275] = {.lex_state = 12}, - [2276] = {.lex_state = 12}, + [2274] = {.lex_state = 2181}, + [2275] = {.lex_state = 2181}, + [2276] = {.lex_state = 2181}, [2277] = {.lex_state = 2181}, [2278] = {.lex_state = 2181}, [2279] = {.lex_state = 12}, @@ -29227,13 +29229,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2283] = {.lex_state = 12}, [2284] = {.lex_state = 2181}, [2285] = {.lex_state = 2181}, - [2286] = {.lex_state = 2181}, + [2286] = {.lex_state = 12}, [2287] = {.lex_state = 2181}, [2288] = {.lex_state = 2181}, [2289] = {.lex_state = 2181}, [2290] = {.lex_state = 2181}, [2291] = {.lex_state = 2181}, - [2292] = {.lex_state = 12}, + [2292] = {.lex_state = 2181}, [2293] = {.lex_state = 2181}, [2294] = {.lex_state = 2181}, [2295] = {.lex_state = 2181}, @@ -29242,7 +29244,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2298] = {.lex_state = 2181}, [2299] = {.lex_state = 2181}, [2300] = {.lex_state = 2181}, - [2301] = {.lex_state = 12}, + [2301] = {.lex_state = 2181}, [2302] = {.lex_state = 2181}, [2303] = {.lex_state = 2181}, [2304] = {.lex_state = 2181}, @@ -29252,43 +29254,43 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2308] = {.lex_state = 2181}, [2309] = {.lex_state = 2181}, [2310] = {.lex_state = 2181}, - [2311] = {.lex_state = 2181}, + [2311] = {.lex_state = 12}, [2312] = {.lex_state = 2181}, [2313] = {.lex_state = 2181}, [2314] = {.lex_state = 2181}, [2315] = {.lex_state = 2181}, [2316] = {.lex_state = 2181}, [2317] = {.lex_state = 2181}, - [2318] = {.lex_state = 12}, - [2319] = {.lex_state = 12}, + [2318] = {.lex_state = 2181}, + [2319] = {.lex_state = 2181}, [2320] = {.lex_state = 2181}, [2321] = {.lex_state = 2181}, [2322] = {.lex_state = 2181}, [2323] = {.lex_state = 2181}, [2324] = {.lex_state = 2181}, - [2325] = {.lex_state = 2181}, + [2325] = {.lex_state = 12}, [2326] = {.lex_state = 2181}, - [2327] = {.lex_state = 12}, + [2327] = {.lex_state = 2181}, [2328] = {.lex_state = 2181}, - [2329] = {.lex_state = 2181}, - [2330] = {.lex_state = 2181}, + [2329] = {.lex_state = 12}, + [2330] = {.lex_state = 12}, [2331] = {.lex_state = 2181}, [2332] = {.lex_state = 2181}, [2333] = {.lex_state = 2181}, [2334] = {.lex_state = 2181}, [2335] = {.lex_state = 2181}, - [2336] = {.lex_state = 12}, + [2336] = {.lex_state = 2181}, [2337] = {.lex_state = 2181}, [2338] = {.lex_state = 2181}, - [2339] = {.lex_state = 2181}, + [2339] = {.lex_state = 12}, [2340] = {.lex_state = 2181}, [2341] = {.lex_state = 2181}, - [2342] = {.lex_state = 12}, + [2342] = {.lex_state = 2181}, [2343] = {.lex_state = 2181}, [2344] = {.lex_state = 2181}, [2345] = {.lex_state = 2181}, [2346] = {.lex_state = 2181}, - [2347] = {.lex_state = 2181}, + [2347] = {.lex_state = 12}, [2348] = {.lex_state = 2181}, [2349] = {.lex_state = 2181}, [2350] = {.lex_state = 2181}, @@ -29302,7 +29304,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2358] = {.lex_state = 2181}, [2359] = {.lex_state = 2181}, [2360] = {.lex_state = 2181}, - [2361] = {.lex_state = 2181}, + [2361] = {.lex_state = 12}, [2362] = {.lex_state = 2181}, [2363] = {.lex_state = 2181}, [2364] = {.lex_state = 2181}, @@ -29317,11 +29319,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2373] = {.lex_state = 2181}, [2374] = {.lex_state = 2181}, [2375] = {.lex_state = 2181}, - [2376] = {.lex_state = 2181}, - [2377] = {.lex_state = 2181}, + [2376] = {.lex_state = 12}, + [2377] = {.lex_state = 12}, [2378] = {.lex_state = 2181}, [2379] = {.lex_state = 2181}, - [2380] = {.lex_state = 2181}, + [2380] = {.lex_state = 12}, [2381] = {.lex_state = 12}, [2382] = {.lex_state = 2181}, [2383] = {.lex_state = 2181}, @@ -29335,7 +29337,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2391] = {.lex_state = 2181}, [2392] = {.lex_state = 2181}, [2393] = {.lex_state = 2181}, - [2394] = {.lex_state = 12}, + [2394] = {.lex_state = 2181}, [2395] = {.lex_state = 2181}, [2396] = {.lex_state = 2181}, [2397] = {.lex_state = 2181}, @@ -29345,45 +29347,45 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2401] = {.lex_state = 2181}, [2402] = {.lex_state = 2181}, [2403] = {.lex_state = 2181}, - [2404] = {.lex_state = 2181}, + [2404] = {.lex_state = 12}, [2405] = {.lex_state = 2181}, [2406] = {.lex_state = 2181}, [2407] = {.lex_state = 2181}, [2408] = {.lex_state = 2181}, - [2409] = {.lex_state = 2181}, - [2410] = {.lex_state = 2181}, - [2411] = {.lex_state = 2181}, + [2409] = {.lex_state = 8, .external_lex_state = 42}, + [2410] = {.lex_state = 12}, + [2411] = {.lex_state = 8, .external_lex_state = 42}, [2412] = {.lex_state = 2181}, [2413] = {.lex_state = 2181}, - [2414] = {.lex_state = 2181}, - [2415] = {.lex_state = 2181}, - [2416] = {.lex_state = 2181}, + [2414] = {.lex_state = 12}, + [2415] = {.lex_state = 12}, + [2416] = {.lex_state = 12}, [2417] = {.lex_state = 2181}, [2418] = {.lex_state = 2181}, - [2419] = {.lex_state = 8, .external_lex_state = 42}, + [2419] = {.lex_state = 2181}, [2420] = {.lex_state = 2181}, - [2421] = {.lex_state = 12}, + [2421] = {.lex_state = 2181}, [2422] = {.lex_state = 12}, [2423] = {.lex_state = 2181}, - [2424] = {.lex_state = 12}, + [2424] = {.lex_state = 2181}, [2425] = {.lex_state = 2181}, - [2426] = {.lex_state = 12}, + [2426] = {.lex_state = 2181}, [2427] = {.lex_state = 12}, - [2428] = {.lex_state = 2181}, - [2429] = {.lex_state = 12}, + [2428] = {.lex_state = 12}, + [2429] = {.lex_state = 10}, [2430] = {.lex_state = 12}, - [2431] = {.lex_state = 12}, + [2431] = {.lex_state = 2181}, [2432] = {.lex_state = 12}, - [2433] = {.lex_state = 12}, + [2433] = {.lex_state = 17}, [2434] = {.lex_state = 12}, [2435] = {.lex_state = 12}, [2436] = {.lex_state = 12}, [2437] = {.lex_state = 12}, [2438] = {.lex_state = 12}, - [2439] = {.lex_state = 17}, + [2439] = {.lex_state = 12}, [2440] = {.lex_state = 12}, - [2441] = {.lex_state = 2181}, - [2442] = {.lex_state = 10}, + [2441] = {.lex_state = 12}, + [2442] = {.lex_state = 12}, [2443] = {.lex_state = 12}, [2444] = {.lex_state = 12}, [2445] = {.lex_state = 12}, @@ -29394,7 +29396,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2450] = {.lex_state = 12}, [2451] = {.lex_state = 12}, [2452] = {.lex_state = 12}, - [2453] = {.lex_state = 12}, + [2453] = {.lex_state = 10}, [2454] = {.lex_state = 12}, [2455] = {.lex_state = 12}, [2456] = {.lex_state = 12}, @@ -29406,98 +29408,98 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2462] = {.lex_state = 12}, [2463] = {.lex_state = 12}, [2464] = {.lex_state = 12}, - [2465] = {.lex_state = 2181}, - [2466] = {.lex_state = 2181}, + [2465] = {.lex_state = 12}, + [2466] = {.lex_state = 12}, [2467] = {.lex_state = 12}, [2468] = {.lex_state = 12}, - [2469] = {.lex_state = 17}, - [2470] = {.lex_state = 2181}, - [2471] = {.lex_state = 2181}, - [2472] = {.lex_state = 2181}, - [2473] = {.lex_state = 2181}, - [2474] = {.lex_state = 17}, - [2475] = {.lex_state = 12}, - [2476] = {.lex_state = 12}, + [2469] = {.lex_state = 12}, + [2470] = {.lex_state = 12}, + [2471] = {.lex_state = 12}, + [2472] = {.lex_state = 12}, + [2473] = {.lex_state = 17}, + [2474] = {.lex_state = 2181}, + [2475] = {.lex_state = 2181}, + [2476] = {.lex_state = 2181}, [2477] = {.lex_state = 2181}, - [2478] = {.lex_state = 2181}, - [2479] = {.lex_state = 2181}, + [2478] = {.lex_state = 12}, + [2479] = {.lex_state = 17}, [2480] = {.lex_state = 2181}, - [2481] = {.lex_state = 12}, - [2482] = {.lex_state = 12}, - [2483] = {.lex_state = 17}, - [2484] = {.lex_state = 2181}, + [2481] = {.lex_state = 2181}, + [2482] = {.lex_state = 2181}, + [2483] = {.lex_state = 2181}, + [2484] = {.lex_state = 12}, [2485] = {.lex_state = 2181}, - [2486] = {.lex_state = 2181}, + [2486] = {.lex_state = 17}, [2487] = {.lex_state = 2181}, - [2488] = {.lex_state = 10}, - [2489] = {.lex_state = 17}, + [2488] = {.lex_state = 2181}, + [2489] = {.lex_state = 2181}, [2490] = {.lex_state = 2181}, [2491] = {.lex_state = 12}, - [2492] = {.lex_state = 2181}, + [2492] = {.lex_state = 17}, [2493] = {.lex_state = 2181}, - [2494] = {.lex_state = 12}, - [2495] = {.lex_state = 12}, - [2496] = {.lex_state = 17}, - [2497] = {.lex_state = 12}, - [2498] = {.lex_state = 2181}, + [2494] = {.lex_state = 2181}, + [2495] = {.lex_state = 2181}, + [2496] = {.lex_state = 2181}, + [2497] = {.lex_state = 2181}, + [2498] = {.lex_state = 17}, [2499] = {.lex_state = 2181}, [2500] = {.lex_state = 2181}, [2501] = {.lex_state = 2181}, - [2502] = {.lex_state = 12}, - [2503] = {.lex_state = 12}, - [2504] = {.lex_state = 17}, - [2505] = {.lex_state = 2181}, - [2506] = {.lex_state = 2181}, - [2507] = {.lex_state = 2181}, + [2502] = {.lex_state = 2181}, + [2503] = {.lex_state = 2181}, + [2504] = {.lex_state = 12}, + [2505] = {.lex_state = 12}, + [2506] = {.lex_state = 17}, + [2507] = {.lex_state = 12}, [2508] = {.lex_state = 2181}, - [2509] = {.lex_state = 12}, - [2510] = {.lex_state = 17}, - [2511] = {.lex_state = 12}, - [2512] = {.lex_state = 2181}, - [2513] = {.lex_state = 2181}, + [2509] = {.lex_state = 2181}, + [2510] = {.lex_state = 2181}, + [2511] = {.lex_state = 2181}, + [2512] = {.lex_state = 12}, + [2513] = {.lex_state = 17}, [2514] = {.lex_state = 2181}, [2515] = {.lex_state = 2181}, - [2516] = {.lex_state = 12}, - [2517] = {.lex_state = 17}, - [2518] = {.lex_state = 2181}, - [2519] = {.lex_state = 2181}, + [2516] = {.lex_state = 2181}, + [2517] = {.lex_state = 2181}, + [2518] = {.lex_state = 12}, + [2519] = {.lex_state = 17}, [2520] = {.lex_state = 2181}, [2521] = {.lex_state = 2181}, [2522] = {.lex_state = 2181}, - [2523] = {.lex_state = 17}, + [2523] = {.lex_state = 2181}, [2524] = {.lex_state = 12}, - [2525] = {.lex_state = 2181}, + [2525] = {.lex_state = 17}, [2526] = {.lex_state = 2181}, [2527] = {.lex_state = 2181}, [2528] = {.lex_state = 2181}, - [2529] = {.lex_state = 12}, - [2530] = {.lex_state = 17}, - [2531] = {.lex_state = 12}, - [2532] = {.lex_state = 2181}, - [2533] = {.lex_state = 2181}, + [2529] = {.lex_state = 2181}, + [2530] = {.lex_state = 12}, + [2531] = {.lex_state = 17}, + [2532] = {.lex_state = 12}, + [2533] = {.lex_state = 12}, [2534] = {.lex_state = 2181}, [2535] = {.lex_state = 2181}, - [2536] = {.lex_state = 12}, - [2537] = {.lex_state = 12}, + [2536] = {.lex_state = 2181}, + [2537] = {.lex_state = 2181}, [2538] = {.lex_state = 17}, - [2539] = {.lex_state = 12}, + [2539] = {.lex_state = 2181}, [2540] = {.lex_state = 2181}, [2541] = {.lex_state = 2181}, [2542] = {.lex_state = 2181}, [2543] = {.lex_state = 2181}, [2544] = {.lex_state = 2181}, - [2545] = {.lex_state = 2181}, + [2545] = {.lex_state = 12}, [2546] = {.lex_state = 2181}, [2547] = {.lex_state = 2181}, - [2548] = {.lex_state = 12}, + [2548] = {.lex_state = 2181}, [2549] = {.lex_state = 2181}, [2550] = {.lex_state = 2181}, - [2551] = {.lex_state = 10}, + [2551] = {.lex_state = 2181}, [2552] = {.lex_state = 2181}, - [2553] = {.lex_state = 12}, + [2553] = {.lex_state = 2181}, [2554] = {.lex_state = 2181}, [2555] = {.lex_state = 2181}, - [2556] = {.lex_state = 12}, + [2556] = {.lex_state = 2181}, [2557] = {.lex_state = 2181}, [2558] = {.lex_state = 2181}, [2559] = {.lex_state = 2181}, @@ -29508,42 +29510,42 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2564] = {.lex_state = 2181}, [2565] = {.lex_state = 2181}, [2566] = {.lex_state = 2181}, - [2567] = {.lex_state = 2181}, + [2567] = {.lex_state = 12}, [2568] = {.lex_state = 2181}, - [2569] = {.lex_state = 2181}, + [2569] = {.lex_state = 12}, [2570] = {.lex_state = 2181}, [2571] = {.lex_state = 2181}, [2572] = {.lex_state = 2181}, - [2573] = {.lex_state = 12}, + [2573] = {.lex_state = 2181}, [2574] = {.lex_state = 2181}, - [2575] = {.lex_state = 2181}, + [2575] = {.lex_state = 12}, [2576] = {.lex_state = 2181}, [2577] = {.lex_state = 2181}, [2578] = {.lex_state = 2181}, [2579] = {.lex_state = 2181}, [2580] = {.lex_state = 2181}, - [2581] = {.lex_state = 2181}, + [2581] = {.lex_state = 12}, [2582] = {.lex_state = 2181}, [2583] = {.lex_state = 2181}, [2584] = {.lex_state = 2181}, - [2585] = {.lex_state = 2181}, - [2586] = {.lex_state = 12}, + [2585] = {.lex_state = 10}, + [2586] = {.lex_state = 2181}, [2587] = {.lex_state = 2181}, [2588] = {.lex_state = 2181}, [2589] = {.lex_state = 2181}, [2590] = {.lex_state = 2181}, [2591] = {.lex_state = 2181}, [2592] = {.lex_state = 2181}, - [2593] = {.lex_state = 12}, + [2593] = {.lex_state = 2181}, [2594] = {.lex_state = 2181}, [2595] = {.lex_state = 2181}, [2596] = {.lex_state = 2181}, [2597] = {.lex_state = 2181}, - [2598] = {.lex_state = 12}, - [2599] = {.lex_state = 2181}, + [2598] = {.lex_state = 10}, + [2599] = {.lex_state = 12}, [2600] = {.lex_state = 12}, - [2601] = {.lex_state = 2181}, - [2602] = {.lex_state = 10}, + [2601] = {.lex_state = 12}, + [2602] = {.lex_state = 2181}, [2603] = {.lex_state = 2181}, [2604] = {.lex_state = 2181}, [2605] = {.lex_state = 2181}, @@ -29552,79 +29554,79 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2608] = {.lex_state = 2181}, [2609] = {.lex_state = 2181}, [2610] = {.lex_state = 2181}, - [2611] = {.lex_state = 2181}, + [2611] = {.lex_state = 6}, [2612] = {.lex_state = 2181}, - [2613] = {.lex_state = 2181}, - [2614] = {.lex_state = 2181}, - [2615] = {.lex_state = 3, .external_lex_state = 45}, - [2616] = {.lex_state = 2181}, - [2617] = {.lex_state = 3, .external_lex_state = 46}, - [2618] = {.lex_state = 3, .external_lex_state = 45}, - [2619] = {.lex_state = 3, .external_lex_state = 46}, - [2620] = {.lex_state = 3, .external_lex_state = 45}, - [2621] = {.lex_state = 3, .external_lex_state = 46}, - [2622] = {.lex_state = 3, .external_lex_state = 45}, - [2623] = {.lex_state = 3, .external_lex_state = 46}, - [2624] = {.lex_state = 3, .external_lex_state = 45}, - [2625] = {.lex_state = 3, .external_lex_state = 46}, - [2626] = {.lex_state = 3, .external_lex_state = 45}, - [2627] = {.lex_state = 6}, - [2628] = {.lex_state = 3, .external_lex_state = 46}, - [2629] = {.lex_state = 3, .external_lex_state = 46}, - [2630] = {.lex_state = 3, .external_lex_state = 45}, - [2631] = {.lex_state = 3, .external_lex_state = 46}, - [2632] = {.lex_state = 3, .external_lex_state = 45}, - [2633] = {.lex_state = 12}, - [2634] = {.lex_state = 6}, - [2635] = {.lex_state = 3, .external_lex_state = 46}, - [2636] = {.lex_state = 3, .external_lex_state = 45}, - [2637] = {.lex_state = 3, .external_lex_state = 46}, - [2638] = {.lex_state = 2181}, - [2639] = {.lex_state = 3, .external_lex_state = 45}, - [2640] = {.lex_state = 3, .external_lex_state = 46}, - [2641] = {.lex_state = 3, .external_lex_state = 45}, - [2642] = {.lex_state = 6}, - [2643] = {.lex_state = 3, .external_lex_state = 46}, - [2644] = {.lex_state = 3, .external_lex_state = 46}, + [2613] = {.lex_state = 0, .external_lex_state = 45}, + [2614] = {.lex_state = 6}, + [2615] = {.lex_state = 0, .external_lex_state = 46}, + [2616] = {.lex_state = 0, .external_lex_state = 47}, + [2617] = {.lex_state = 0, .external_lex_state = 47}, + [2618] = {.lex_state = 0, .external_lex_state = 46}, + [2619] = {.lex_state = 0, .external_lex_state = 47}, + [2620] = {.lex_state = 0, .external_lex_state = 46}, + [2621] = {.lex_state = 0, .external_lex_state = 46}, + [2622] = {.lex_state = 0, .external_lex_state = 47}, + [2623] = {.lex_state = 0, .external_lex_state = 47}, + [2624] = {.lex_state = 6}, + [2625] = {.lex_state = 0, .external_lex_state = 47}, + [2626] = {.lex_state = 0, .external_lex_state = 47}, + [2627] = {.lex_state = 0, .external_lex_state = 47}, + [2628] = {.lex_state = 6}, + [2629] = {.lex_state = 0, .external_lex_state = 47}, + [2630] = {.lex_state = 0, .external_lex_state = 47}, + [2631] = {.lex_state = 0, .external_lex_state = 47}, + [2632] = {.lex_state = 0, .external_lex_state = 46}, + [2633] = {.lex_state = 0, .external_lex_state = 46}, + [2634] = {.lex_state = 0, .external_lex_state = 47}, + [2635] = {.lex_state = 0, .external_lex_state = 47}, + [2636] = {.lex_state = 6}, + [2637] = {.lex_state = 0, .external_lex_state = 46}, + [2638] = {.lex_state = 6}, + [2639] = {.lex_state = 0, .external_lex_state = 46}, + [2640] = {.lex_state = 0, .external_lex_state = 46}, + [2641] = {.lex_state = 0, .external_lex_state = 47}, + [2642] = {.lex_state = 0, .external_lex_state = 47}, + [2643] = {.lex_state = 0, .external_lex_state = 46}, + [2644] = {.lex_state = 0, .external_lex_state = 47}, [2645] = {.lex_state = 6}, - [2646] = {.lex_state = 3, .external_lex_state = 45}, - [2647] = {.lex_state = 3, .external_lex_state = 46}, - [2648] = {.lex_state = 6}, - [2649] = {.lex_state = 3, .external_lex_state = 45}, - [2650] = {.lex_state = 3, .external_lex_state = 45}, - [2651] = {.lex_state = 3, .external_lex_state = 47}, - [2652] = {.lex_state = 3, .external_lex_state = 46}, - [2653] = {.lex_state = 3, .external_lex_state = 45}, - [2654] = {.lex_state = 3, .external_lex_state = 45}, - [2655] = {.lex_state = 6}, - [2656] = {.lex_state = 3, .external_lex_state = 45}, - [2657] = {.lex_state = 3, .external_lex_state = 45}, - [2658] = {.lex_state = 3, .external_lex_state = 46}, - [2659] = {.lex_state = 6}, - [2660] = {.lex_state = 3, .external_lex_state = 46}, - [2661] = {.lex_state = 2181}, - [2662] = {.lex_state = 3, .external_lex_state = 45}, - [2663] = {.lex_state = 3, .external_lex_state = 46}, - [2664] = {.lex_state = 2181}, - [2665] = {.lex_state = 6}, - [2666] = {.lex_state = 3, .external_lex_state = 48}, - [2667] = {.lex_state = 3, .external_lex_state = 46}, - [2668] = {.lex_state = 3, .external_lex_state = 46}, - [2669] = {.lex_state = 3, .external_lex_state = 45}, - [2670] = {.lex_state = 6}, - [2671] = {.lex_state = 3, .external_lex_state = 46}, - [2672] = {.lex_state = 3, .external_lex_state = 46}, - [2673] = {.lex_state = 3, .external_lex_state = 46}, - [2674] = {.lex_state = 3, .external_lex_state = 45}, - [2675] = {.lex_state = 3, .external_lex_state = 45}, - [2676] = {.lex_state = 2181}, - [2677] = {.lex_state = 3, .external_lex_state = 46}, - [2678] = {.lex_state = 6}, - [2679] = {.lex_state = 3, .external_lex_state = 46}, - [2680] = {.lex_state = 6}, - [2681] = {.lex_state = 6}, - [2682] = {.lex_state = 3, .external_lex_state = 45}, - [2683] = {.lex_state = 3, .external_lex_state = 45}, + [2646] = {.lex_state = 0, .external_lex_state = 46}, + [2647] = {.lex_state = 0, .external_lex_state = 47}, + [2648] = {.lex_state = 0, .external_lex_state = 46}, + [2649] = {.lex_state = 2181}, + [2650] = {.lex_state = 0, .external_lex_state = 46}, + [2651] = {.lex_state = 0, .external_lex_state = 47}, + [2652] = {.lex_state = 0, .external_lex_state = 46}, + [2653] = {.lex_state = 0, .external_lex_state = 46}, + [2654] = {.lex_state = 0, .external_lex_state = 46}, + [2655] = {.lex_state = 0, .external_lex_state = 47}, + [2656] = {.lex_state = 0, .external_lex_state = 46}, + [2657] = {.lex_state = 0, .external_lex_state = 48}, + [2658] = {.lex_state = 0, .external_lex_state = 47}, + [2659] = {.lex_state = 0, .external_lex_state = 46}, + [2660] = {.lex_state = 0, .external_lex_state = 46}, + [2661] = {.lex_state = 6}, + [2662] = {.lex_state = 0, .external_lex_state = 47}, + [2663] = {.lex_state = 2181}, + [2664] = {.lex_state = 6}, + [2665] = {.lex_state = 0, .external_lex_state = 46}, + [2666] = {.lex_state = 0, .external_lex_state = 47}, + [2667] = {.lex_state = 6}, + [2668] = {.lex_state = 2181}, + [2669] = {.lex_state = 0, .external_lex_state = 47}, + [2670] = {.lex_state = 0, .external_lex_state = 47}, + [2671] = {.lex_state = 0, .external_lex_state = 46}, + [2672] = {.lex_state = 0, .external_lex_state = 46}, + [2673] = {.lex_state = 2181}, + [2674] = {.lex_state = 0, .external_lex_state = 46}, + [2675] = {.lex_state = 0, .external_lex_state = 47}, + [2676] = {.lex_state = 6}, + [2677] = {.lex_state = 6}, + [2678] = {.lex_state = 12}, + [2679] = {.lex_state = 0, .external_lex_state = 46}, + [2680] = {.lex_state = 2181}, + [2681] = {.lex_state = 2181}, + [2682] = {.lex_state = 2181}, + [2683] = {.lex_state = 2181}, [2684] = {.lex_state = 2181}, [2685] = {.lex_state = 2181}, [2686] = {.lex_state = 2181}, @@ -29642,146 +29644,146 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2698] = {.lex_state = 2181}, [2699] = {.lex_state = 2181}, [2700] = {.lex_state = 2181}, - [2701] = {.lex_state = 2181}, + [2701] = {.lex_state = 0, .external_lex_state = 47}, [2702] = {.lex_state = 2181}, [2703] = {.lex_state = 2181}, - [2704] = {.lex_state = 2181}, - [2705] = {.lex_state = 3, .external_lex_state = 46}, - [2706] = {.lex_state = 6}, - [2707] = {.lex_state = 6}, - [2708] = {.lex_state = 0, .external_lex_state = 49}, - [2709] = {.lex_state = 6}, + [2704] = {.lex_state = 6}, + [2705] = {.lex_state = 6}, + [2706] = {.lex_state = 0, .external_lex_state = 47}, + [2707] = {.lex_state = 2181}, + [2708] = {.lex_state = 6}, + [2709] = {.lex_state = 2181}, [2710] = {.lex_state = 6}, - [2711] = {.lex_state = 2181}, + [2711] = {.lex_state = 6}, [2712] = {.lex_state = 6}, - [2713] = {.lex_state = 3, .external_lex_state = 46}, + [2713] = {.lex_state = 6}, [2714] = {.lex_state = 6}, - [2715] = {.lex_state = 3}, + [2715] = {.lex_state = 0, .external_lex_state = 46}, [2716] = {.lex_state = 2181}, - [2717] = {.lex_state = 3, .external_lex_state = 45}, - [2718] = {.lex_state = 2181}, - [2719] = {.lex_state = 2181}, + [2717] = {.lex_state = 6}, + [2718] = {.lex_state = 6}, + [2719] = {.lex_state = 6}, [2720] = {.lex_state = 6}, [2721] = {.lex_state = 6}, [2722] = {.lex_state = 6}, - [2723] = {.lex_state = 6}, + [2723] = {.lex_state = 2181}, [2724] = {.lex_state = 6}, - [2725] = {.lex_state = 6}, + [2725] = {.lex_state = 0, .external_lex_state = 49}, [2726] = {.lex_state = 6}, [2727] = {.lex_state = 6}, [2728] = {.lex_state = 6}, - [2729] = {.lex_state = 2181}, + [2729] = {.lex_state = 0, .external_lex_state = 50}, [2730] = {.lex_state = 6}, - [2731] = {.lex_state = 2181}, - [2732] = {.lex_state = 2181}, - [2733] = {.lex_state = 2181}, - [2734] = {.lex_state = 2181}, + [2731] = {.lex_state = 6}, + [2732] = {.lex_state = 6}, + [2733] = {.lex_state = 0, .external_lex_state = 51}, + [2734] = {.lex_state = 6}, [2735] = {.lex_state = 6}, - [2736] = {.lex_state = 6}, + [2736] = {.lex_state = 2181}, [2737] = {.lex_state = 2181}, [2738] = {.lex_state = 6}, - [2739] = {.lex_state = 6}, + [2739] = {.lex_state = 2181}, [2740] = {.lex_state = 6}, - [2741] = {.lex_state = 6}, - [2742] = {.lex_state = 6}, - [2743] = {.lex_state = 6}, - [2744] = {.lex_state = 6}, - [2745] = {.lex_state = 2181}, - [2746] = {.lex_state = 2175}, - [2747] = {.lex_state = 2181}, - [2748] = {.lex_state = 0}, - [2749] = {.lex_state = 0}, - [2750] = {.lex_state = 2175}, - [2751] = {.lex_state = 2181}, - [2752] = {.lex_state = 0}, + [2741] = {.lex_state = 2181}, + [2742] = {.lex_state = 0}, + [2743] = {.lex_state = 2181}, + [2744] = {.lex_state = 0}, + [2745] = {.lex_state = 0}, + [2746] = {.lex_state = 2181}, + [2747] = {.lex_state = 2175}, + [2748] = {.lex_state = 2181}, + [2749] = {.lex_state = 2178}, + [2750] = {.lex_state = 0}, + [2751] = {.lex_state = 2178}, + [2752] = {.lex_state = 2175}, [2753] = {.lex_state = 2175}, - [2754] = {.lex_state = 2181}, - [2755] = {.lex_state = 0}, - [2756] = {.lex_state = 0}, - [2757] = {.lex_state = 0}, - [2758] = {.lex_state = 0, .external_lex_state = 50}, - [2759] = {.lex_state = 0, .external_lex_state = 50}, - [2760] = {.lex_state = 2178}, - [2761] = {.lex_state = 2178}, - [2762] = {.lex_state = 0, .external_lex_state = 50}, - [2763] = {.lex_state = 0}, - [2764] = {.lex_state = 0}, + [2754] = {.lex_state = 0}, + [2755] = {.lex_state = 2175}, + [2756] = {.lex_state = 2178}, + [2757] = {.lex_state = 2178}, + [2758] = {.lex_state = 2175}, + [2759] = {.lex_state = 2175}, + [2760] = {.lex_state = 2175}, + [2761] = {.lex_state = 2181}, + [2762] = {.lex_state = 2178}, + [2763] = {.lex_state = 2178}, + [2764] = {.lex_state = 2181}, [2765] = {.lex_state = 2181}, - [2766] = {.lex_state = 0}, - [2767] = {.lex_state = 2181}, - [2768] = {.lex_state = 0}, + [2766] = {.lex_state = 2175}, + [2767] = {.lex_state = 2175}, + [2768] = {.lex_state = 0, .external_lex_state = 52}, [2769] = {.lex_state = 0}, - [2770] = {.lex_state = 2181}, - [2771] = {.lex_state = 0}, + [2770] = {.lex_state = 0}, + [2771] = {.lex_state = 2181}, [2772] = {.lex_state = 2181}, [2773] = {.lex_state = 2181}, - [2774] = {.lex_state = 2181}, - [2775] = {.lex_state = 2175}, - [2776] = {.lex_state = 2181}, - [2777] = {.lex_state = 2178}, - [2778] = {.lex_state = 2178}, - [2779] = {.lex_state = 2178}, - [2780] = {.lex_state = 2178}, - [2781] = {.lex_state = 2181}, - [2782] = {.lex_state = 2175}, - [2783] = {.lex_state = 3}, - [2784] = {.lex_state = 2175}, - [2785] = {.lex_state = 2175}, - [2786] = {.lex_state = 0}, - [2787] = {.lex_state = 0}, - [2788] = {.lex_state = 0}, - [2789] = {.lex_state = 2181}, - [2790] = {.lex_state = 2181}, + [2774] = {.lex_state = 2178}, + [2775] = {.lex_state = 2178}, + [2776] = {.lex_state = 0}, + [2777] = {.lex_state = 0}, + [2778] = {.lex_state = 0}, + [2779] = {.lex_state = 0}, + [2780] = {.lex_state = 2181}, + [2781] = {.lex_state = 0}, + [2782] = {.lex_state = 0}, + [2783] = {.lex_state = 2175}, + [2784] = {.lex_state = 0}, + [2785] = {.lex_state = 0}, + [2786] = {.lex_state = 2175}, + [2787] = {.lex_state = 2175}, + [2788] = {.lex_state = 2175}, + [2789] = {.lex_state = 3}, + [2790] = {.lex_state = 0}, [2791] = {.lex_state = 0}, - [2792] = {.lex_state = 0}, - [2793] = {.lex_state = 0}, + [2792] = {.lex_state = 2178}, + [2793] = {.lex_state = 2178}, [2794] = {.lex_state = 0}, - [2795] = {.lex_state = 2175}, - [2796] = {.lex_state = 2178}, - [2797] = {.lex_state = 2178}, - [2798] = {.lex_state = 2175}, - [2799] = {.lex_state = 2181}, + [2795] = {.lex_state = 2181}, + [2796] = {.lex_state = 0}, + [2797] = {.lex_state = 2181}, + [2798] = {.lex_state = 0}, + [2799] = {.lex_state = 2178}, [2800] = {.lex_state = 2175}, [2801] = {.lex_state = 2181}, [2802] = {.lex_state = 0}, - [2803] = {.lex_state = 0}, - [2804] = {.lex_state = 0}, - [2805] = {.lex_state = 2175}, - [2806] = {.lex_state = 0, .external_lex_state = 50}, - [2807] = {.lex_state = 0}, - [2808] = {.lex_state = 2178}, - [2809] = {.lex_state = 2178}, - [2810] = {.lex_state = 0}, + [2803] = {.lex_state = 2175}, + [2804] = {.lex_state = 2175}, + [2805] = {.lex_state = 2178}, + [2806] = {.lex_state = 0}, + [2807] = {.lex_state = 2178}, + [2808] = {.lex_state = 3}, + [2809] = {.lex_state = 2175}, + [2810] = {.lex_state = 2178}, [2811] = {.lex_state = 2178}, - [2812] = {.lex_state = 0}, + [2812] = {.lex_state = 2175}, [2813] = {.lex_state = 0}, - [2814] = {.lex_state = 2178}, - [2815] = {.lex_state = 2178}, + [2814] = {.lex_state = 2181}, + [2815] = {.lex_state = 2181}, [2816] = {.lex_state = 2181}, - [2817] = {.lex_state = 2181}, + [2817] = {.lex_state = 0}, [2818] = {.lex_state = 0}, [2819] = {.lex_state = 2181}, - [2820] = {.lex_state = 0}, - [2821] = {.lex_state = 2178}, - [2822] = {.lex_state = 2178}, - [2823] = {.lex_state = 2181}, + [2820] = {.lex_state = 0, .external_lex_state = 52}, + [2821] = {.lex_state = 0}, + [2822] = {.lex_state = 2181}, + [2823] = {.lex_state = 2175}, [2824] = {.lex_state = 0}, [2825] = {.lex_state = 0}, - [2826] = {.lex_state = 2181}, - [2827] = {.lex_state = 2178}, - [2828] = {.lex_state = 0}, - [2829] = {.lex_state = 0}, + [2826] = {.lex_state = 0}, + [2827] = {.lex_state = 0}, + [2828] = {.lex_state = 2178}, + [2829] = {.lex_state = 2178}, [2830] = {.lex_state = 0}, - [2831] = {.lex_state = 2181}, + [2831] = {.lex_state = 0}, [2832] = {.lex_state = 2178}, - [2833] = {.lex_state = 2178}, - [2834] = {.lex_state = 0}, + [2833] = {.lex_state = 2181}, + [2834] = {.lex_state = 2175}, [2835] = {.lex_state = 0}, [2836] = {.lex_state = 0}, - [2837] = {.lex_state = 2181}, - [2838] = {.lex_state = 2175}, - [2839] = {.lex_state = 0}, - [2840] = {.lex_state = 2175}, + [2837] = {.lex_state = 0}, + [2838] = {.lex_state = 0}, + [2839] = {.lex_state = 2175}, + [2840] = {.lex_state = 0}, [2841] = {.lex_state = 0}, [2842] = {.lex_state = 0}, [2843] = {.lex_state = 2175}, @@ -29789,10 +29791,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2845] = {.lex_state = 0}, [2846] = {.lex_state = 0}, [2847] = {.lex_state = 0}, - [2848] = {.lex_state = 0}, - [2849] = {.lex_state = 0}, + [2848] = {.lex_state = 3}, + [2849] = {.lex_state = 3}, [2850] = {.lex_state = 3}, - [2851] = {.lex_state = 2175}, + [2851] = {.lex_state = 3}, [2852] = {.lex_state = 3}, [2853] = {.lex_state = 3}, [2854] = {.lex_state = 3}, @@ -29812,34 +29814,30 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2868] = {.lex_state = 3}, [2869] = {.lex_state = 3}, [2870] = {.lex_state = 3}, - [2871] = {.lex_state = 3}, - [2872] = {.lex_state = 3}, - [2873] = {.lex_state = 3}, - [2874] = {.lex_state = 3}, - [2875] = {.lex_state = 2175}, - [2876] = {.lex_state = 2178}, - [2877] = {.lex_state = 2178}, - [2878] = {.lex_state = 2175}, - [2879] = {.lex_state = 2175}, - [2880] = {.lex_state = 2175}, + [2871] = {.lex_state = 2181}, + [2872] = {.lex_state = 2178}, + [2873] = {.lex_state = 2178}, + [2874] = {.lex_state = 2178}, + [2875] = {.lex_state = 0}, + [2876] = {.lex_state = 0, .external_lex_state = 49}, + [2877] = {.lex_state = 2181}, + [2878] = {.lex_state = 2178}, + [2879] = {.lex_state = 0}, + [2880] = {.lex_state = 2181}, [2881] = {.lex_state = 2181}, - [2882] = {.lex_state = 2175}, - [2883] = {.lex_state = 2178}, - [2884] = {.lex_state = 0}, - [2885] = {.lex_state = 2178}, - [2886] = {.lex_state = 2175}, - [2887] = {.lex_state = 2175}, + [2882] = {.lex_state = 0, .external_lex_state = 52}, + [2883] = {.lex_state = 0}, + [2884] = {.lex_state = 2175}, + [2885] = {.lex_state = 0}, + [2886] = {.lex_state = 2181}, + [2887] = {.lex_state = 0, .external_lex_state = 52}, [2888] = {.lex_state = 0}, - [2889] = {.lex_state = 0}, - [2890] = {.lex_state = 0}, - [2891] = {.lex_state = 2175}, - [2892] = {.lex_state = 2181}, + [2889] = {.lex_state = 2181}, + [2890] = {.lex_state = 2178}, + [2891] = {.lex_state = 2178}, + [2892] = {.lex_state = 0}, [2893] = {.lex_state = 2175}, - [2894] = {.lex_state = 2178}, - [2895] = {.lex_state = 2178}, - [2896] = {.lex_state = 0}, - [2897] = {.lex_state = 2181}, - [2898] = {.lex_state = 0}, + [2894] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -29934,6 +29932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__shortcode_close_escaped] = ACTIONS(1), [sym__shortcode_open] = ACTIONS(1), [sym__shortcode_close] = ACTIONS(1), + [sym__key_name_and_equals] = ACTIONS(1), [sym__unclosed_span] = ACTIONS(1), [sym__strong_emphasis_open_star] = ACTIONS(1), [sym__strong_emphasis_close_star] = ACTIONS(1), @@ -29941,44 +29940,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_underscore] = ACTIONS(1), }, [STATE(1)] = { - [sym_inline] = STATE(2769), - [sym_backslash_escape] = STATE(454), - [sym_commonmark_attribute] = STATE(454), - [sym_code_span] = STATE(454), - [sym_latex_span] = STATE(454), - [sym_insert] = STATE(454), - [sym_delete] = STATE(454), - [sym_highlight] = STATE(454), - [sym_edit_comment] = STATE(454), - [sym_superscript] = STATE(454), - [sym_subscript] = STATE(454), - [sym_strikeout] = STATE(454), - [sym_quoted_span] = STATE(454), - [sym_inline_note] = STATE(454), - [sym_citation] = STATE(454), - [sym_shortcode_escaped] = STATE(454), - [sym_shortcode] = STATE(454), - [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(495), - [sym__link_text_non_empty] = STATE(497), - [sym_inline_link] = STATE(1730), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1528), - [sym__image_description] = STATE(2751), - [sym__image_description_non_empty] = STATE(2751), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(896), - [sym__word] = STATE(896), - [sym__soft_line_break] = STATE(1586), - [sym__inline_base] = STATE(1730), - [sym__text_base] = STATE(454), - [sym__inline_element] = STATE(1730), - [aux_sym__inline] = STATE(19), - [sym__emphasis_star] = STATE(1730), - [sym__strong_emphasis_star] = STATE(1730), - [sym__emphasis_underscore] = STATE(1730), - [sym__strong_emphasis_underscore] = STATE(1730), - [aux_sym__inline_base_repeat1] = STATE(454), + [sym_inline] = STATE(2842), + [sym_backslash_escape] = STATE(453), + [sym_commonmark_attribute] = STATE(453), + [sym_code_span] = STATE(453), + [sym_latex_span] = STATE(453), + [sym_insert] = STATE(453), + [sym_delete] = STATE(453), + [sym_highlight] = STATE(453), + [sym_edit_comment] = STATE(453), + [sym_superscript] = STATE(453), + [sym_subscript] = STATE(453), + [sym_strikeout] = STATE(453), + [sym_quoted_span] = STATE(453), + [sym_inline_note] = STATE(453), + [sym_citation] = STATE(453), + [sym_shortcode_escaped] = STATE(453), + [sym_shortcode] = STATE(453), + [sym_note_reference] = STATE(453), + [sym__link_text] = STATE(493), + [sym__link_text_non_empty] = STATE(495), + [sym_inline_link] = STATE(1731), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1581), + [sym__image_description] = STATE(2764), + [sym__image_description_non_empty] = STATE(2764), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1353), + [sym__word] = STATE(1353), + [sym__soft_line_break] = STATE(1724), + [sym__inline_base] = STATE(1731), + [sym__text_base] = STATE(453), + [sym__inline_element] = STATE(1731), + [aux_sym__inline] = STATE(18), + [sym__emphasis_star] = STATE(1731), + [sym__strong_emphasis_star] = STATE(1731), + [sym__emphasis_underscore] = STATE(1731), + [sym__strong_emphasis_underscore] = STATE(1731), + [aux_sym__inline_base_repeat1] = STATE(453), [sym__backslash_escape] = ACTIONS(3), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), @@ -30063,25 +30062,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(37), + [sym_inline_link] = STATE(375), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(37), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(375), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(37), - [sym__emphasis_star] = STATE(37), - [sym__strong_emphasis_star] = STATE(37), - [sym__emphasis_underscore] = STATE(37), - [sym__strong_emphasis_underscore] = STATE(37), - [aux_sym_insert_repeat1] = STATE(37), + [sym__inline_element] = STATE(375), + [sym__emphasis_star] = STATE(375), + [sym__strong_emphasis_star] = STATE(375), + [sym__emphasis_underscore] = STATE(375), + [sym__strong_emphasis_underscore] = STATE(375), + [aux_sym_insert_repeat1] = STATE(375), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -30168,25 +30167,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(375), + [sym_inline_link] = STATE(36), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(375), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(36), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(375), - [sym__emphasis_star] = STATE(375), - [sym__strong_emphasis_star] = STATE(375), - [sym__emphasis_underscore] = STATE(375), - [sym__strong_emphasis_underscore] = STATE(375), - [aux_sym_insert_repeat1] = STATE(375), + [sym__inline_element] = STATE(36), + [sym__emphasis_star] = STATE(36), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(36), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym_insert_repeat1] = STATE(36), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -30273,17 +30272,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(81), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(81), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(81), @@ -30378,17 +30377,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(111), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(111), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(111), @@ -30483,17 +30482,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(141), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(141), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(141), @@ -30588,17 +30587,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(171), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(171), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(171), @@ -30693,17 +30692,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(200), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(200), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(200), @@ -30798,17 +30797,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(229), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(229), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(229), @@ -30903,17 +30902,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(258), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(258), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(258), @@ -31008,17 +31007,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(287), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(287), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(287), @@ -31113,17 +31112,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(317), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(317), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(317), @@ -31218,17 +31217,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(346), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(346), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(346), @@ -31306,43 +31305,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(14)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), - [sym__link_text] = STATE(545), - [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), + [sym_inline_link] = STATE(25), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), + [sym__inline_base] = STATE(25), + [sym__text_base] = STATE(470), + [sym__inline_element] = STATE(25), + [sym__emphasis_star] = STATE(25), + [sym__strong_emphasis_star] = STATE(25), + [sym__emphasis_underscore] = STATE(25), + [sym__strong_emphasis_underscore] = STATE(25), + [aux_sym_insert_repeat1] = STATE(25), + [aux_sym__inline_base_repeat1] = STATE(470), [sym__backslash_escape] = ACTIONS(197), [sym_entity_reference] = ACTIONS(199), [sym_numeric_character_reference] = ACTIONS(199), @@ -31392,12 +31391,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(235), [sym__emphasis_open_star] = ACTIONS(237), [sym__emphasis_open_underscore] = ACTIONS(239), - [sym__emphasis_close_underscore] = ACTIONS(241), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), + [sym__superscript_close] = ACTIONS(251), [sym__subscript_open] = ACTIONS(253), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), @@ -31410,43 +31409,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(15)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), + [sym__link_text] = STATE(759), + [sym__link_text_non_empty] = STATE(763), + [sym_inline_link] = STATE(32), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), + [sym__inline_base] = STATE(32), + [sym__text_base] = STATE(455), + [sym__inline_element] = STATE(32), + [sym__emphasis_star] = STATE(32), + [sym__strong_emphasis_star] = STATE(32), + [sym__emphasis_underscore] = STATE(32), + [sym__strong_emphasis_underscore] = STATE(32), + [aux_sym_insert_repeat1] = STATE(32), + [aux_sym__inline_base_repeat1] = STATE(455), + [sym__backslash_escape] = ACTIONS(271), + [sym_entity_reference] = ACTIONS(273), + [sym_numeric_character_reference] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_GT] = ACTIONS(277), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(277), + [anon_sym_POUND] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(277), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(275), + [anon_sym_SQUOTE] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(277), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_SLASH] = ACTIONS(277), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(277), + [anon_sym_QMARK] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(281), + [anon_sym_BSLASH] = ACTIONS(283), + [anon_sym_CARET] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_RPAREN] = ACTIONS(277), + [sym__newline_token] = ACTIONS(287), + [aux_sym_insert_token1] = ACTIONS(289), + [aux_sym_insert_token2] = ACTIONS(291), + [aux_sym_delete_token1] = ACTIONS(293), + [aux_sym_highlight_token1] = ACTIONS(295), + [aux_sym_edit_comment_token1] = ACTIONS(297), + [anon_sym_CARET_LBRACK] = ACTIONS(299), + [anon_sym_LBRACK_CARET] = ACTIONS(301), + [sym_uri_autolink] = ACTIONS(273), + [sym_email_autolink] = ACTIONS(273), + [sym__whitespace_ge_2] = ACTIONS(303), + [aux_sym__whitespace_token1] = ACTIONS(305), + [sym__word_no_digit] = ACTIONS(307), + [sym__digits] = ACTIONS(307), + [anon_sym_DASH_DASH] = ACTIONS(309), + [anon_sym_DASH_DASH_DASH] = ACTIONS(307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(307), + [sym__code_span_start] = ACTIONS(311), + [sym__emphasis_open_star] = ACTIONS(313), + [sym__emphasis_open_underscore] = ACTIONS(315), + [sym__strikeout_open] = ACTIONS(317), + [sym__latex_span_start] = ACTIONS(319), + [sym__single_quote_open] = ACTIONS(321), + [sym__double_quote_open] = ACTIONS(323), + [sym__superscript_open] = ACTIONS(325), + [sym__subscript_open] = ACTIONS(327), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(331), + [sym__cite_author_in_text] = ACTIONS(333), + [sym__cite_suppress_author] = ACTIONS(335), + [sym__shortcode_open_escaped] = ACTIONS(337), + [sym__shortcode_open] = ACTIONS(339), + [sym__unclosed_span] = ACTIONS(273), + [sym__strong_emphasis_open_star] = ACTIONS(341), + [sym__strong_emphasis_open_underscore] = ACTIONS(343), + }, + [STATE(16)] = { + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(33), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(33), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(33), [sym__emphasis_star] = STATE(33), [sym__strong_emphasis_star] = STATE(33), [sym__emphasis_underscore] = STATE(33), [sym__strong_emphasis_underscore] = STATE(33), [aux_sym_insert_repeat1] = STATE(33), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -31479,7 +31582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(277), [sym__newline_token] = ACTIONS(287), [aux_sym_insert_token1] = ACTIONS(289), - [aux_sym_insert_token2] = ACTIONS(291), + [aux_sym_insert_token2] = ACTIONS(345), [aux_sym_delete_token1] = ACTIONS(293), [aux_sym_highlight_token1] = ACTIONS(295), [aux_sym_edit_comment_token1] = ACTIONS(297), @@ -31513,148 +31616,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(341), [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, - [STATE(16)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [STATE(17)] = { + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(34), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(34), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(34), [sym__emphasis_star] = STATE(34), [sym__strong_emphasis_star] = STATE(34), [sym__emphasis_underscore] = STATE(34), [sym__strong_emphasis_underscore] = STATE(34), [aux_sym_insert_repeat1] = STATE(34), - [aux_sym__inline_base_repeat1] = STATE(458), - [sym__backslash_escape] = ACTIONS(271), - [sym_entity_reference] = ACTIONS(273), - [sym_numeric_character_reference] = ACTIONS(273), - [anon_sym_LT] = ACTIONS(275), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_BANG] = ACTIONS(279), - [anon_sym_DQUOTE] = ACTIONS(277), - [anon_sym_POUND] = ACTIONS(277), - [anon_sym_DOLLAR] = ACTIONS(277), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(275), - [anon_sym_SQUOTE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_QMARK] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(281), - [anon_sym_BSLASH] = ACTIONS(283), - [anon_sym_CARET] = ACTIONS(275), - [anon_sym_BQUOTE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(277), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_RPAREN] = ACTIONS(277), - [sym__newline_token] = ACTIONS(287), - [aux_sym_insert_token1] = ACTIONS(289), - [aux_sym_insert_token2] = ACTIONS(345), - [aux_sym_delete_token1] = ACTIONS(293), - [aux_sym_highlight_token1] = ACTIONS(295), - [aux_sym_edit_comment_token1] = ACTIONS(297), - [anon_sym_CARET_LBRACK] = ACTIONS(299), - [anon_sym_LBRACK_CARET] = ACTIONS(301), - [sym_uri_autolink] = ACTIONS(273), - [sym_email_autolink] = ACTIONS(273), - [sym__whitespace_ge_2] = ACTIONS(303), - [aux_sym__whitespace_token1] = ACTIONS(305), - [sym__word_no_digit] = ACTIONS(307), - [sym__digits] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(309), - [anon_sym_DASH_DASH_DASH] = ACTIONS(307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(307), - [sym__code_span_start] = ACTIONS(311), - [sym__emphasis_open_star] = ACTIONS(313), - [sym__emphasis_open_underscore] = ACTIONS(315), - [sym__strikeout_open] = ACTIONS(317), - [sym__latex_span_start] = ACTIONS(319), - [sym__single_quote_open] = ACTIONS(321), - [sym__double_quote_open] = ACTIONS(323), - [sym__superscript_open] = ACTIONS(325), - [sym__subscript_open] = ACTIONS(327), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(329), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(331), - [sym__cite_author_in_text] = ACTIONS(333), - [sym__cite_suppress_author] = ACTIONS(335), - [sym__shortcode_open_escaped] = ACTIONS(337), - [sym__shortcode_open] = ACTIONS(339), - [sym__unclosed_span] = ACTIONS(273), - [sym__strong_emphasis_open_star] = ACTIONS(341), - [sym__strong_emphasis_open_underscore] = ACTIONS(343), - }, - [STATE(17)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), - [sym__link_text] = STATE(759), - [sym__link_text_non_empty] = STATE(763), - [sym_inline_link] = STATE(35), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), - [sym__inline_base] = STATE(35), - [sym__text_base] = STATE(458), - [sym__inline_element] = STATE(35), - [sym__emphasis_star] = STATE(35), - [sym__strong_emphasis_star] = STATE(35), - [sym__emphasis_underscore] = STATE(35), - [sym__strong_emphasis_underscore] = STATE(35), - [aux_sym_insert_repeat1] = STATE(35), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -31722,148 +31721,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(18)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), - [sym__link_text] = STATE(545), - [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(21), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(21), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(21), - [aux_sym__inline_no_underscore] = STATE(21), - [sym__emphasis_star] = STATE(21), - [sym__strong_emphasis_star] = STATE(21), - [sym__emphasis_underscore] = STATE(21), - [sym__strong_emphasis_underscore] = STATE(21), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), - [sym__last_token_punctuation] = ACTIONS(349), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), - }, - [STATE(19)] = { - [sym_backslash_escape] = STATE(454), - [sym_commonmark_attribute] = STATE(454), - [sym_code_span] = STATE(454), - [sym_latex_span] = STATE(454), - [sym_insert] = STATE(454), - [sym_delete] = STATE(454), - [sym_highlight] = STATE(454), - [sym_edit_comment] = STATE(454), - [sym_superscript] = STATE(454), - [sym_subscript] = STATE(454), - [sym_strikeout] = STATE(454), - [sym_quoted_span] = STATE(454), - [sym_inline_note] = STATE(454), - [sym_citation] = STATE(454), - [sym_shortcode_escaped] = STATE(454), - [sym_shortcode] = STATE(454), - [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(495), - [sym__link_text_non_empty] = STATE(497), - [sym_inline_link] = STATE(1730), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1528), - [sym__image_description] = STATE(2751), - [sym__image_description_non_empty] = STATE(2751), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(896), - [sym__word] = STATE(896), - [sym__soft_line_break] = STATE(1586), - [sym__inline_base] = STATE(1730), - [sym__text_base] = STATE(454), - [sym__inline_element] = STATE(1730), - [aux_sym__inline] = STATE(38), - [sym__emphasis_star] = STATE(1730), - [sym__strong_emphasis_star] = STATE(1730), - [sym__emphasis_underscore] = STATE(1730), - [sym__strong_emphasis_underscore] = STATE(1730), - [aux_sym__inline_base_repeat1] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(351), + [sym_backslash_escape] = STATE(453), + [sym_commonmark_attribute] = STATE(453), + [sym_code_span] = STATE(453), + [sym_latex_span] = STATE(453), + [sym_insert] = STATE(453), + [sym_delete] = STATE(453), + [sym_highlight] = STATE(453), + [sym_edit_comment] = STATE(453), + [sym_superscript] = STATE(453), + [sym_subscript] = STATE(453), + [sym_strikeout] = STATE(453), + [sym_quoted_span] = STATE(453), + [sym_inline_note] = STATE(453), + [sym_citation] = STATE(453), + [sym_shortcode_escaped] = STATE(453), + [sym_shortcode] = STATE(453), + [sym_note_reference] = STATE(453), + [sym__link_text] = STATE(493), + [sym__link_text_non_empty] = STATE(495), + [sym_inline_link] = STATE(1731), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1581), + [sym__image_description] = STATE(2764), + [sym__image_description_non_empty] = STATE(2764), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1353), + [sym__word] = STATE(1353), + [sym__soft_line_break] = STATE(1724), + [sym__inline_base] = STATE(1731), + [sym__text_base] = STATE(453), + [sym__inline_element] = STATE(1731), + [aux_sym__inline] = STATE(37), + [sym__emphasis_star] = STATE(1731), + [sym__strong_emphasis_star] = STATE(1731), + [sym__emphasis_underscore] = STATE(1731), + [sym__strong_emphasis_underscore] = STATE(1731), + [aux_sym__inline_base_repeat1] = STATE(453), + [ts_builtin_sym_end] = ACTIONS(349), [sym__backslash_escape] = ACTIONS(3), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), @@ -31929,253 +31824,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(73), [sym__strong_emphasis_open_underscore] = ACTIONS(75), }, - [STATE(20)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [STATE(19)] = { + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), - [sym__emphasis_close_star] = ACTIONS(397), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), + [sym__emphasis_close_star] = ACTIONS(395), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, - [STATE(21)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [STATE(20)] = { + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), - [sym__emphasis_close_underscore] = ACTIONS(427), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), + [sym__emphasis_close_underscore] = ACTIONS(469), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, - [STATE(22)] = { - [sym_backslash_escape] = STATE(454), - [sym_commonmark_attribute] = STATE(454), - [sym_code_span] = STATE(454), - [sym_latex_span] = STATE(454), - [sym_insert] = STATE(454), - [sym_delete] = STATE(454), - [sym_highlight] = STATE(454), - [sym_edit_comment] = STATE(454), - [sym_superscript] = STATE(454), - [sym_subscript] = STATE(454), - [sym_strikeout] = STATE(454), - [sym_quoted_span] = STATE(454), - [sym_inline_note] = STATE(454), - [sym_citation] = STATE(454), - [sym_shortcode_escaped] = STATE(454), - [sym_shortcode] = STATE(454), - [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(495), - [sym__link_text_non_empty] = STATE(497), - [sym_inline_link] = STATE(1730), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1528), - [sym__image_description] = STATE(2751), - [sym__image_description_non_empty] = STATE(2751), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(896), - [sym__word] = STATE(896), - [sym__soft_line_break] = STATE(1586), - [sym__inline_base] = STATE(1730), - [sym__text_base] = STATE(454), - [sym__inline_element] = STATE(1730), - [aux_sym__inline] = STATE(38), - [sym__emphasis_star] = STATE(1730), - [sym__strong_emphasis_star] = STATE(1730), - [sym__emphasis_underscore] = STATE(1730), - [sym__strong_emphasis_underscore] = STATE(1730), - [aux_sym__inline_base_repeat1] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(429), + [STATE(21)] = { + [sym_backslash_escape] = STATE(453), + [sym_commonmark_attribute] = STATE(453), + [sym_code_span] = STATE(453), + [sym_latex_span] = STATE(453), + [sym_insert] = STATE(453), + [sym_delete] = STATE(453), + [sym_highlight] = STATE(453), + [sym_edit_comment] = STATE(453), + [sym_superscript] = STATE(453), + [sym_subscript] = STATE(453), + [sym_strikeout] = STATE(453), + [sym_quoted_span] = STATE(453), + [sym_inline_note] = STATE(453), + [sym_citation] = STATE(453), + [sym_shortcode_escaped] = STATE(453), + [sym_shortcode] = STATE(453), + [sym_note_reference] = STATE(453), + [sym__link_text] = STATE(493), + [sym__link_text_non_empty] = STATE(495), + [sym_inline_link] = STATE(1731), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1581), + [sym__image_description] = STATE(2764), + [sym__image_description_non_empty] = STATE(2764), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1353), + [sym__word] = STATE(1353), + [sym__soft_line_break] = STATE(1724), + [sym__inline_base] = STATE(1731), + [sym__text_base] = STATE(453), + [sym__inline_element] = STATE(1731), + [aux_sym__inline] = STATE(37), + [sym__emphasis_star] = STATE(1731), + [sym__strong_emphasis_star] = STATE(1731), + [sym__emphasis_underscore] = STATE(1731), + [sym__strong_emphasis_underscore] = STATE(1731), + [aux_sym__inline_base_repeat1] = STATE(453), + [ts_builtin_sym_end] = ACTIONS(499), [sym__backslash_escape] = ACTIONS(3), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), @@ -32241,7 +32136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(73), [sym__strong_emphasis_open_underscore] = ACTIONS(75), }, - [STATE(23)] = { + [STATE(22)] = { [sym_backslash_escape] = STATE(459), [sym_commonmark_attribute] = STATE(459), [sym_code_span] = STATE(459), @@ -32259,93 +32154,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), - [sym_inline_link] = STATE(43), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), + [sym_inline_link] = STATE(42), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), - [sym__inline_base] = STATE(43), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), + [sym__inline_base] = STATE(42), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(43), - [sym__emphasis_star] = STATE(43), - [sym__strong_emphasis_star] = STATE(43), - [sym__emphasis_underscore] = STATE(43), - [sym__strong_emphasis_underscore] = STATE(43), - [aux_sym_insert_repeat1] = STATE(43), + [sym__inline_element] = STATE(42), + [sym__emphasis_star] = STATE(42), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(42), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym_insert_repeat1] = STATE(42), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), - [sym__strikeout_close] = ACTIONS(477), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), + [sym__strikeout_close] = ACTIONS(547), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, - [STATE(24)] = { + [STATE(23)] = { [sym_backslash_escape] = STATE(462), [sym_commonmark_attribute] = STATE(462), [sym_code_span] = STATE(462), @@ -32363,17 +32258,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(49), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(49), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(49), @@ -32383,281 +32278,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(49), [aux_sym_insert_repeat1] = STATE(49), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), - [sym__single_quote_close] = ACTIONS(555), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), + [sym__single_quote_close] = ACTIONS(625), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, - [STATE(25)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [STATE(24)] = { + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(50), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(50), [sym__emphasis_star] = STATE(50), [sym__strong_emphasis_star] = STATE(50), [sym__emphasis_underscore] = STATE(50), [sym__strong_emphasis_underscore] = STATE(50), [aux_sym_insert_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), - [sym__double_quote_close] = ACTIONS(555), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), + [sym__double_quote_close] = ACTIONS(625), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, - [STATE(26)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [STATE(25)] = { + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(51), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(51), [sym__emphasis_star] = STATE(51), [sym__strong_emphasis_star] = STATE(51), [sym__emphasis_underscore] = STATE(51), [sym__strong_emphasis_underscore] = STATE(51), [aux_sym_insert_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), - [sym__superscript_close] = ACTIONS(705), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), + [sym__superscript_close] = ACTIONS(721), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, - [STATE(27)] = { + [STATE(26)] = { [sym_backslash_escape] = STATE(472), [sym_commonmark_attribute] = STATE(472), [sym_code_span] = STATE(472), @@ -32679,13 +32574,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(52), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(52), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(52), @@ -32695,73 +32590,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(52), [aux_sym_insert_repeat1] = STATE(52), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), - [sym__subscript_close] = ACTIONS(781), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), + [sym__subscript_close] = ACTIONS(779), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, - [STATE(28)] = { + [STATE(27)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -32783,13 +32678,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(47), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(47), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(47), @@ -32799,73 +32694,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(47), [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), - [sym__strong_emphasis_close_star] = ACTIONS(869), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), + [sym__strong_emphasis_close_star] = ACTIONS(867), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, - [STATE(29)] = { + [STATE(28)] = { [sym_backslash_escape] = STATE(456), [sym_commonmark_attribute] = STATE(456), [sym_code_span] = STATE(456), @@ -32887,13 +32782,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(48), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(48), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(48), @@ -32903,73 +32798,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(48), [sym__strong_emphasis_underscore] = STATE(48), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), - [sym__strong_emphasis_close_underscore] = ACTIONS(945), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), + [sym__strong_emphasis_close_underscore] = ACTIONS(943), }, - [STATE(30)] = { + [STATE(29)] = { [sym_backslash_escape] = STATE(452), [sym_commonmark_attribute] = STATE(452), [sym_code_span] = STATE(452), @@ -32987,25 +32882,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), - [aux_sym__inline] = STATE(44), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__inline_element] = STATE(1105), + [aux_sym__inline] = STATE(43), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -33030,7 +32925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(83), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_BSLASH] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(947), + [anon_sym_RBRACK] = ACTIONS(945), [anon_sym_CARET] = ACTIONS(81), [anon_sym_BQUOTE] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(93), @@ -33073,7 +32968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(149), [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(31)] = { + [STATE(30)] = { [sym_backslash_escape] = STATE(452), [sym_commonmark_attribute] = STATE(452), [sym_code_span] = STATE(452), @@ -33091,25 +32986,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(46), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -33134,7 +33029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(83), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_BSLASH] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(949), + [anon_sym_RBRACK] = ACTIONS(947), [anon_sym_CARET] = ACTIONS(81), [anon_sym_BQUOTE] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(93), @@ -33177,44 +33072,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(149), [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(32)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [STATE(31)] = { + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -33247,7 +33142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(277), [sym__newline_token] = ACTIONS(287), [aux_sym_insert_token1] = ACTIONS(289), - [aux_sym_insert_token2] = ACTIONS(951), + [aux_sym_insert_token2] = ACTIONS(949), [aux_sym_delete_token1] = ACTIONS(293), [aux_sym_highlight_token1] = ACTIONS(295), [aux_sym_edit_comment_token1] = ACTIONS(297), @@ -33281,44 +33176,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(341), [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, - [STATE(33)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [STATE(32)] = { + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -33351,7 +33246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(277), [sym__newline_token] = ACTIONS(287), [aux_sym_insert_token1] = ACTIONS(289), - [aux_sym_insert_token2] = ACTIONS(953), + [aux_sym_insert_token2] = ACTIONS(951), [aux_sym_delete_token1] = ACTIONS(293), [aux_sym_highlight_token1] = ACTIONS(295), [aux_sym_edit_comment_token1] = ACTIONS(297), @@ -33385,44 +33280,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(341), [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, - [STATE(34)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [STATE(33)] = { + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -33455,7 +33350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(277), [sym__newline_token] = ACTIONS(287), [aux_sym_insert_token1] = ACTIONS(289), - [aux_sym_insert_token2] = ACTIONS(955), + [aux_sym_insert_token2] = ACTIONS(953), [aux_sym_delete_token1] = ACTIONS(293), [aux_sym_highlight_token1] = ACTIONS(295), [aux_sym_edit_comment_token1] = ACTIONS(297), @@ -33489,44 +33384,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(341), [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, - [STATE(35)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [STATE(34)] = { + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -33559,7 +33454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(277), [sym__newline_token] = ACTIONS(287), [aux_sym_insert_token1] = ACTIONS(289), - [aux_sym_insert_token2] = ACTIONS(957), + [aux_sym_insert_token2] = ACTIONS(955), [aux_sym_delete_token1] = ACTIONS(293), [aux_sym_highlight_token1] = ACTIONS(295), [aux_sym_edit_comment_token1] = ACTIONS(297), @@ -33593,7 +33488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(341), [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, - [STATE(36)] = { + [STATE(35)] = { [sym_backslash_escape] = STATE(452), [sym_commonmark_attribute] = STATE(452), [sym_code_span] = STATE(452), @@ -33611,25 +33506,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(45), + [sym_inline_link] = STATE(44), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(45), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(44), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(45), - [sym__emphasis_star] = STATE(45), - [sym__strong_emphasis_star] = STATE(45), - [sym__emphasis_underscore] = STATE(45), - [sym__strong_emphasis_underscore] = STATE(45), - [aux_sym_insert_repeat1] = STATE(45), + [sym__inline_element] = STATE(44), + [sym__emphasis_star] = STATE(44), + [sym__strong_emphasis_star] = STATE(44), + [sym__emphasis_underscore] = STATE(44), + [sym__strong_emphasis_underscore] = STATE(44), + [aux_sym_insert_repeat1] = STATE(44), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -33654,7 +33549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(83), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_BSLASH] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(959), + [anon_sym_RBRACK] = ACTIONS(957), [anon_sym_CARET] = ACTIONS(81), [anon_sym_BQUOTE] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(93), @@ -33697,7 +33592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(149), [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(37)] = { + [STATE(36)] = { [sym_backslash_escape] = STATE(452), [sym_commonmark_attribute] = STATE(452), [sym_code_span] = STATE(452), @@ -33715,17 +33610,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -33758,7 +33653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(83), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_BSLASH] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(961), + [anon_sym_RBRACK] = ACTIONS(959), [anon_sym_CARET] = ACTIONS(81), [anon_sym_BQUOTE] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(93), @@ -33801,527 +33696,527 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(149), [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, + [STATE(37)] = { + [sym_backslash_escape] = STATE(453), + [sym_commonmark_attribute] = STATE(453), + [sym_code_span] = STATE(453), + [sym_latex_span] = STATE(453), + [sym_insert] = STATE(453), + [sym_delete] = STATE(453), + [sym_highlight] = STATE(453), + [sym_edit_comment] = STATE(453), + [sym_superscript] = STATE(453), + [sym_subscript] = STATE(453), + [sym_strikeout] = STATE(453), + [sym_quoted_span] = STATE(453), + [sym_inline_note] = STATE(453), + [sym_citation] = STATE(453), + [sym_shortcode_escaped] = STATE(453), + [sym_shortcode] = STATE(453), + [sym_note_reference] = STATE(453), + [sym__link_text] = STATE(493), + [sym__link_text_non_empty] = STATE(495), + [sym_inline_link] = STATE(1731), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1581), + [sym__image_description] = STATE(2764), + [sym__image_description_non_empty] = STATE(2764), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1353), + [sym__word] = STATE(1353), + [sym__soft_line_break] = STATE(1724), + [sym__inline_base] = STATE(1731), + [sym__text_base] = STATE(453), + [sym__inline_element] = STATE(1731), + [aux_sym__inline] = STATE(37), + [sym__emphasis_star] = STATE(1731), + [sym__strong_emphasis_star] = STATE(1731), + [sym__emphasis_underscore] = STATE(1731), + [sym__strong_emphasis_underscore] = STATE(1731), + [aux_sym__inline_base_repeat1] = STATE(453), + [ts_builtin_sym_end] = ACTIONS(961), + [sym__backslash_escape] = ACTIONS(963), + [sym_entity_reference] = ACTIONS(966), + [sym_numeric_character_reference] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_PERCENT] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_COMMA] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_SLASH] = ACTIONS(972), + [anon_sym_COLON] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_BSLASH] = ACTIONS(981), + [anon_sym_CARET] = ACTIONS(969), + [anon_sym_BQUOTE] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_TILDE] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(972), + [sym__newline_token] = ACTIONS(987), + [aux_sym_insert_token1] = ACTIONS(990), + [aux_sym_delete_token1] = ACTIONS(993), + [aux_sym_highlight_token1] = ACTIONS(996), + [aux_sym_edit_comment_token1] = ACTIONS(999), + [anon_sym_CARET_LBRACK] = ACTIONS(1002), + [anon_sym_LBRACK_CARET] = ACTIONS(1005), + [sym_uri_autolink] = ACTIONS(966), + [sym_email_autolink] = ACTIONS(966), + [sym__whitespace_ge_2] = ACTIONS(1008), + [aux_sym__whitespace_token1] = ACTIONS(1011), + [sym__word_no_digit] = ACTIONS(1014), + [sym__digits] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1017), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1014), + [sym__code_span_start] = ACTIONS(1020), + [sym__emphasis_open_star] = ACTIONS(1023), + [sym__emphasis_open_underscore] = ACTIONS(1026), + [sym__strikeout_open] = ACTIONS(1029), + [sym__latex_span_start] = ACTIONS(1032), + [sym__single_quote_open] = ACTIONS(1035), + [sym__double_quote_open] = ACTIONS(1038), + [sym__superscript_open] = ACTIONS(1041), + [sym__subscript_open] = ACTIONS(1044), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1047), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1050), + [sym__cite_author_in_text] = ACTIONS(1053), + [sym__cite_suppress_author] = ACTIONS(1056), + [sym__shortcode_open_escaped] = ACTIONS(1059), + [sym__shortcode_open] = ACTIONS(1062), + [sym__unclosed_span] = ACTIONS(966), + [sym__strong_emphasis_open_star] = ACTIONS(1065), + [sym__strong_emphasis_open_underscore] = ACTIONS(1068), + }, [STATE(38)] = { - [sym_backslash_escape] = STATE(454), - [sym_commonmark_attribute] = STATE(454), - [sym_code_span] = STATE(454), - [sym_latex_span] = STATE(454), - [sym_insert] = STATE(454), - [sym_delete] = STATE(454), - [sym_highlight] = STATE(454), - [sym_edit_comment] = STATE(454), - [sym_superscript] = STATE(454), - [sym_subscript] = STATE(454), - [sym_strikeout] = STATE(454), - [sym_quoted_span] = STATE(454), - [sym_inline_note] = STATE(454), - [sym_citation] = STATE(454), - [sym_shortcode_escaped] = STATE(454), - [sym_shortcode] = STATE(454), - [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(495), - [sym__link_text_non_empty] = STATE(497), - [sym_inline_link] = STATE(1730), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1528), - [sym__image_description] = STATE(2751), - [sym__image_description_non_empty] = STATE(2751), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(896), - [sym__word] = STATE(896), - [sym__soft_line_break] = STATE(1586), - [sym__inline_base] = STATE(1730), - [sym__text_base] = STATE(454), - [sym__inline_element] = STATE(1730), - [aux_sym__inline] = STATE(38), - [sym__emphasis_star] = STATE(1730), - [sym__strong_emphasis_star] = STATE(1730), - [sym__emphasis_underscore] = STATE(1730), - [sym__strong_emphasis_underscore] = STATE(1730), - [aux_sym__inline_base_repeat1] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(963), - [sym__backslash_escape] = ACTIONS(965), - [sym_entity_reference] = ACTIONS(968), - [sym_numeric_character_reference] = ACTIONS(968), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(974), - [anon_sym_PERCENT] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_COMMA] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_SLASH] = ACTIONS(974), - [anon_sym_COLON] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_QMARK] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_BSLASH] = ACTIONS(983), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_BQUOTE] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(974), - [sym__newline_token] = ACTIONS(989), - [aux_sym_insert_token1] = ACTIONS(992), - [aux_sym_delete_token1] = ACTIONS(995), - [aux_sym_highlight_token1] = ACTIONS(998), - [aux_sym_edit_comment_token1] = ACTIONS(1001), - [anon_sym_CARET_LBRACK] = ACTIONS(1004), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(968), - [sym_email_autolink] = ACTIONS(968), - [sym__whitespace_ge_2] = ACTIONS(1010), - [aux_sym__whitespace_token1] = ACTIONS(1013), - [sym__word_no_digit] = ACTIONS(1016), - [sym__digits] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1019), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1016), - [sym__code_span_start] = ACTIONS(1022), - [sym__emphasis_open_star] = ACTIONS(1025), - [sym__emphasis_open_underscore] = ACTIONS(1028), - [sym__strikeout_open] = ACTIONS(1031), - [sym__latex_span_start] = ACTIONS(1034), - [sym__single_quote_open] = ACTIONS(1037), - [sym__double_quote_open] = ACTIONS(1040), - [sym__superscript_open] = ACTIONS(1043), - [sym__subscript_open] = ACTIONS(1046), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1049), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1052), - [sym__cite_author_in_text] = ACTIONS(1055), - [sym__cite_suppress_author] = ACTIONS(1058), - [sym__shortcode_open_escaped] = ACTIONS(1061), - [sym__shortcode_open] = ACTIONS(1064), - [sym__unclosed_span] = ACTIONS(968), - [sym__strong_emphasis_open_star] = ACTIONS(1067), - [sym__strong_emphasis_open_underscore] = ACTIONS(1070), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), + [sym__link_text] = STATE(515), + [sym__link_text_non_empty] = STATE(516), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), + [sym__emphasis_close_star] = ACTIONS(1071), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(39)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), - [sym__emphasis_close_star] = ACTIONS(1073), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(1073), + [sym_entity_reference] = ACTIONS(1076), + [sym_numeric_character_reference] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1082), + [anon_sym_POUND] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1082), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_COMMA] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_DOT] = ACTIONS(1079), + [anon_sym_SLASH] = ACTIONS(1082), + [anon_sym_COLON] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_EQ] = ACTIONS(1082), + [anon_sym_QMARK] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_BSLASH] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1079), + [anon_sym_BQUOTE] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1082), + [sym__newline_token] = ACTIONS(1097), + [aux_sym_insert_token1] = ACTIONS(1100), + [aux_sym_delete_token1] = ACTIONS(1103), + [aux_sym_highlight_token1] = ACTIONS(1106), + [aux_sym_edit_comment_token1] = ACTIONS(1109), + [anon_sym_CARET_LBRACK] = ACTIONS(1112), + [anon_sym_LBRACK_CARET] = ACTIONS(1115), + [sym_uri_autolink] = ACTIONS(1076), + [sym_email_autolink] = ACTIONS(1076), + [sym__whitespace_ge_2] = ACTIONS(1118), + [aux_sym__whitespace_token1] = ACTIONS(1121), + [sym__word_no_digit] = ACTIONS(1124), + [sym__digits] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1127), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1124), + [sym__code_span_start] = ACTIONS(1130), + [sym__emphasis_open_star] = ACTIONS(1133), + [sym__emphasis_open_underscore] = ACTIONS(1136), + [sym__emphasis_close_star] = ACTIONS(1139), + [sym__strikeout_open] = ACTIONS(1141), + [sym__latex_span_start] = ACTIONS(1144), + [sym__single_quote_open] = ACTIONS(1147), + [sym__double_quote_open] = ACTIONS(1150), + [sym__superscript_open] = ACTIONS(1153), + [sym__subscript_open] = ACTIONS(1156), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1159), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1162), + [sym__cite_author_in_text] = ACTIONS(1165), + [sym__cite_suppress_author] = ACTIONS(1168), + [sym__shortcode_open_escaped] = ACTIONS(1171), + [sym__shortcode_open] = ACTIONS(1174), + [sym__unclosed_span] = ACTIONS(1076), + [sym__strong_emphasis_open_star] = ACTIONS(1177), + [sym__strong_emphasis_open_underscore] = ACTIONS(1180), }, [STATE(40)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), - [sym__link_text] = STATE(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1075), - [sym_entity_reference] = ACTIONS(1078), - [sym_numeric_character_reference] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1081), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(1084), - [anon_sym_POUND] = ACTIONS(1084), - [anon_sym_DOLLAR] = ACTIONS(1084), - [anon_sym_PERCENT] = ACTIONS(1084), - [anon_sym_AMP] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(1084), - [anon_sym_COMMA] = ACTIONS(1084), - [anon_sym_DASH] = ACTIONS(1081), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_SLASH] = ACTIONS(1084), - [anon_sym_COLON] = ACTIONS(1084), - [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_BSLASH] = ACTIONS(1093), - [anon_sym_CARET] = ACTIONS(1081), - [anon_sym_BQUOTE] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(1096), - [anon_sym_PIPE] = ACTIONS(1084), - [anon_sym_TILDE] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1084), - [anon_sym_RPAREN] = ACTIONS(1084), - [sym__newline_token] = ACTIONS(1099), - [aux_sym_insert_token1] = ACTIONS(1102), - [aux_sym_delete_token1] = ACTIONS(1105), - [aux_sym_highlight_token1] = ACTIONS(1108), - [aux_sym_edit_comment_token1] = ACTIONS(1111), - [anon_sym_CARET_LBRACK] = ACTIONS(1114), - [anon_sym_LBRACK_CARET] = ACTIONS(1117), - [sym_uri_autolink] = ACTIONS(1078), - [sym_email_autolink] = ACTIONS(1078), - [sym__whitespace_ge_2] = ACTIONS(1120), - [aux_sym__whitespace_token1] = ACTIONS(1123), - [sym__word_no_digit] = ACTIONS(1126), - [sym__digits] = ACTIONS(1126), - [anon_sym_DASH_DASH] = ACTIONS(1129), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1126), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1126), - [sym__code_span_start] = ACTIONS(1132), - [sym__emphasis_open_star] = ACTIONS(1135), - [sym__emphasis_open_underscore] = ACTIONS(1138), - [sym__emphasis_close_star] = ACTIONS(1141), - [sym__strikeout_open] = ACTIONS(1143), - [sym__latex_span_start] = ACTIONS(1146), - [sym__single_quote_open] = ACTIONS(1149), - [sym__double_quote_open] = ACTIONS(1152), - [sym__superscript_open] = ACTIONS(1155), - [sym__subscript_open] = ACTIONS(1158), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1161), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1164), - [sym__cite_author_in_text] = ACTIONS(1167), - [sym__cite_suppress_author] = ACTIONS(1170), - [sym__shortcode_open_escaped] = ACTIONS(1173), - [sym__shortcode_open] = ACTIONS(1176), - [sym__unclosed_span] = ACTIONS(1078), - [sym__strong_emphasis_open_star] = ACTIONS(1179), - [sym__strong_emphasis_open_underscore] = ACTIONS(1182), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), + [sym__emphasis_close_underscore] = ACTIONS(1183), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(41)] = { - [sym_backslash_escape] = STATE(459), - [sym_commonmark_attribute] = STATE(459), - [sym_code_span] = STATE(459), - [sym_latex_span] = STATE(459), - [sym_insert] = STATE(459), - [sym_delete] = STATE(459), - [sym_highlight] = STATE(459), - [sym_edit_comment] = STATE(459), - [sym_superscript] = STATE(459), - [sym_subscript] = STATE(459), - [sym_strikeout] = STATE(459), - [sym_quoted_span] = STATE(459), - [sym_inline_note] = STATE(459), - [sym_citation] = STATE(459), - [sym_shortcode_escaped] = STATE(459), - [sym_shortcode] = STATE(459), - [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), - [sym_inline_link] = STATE(23), - [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), - [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), - [sym__inline_base] = STATE(23), - [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(23), - [sym__emphasis_star] = STATE(23), - [sym__strong_emphasis_star] = STATE(23), - [sym__emphasis_underscore] = STATE(23), - [sym__strong_emphasis_underscore] = STATE(23), - [aux_sym_insert_repeat1] = STATE(23), - [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), - [sym__strikeout_close] = ACTIONS(1185), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), - }, - [STATE(42)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(1187), - [sym_entity_reference] = ACTIONS(1190), - [sym_numeric_character_reference] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1196), - [anon_sym_POUND] = ACTIONS(1196), - [anon_sym_DOLLAR] = ACTIONS(1196), - [anon_sym_PERCENT] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1193), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_DOT] = ACTIONS(1193), - [anon_sym_SLASH] = ACTIONS(1196), - [anon_sym_COLON] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym_EQ] = ACTIONS(1196), - [anon_sym_QMARK] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_BSLASH] = ACTIONS(1205), - [anon_sym_CARET] = ACTIONS(1193), - [anon_sym_BQUOTE] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_TILDE] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_RPAREN] = ACTIONS(1196), - [sym__newline_token] = ACTIONS(1211), - [aux_sym_insert_token1] = ACTIONS(1214), - [aux_sym_delete_token1] = ACTIONS(1217), - [aux_sym_highlight_token1] = ACTIONS(1220), - [aux_sym_edit_comment_token1] = ACTIONS(1223), - [anon_sym_CARET_LBRACK] = ACTIONS(1226), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1190), - [sym_email_autolink] = ACTIONS(1190), - [sym__whitespace_ge_2] = ACTIONS(1232), - [aux_sym__whitespace_token1] = ACTIONS(1235), - [sym__word_no_digit] = ACTIONS(1238), - [sym__digits] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1238), - [sym__code_span_start] = ACTIONS(1244), - [sym__emphasis_open_star] = ACTIONS(1247), - [sym__emphasis_open_underscore] = ACTIONS(1250), - [sym__emphasis_close_underscore] = ACTIONS(1253), - [sym__strikeout_open] = ACTIONS(1255), - [sym__latex_span_start] = ACTIONS(1258), - [sym__single_quote_open] = ACTIONS(1261), - [sym__double_quote_open] = ACTIONS(1264), - [sym__superscript_open] = ACTIONS(1267), - [sym__subscript_open] = ACTIONS(1270), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1273), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1276), - [sym__cite_author_in_text] = ACTIONS(1279), - [sym__cite_suppress_author] = ACTIONS(1282), - [sym__shortcode_open_escaped] = ACTIONS(1285), - [sym__shortcode_open] = ACTIONS(1288), - [sym__unclosed_span] = ACTIONS(1190), - [sym__strong_emphasis_open_star] = ACTIONS(1291), - [sym__strong_emphasis_open_underscore] = ACTIONS(1294), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(1185), + [sym_entity_reference] = ACTIONS(1188), + [sym_numeric_character_reference] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1194), + [anon_sym_POUND] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1194), + [anon_sym_PERCENT] = ACTIONS(1194), + [anon_sym_AMP] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_COMMA] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1194), + [anon_sym_COLON] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1194), + [anon_sym_EQ] = ACTIONS(1194), + [anon_sym_QMARK] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1200), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_RPAREN] = ACTIONS(1194), + [sym__newline_token] = ACTIONS(1209), + [aux_sym_insert_token1] = ACTIONS(1212), + [aux_sym_delete_token1] = ACTIONS(1215), + [aux_sym_highlight_token1] = ACTIONS(1218), + [aux_sym_edit_comment_token1] = ACTIONS(1221), + [anon_sym_CARET_LBRACK] = ACTIONS(1224), + [anon_sym_LBRACK_CARET] = ACTIONS(1227), + [sym_uri_autolink] = ACTIONS(1188), + [sym_email_autolink] = ACTIONS(1188), + [sym__whitespace_ge_2] = ACTIONS(1230), + [aux_sym__whitespace_token1] = ACTIONS(1233), + [sym__word_no_digit] = ACTIONS(1236), + [sym__digits] = ACTIONS(1236), + [anon_sym_DASH_DASH] = ACTIONS(1239), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1236), + [sym__code_span_start] = ACTIONS(1242), + [sym__emphasis_open_star] = ACTIONS(1245), + [sym__emphasis_open_underscore] = ACTIONS(1248), + [sym__emphasis_close_underscore] = ACTIONS(1251), + [sym__strikeout_open] = ACTIONS(1253), + [sym__latex_span_start] = ACTIONS(1256), + [sym__single_quote_open] = ACTIONS(1259), + [sym__double_quote_open] = ACTIONS(1262), + [sym__superscript_open] = ACTIONS(1265), + [sym__subscript_open] = ACTIONS(1268), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1274), + [sym__cite_author_in_text] = ACTIONS(1277), + [sym__cite_suppress_author] = ACTIONS(1280), + [sym__shortcode_open_escaped] = ACTIONS(1283), + [sym__shortcode_open] = ACTIONS(1286), + [sym__unclosed_span] = ACTIONS(1188), + [sym__strong_emphasis_open_star] = ACTIONS(1289), + [sym__strong_emphasis_open_underscore] = ACTIONS(1292), }, - [STATE(43)] = { + [STATE(42)] = { [sym_backslash_escape] = STATE(459), [sym_commonmark_attribute] = STATE(459), [sym_code_span] = STATE(459), @@ -34339,93 +34234,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), - [sym_inline_link] = STATE(43), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), + [sym_inline_link] = STATE(42), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), - [sym__inline_base] = STATE(43), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), + [sym__inline_base] = STATE(42), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(43), - [sym__emphasis_star] = STATE(43), - [sym__strong_emphasis_star] = STATE(43), - [sym__emphasis_underscore] = STATE(43), - [sym__strong_emphasis_underscore] = STATE(43), - [aux_sym_insert_repeat1] = STATE(43), + [sym__inline_element] = STATE(42), + [sym__emphasis_star] = STATE(42), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(42), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym_insert_repeat1] = STATE(42), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(1297), - [sym_entity_reference] = ACTIONS(1300), - [sym_numeric_character_reference] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1303), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1306), - [anon_sym_PERCENT] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_COMMA] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(1303), - [anon_sym_SLASH] = ACTIONS(1306), - [anon_sym_COLON] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_QMARK] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_BSLASH] = ACTIONS(1315), - [anon_sym_CARET] = ACTIONS(1303), - [anon_sym_BQUOTE] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_RPAREN] = ACTIONS(1306), - [sym__newline_token] = ACTIONS(1321), - [aux_sym_insert_token1] = ACTIONS(1324), - [aux_sym_delete_token1] = ACTIONS(1327), - [aux_sym_highlight_token1] = ACTIONS(1330), - [aux_sym_edit_comment_token1] = ACTIONS(1333), - [anon_sym_CARET_LBRACK] = ACTIONS(1336), - [anon_sym_LBRACK_CARET] = ACTIONS(1339), - [sym_uri_autolink] = ACTIONS(1300), - [sym_email_autolink] = ACTIONS(1300), - [sym__whitespace_ge_2] = ACTIONS(1342), - [aux_sym__whitespace_token1] = ACTIONS(1345), - [sym__word_no_digit] = ACTIONS(1348), - [sym__digits] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1351), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1348), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1348), - [sym__code_span_start] = ACTIONS(1354), - [sym__emphasis_open_star] = ACTIONS(1357), - [sym__emphasis_open_underscore] = ACTIONS(1360), - [sym__strikeout_open] = ACTIONS(1363), - [sym__strikeout_close] = ACTIONS(1366), - [sym__latex_span_start] = ACTIONS(1368), - [sym__single_quote_open] = ACTIONS(1371), - [sym__double_quote_open] = ACTIONS(1374), - [sym__superscript_open] = ACTIONS(1377), - [sym__subscript_open] = ACTIONS(1380), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1383), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1386), - [sym__cite_author_in_text] = ACTIONS(1389), - [sym__cite_suppress_author] = ACTIONS(1392), - [sym__shortcode_open_escaped] = ACTIONS(1395), - [sym__shortcode_open] = ACTIONS(1398), - [sym__unclosed_span] = ACTIONS(1300), - [sym__strong_emphasis_open_star] = ACTIONS(1401), - [sym__strong_emphasis_open_underscore] = ACTIONS(1404), + [sym__backslash_escape] = ACTIONS(1295), + [sym_entity_reference] = ACTIONS(1298), + [sym_numeric_character_reference] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(1301), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1304), + [anon_sym_POUND] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_PERCENT] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_COMMA] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_SLASH] = ACTIONS(1304), + [anon_sym_COLON] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1304), + [anon_sym_QMARK] = ACTIONS(1304), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_BSLASH] = ACTIONS(1313), + [anon_sym_CARET] = ACTIONS(1301), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1304), + [sym__newline_token] = ACTIONS(1319), + [aux_sym_insert_token1] = ACTIONS(1322), + [aux_sym_delete_token1] = ACTIONS(1325), + [aux_sym_highlight_token1] = ACTIONS(1328), + [aux_sym_edit_comment_token1] = ACTIONS(1331), + [anon_sym_CARET_LBRACK] = ACTIONS(1334), + [anon_sym_LBRACK_CARET] = ACTIONS(1337), + [sym_uri_autolink] = ACTIONS(1298), + [sym_email_autolink] = ACTIONS(1298), + [sym__whitespace_ge_2] = ACTIONS(1340), + [aux_sym__whitespace_token1] = ACTIONS(1343), + [sym__word_no_digit] = ACTIONS(1346), + [sym__digits] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1346), + [sym__code_span_start] = ACTIONS(1352), + [sym__emphasis_open_star] = ACTIONS(1355), + [sym__emphasis_open_underscore] = ACTIONS(1358), + [sym__strikeout_open] = ACTIONS(1361), + [sym__strikeout_close] = ACTIONS(1364), + [sym__latex_span_start] = ACTIONS(1366), + [sym__single_quote_open] = ACTIONS(1369), + [sym__double_quote_open] = ACTIONS(1372), + [sym__superscript_open] = ACTIONS(1375), + [sym__subscript_open] = ACTIONS(1378), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1381), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1384), + [sym__cite_author_in_text] = ACTIONS(1387), + [sym__cite_suppress_author] = ACTIONS(1390), + [sym__shortcode_open_escaped] = ACTIONS(1393), + [sym__shortcode_open] = ACTIONS(1396), + [sym__unclosed_span] = ACTIONS(1298), + [sym__strong_emphasis_open_star] = ACTIONS(1399), + [sym__strong_emphasis_open_underscore] = ACTIONS(1402), }, - [STATE(44)] = { + [STATE(43)] = { [sym_backslash_escape] = STATE(452), [sym_commonmark_attribute] = STATE(452), [sym_code_span] = STATE(452), @@ -34443,25 +34338,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(46), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -34486,7 +34381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(83), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_BSLASH] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1407), + [anon_sym_RBRACK] = ACTIONS(1405), [anon_sym_CARET] = ACTIONS(81), [anon_sym_BQUOTE] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(93), @@ -34529,7 +34424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(149), [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(45)] = { + [STATE(44)] = { [sym_backslash_escape] = STATE(452), [sym_commonmark_attribute] = STATE(452), [sym_code_span] = STATE(452), @@ -34547,17 +34442,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -34590,7 +34485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(83), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_BSLASH] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1407), [anon_sym_CARET] = ACTIONS(81), [anon_sym_BQUOTE] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(93), @@ -34633,6 +34528,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(149), [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, + [STATE(45)] = { + [sym_backslash_escape] = STATE(459), + [sym_commonmark_attribute] = STATE(459), + [sym_code_span] = STATE(459), + [sym_latex_span] = STATE(459), + [sym_insert] = STATE(459), + [sym_delete] = STATE(459), + [sym_highlight] = STATE(459), + [sym_edit_comment] = STATE(459), + [sym_superscript] = STATE(459), + [sym_subscript] = STATE(459), + [sym_strikeout] = STATE(459), + [sym_quoted_span] = STATE(459), + [sym_inline_note] = STATE(459), + [sym_citation] = STATE(459), + [sym_shortcode_escaped] = STATE(459), + [sym_shortcode] = STATE(459), + [sym_note_reference] = STATE(459), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), + [sym_inline_link] = STATE(22), + [sym_image] = STATE(459), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), + [sym_hard_line_break] = STATE(459), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), + [sym__inline_base] = STATE(22), + [sym__text_base] = STATE(459), + [sym__inline_element] = STATE(22), + [sym__emphasis_star] = STATE(22), + [sym__strong_emphasis_star] = STATE(22), + [sym__emphasis_underscore] = STATE(22), + [sym__strong_emphasis_underscore] = STATE(22), + [aux_sym_insert_repeat1] = STATE(22), + [aux_sym__inline_base_repeat1] = STATE(459), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), + [sym__strikeout_close] = ACTIONS(1409), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), + }, [STATE(46)] = { [sym_backslash_escape] = STATE(452), [sym_commonmark_attribute] = STATE(452), @@ -34651,25 +34650,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(46), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(1411), [sym_entity_reference] = ACTIONS(1414), @@ -34694,7 +34693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1420), [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_BSLASH] = ACTIONS(1429), - [anon_sym_RBRACK] = ACTIONS(963), + [anon_sym_RBRACK] = ACTIONS(961), [anon_sym_CARET] = ACTIONS(1417), [anon_sym_BQUOTE] = ACTIONS(1420), [anon_sym_LBRACE] = ACTIONS(1432), @@ -34759,13 +34758,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(47), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(47), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(47), @@ -34838,7 +34837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__shortcode_open] = ACTIONS(1618), [sym__unclosed_span] = ACTIONS(1522), [sym__strong_emphasis_open_star] = ACTIONS(1621), - [sym__strong_emphasis_close_star] = ACTIONS(1141), + [sym__strong_emphasis_close_star] = ACTIONS(1139), [sym__strong_emphasis_open_underscore] = ACTIONS(1624), }, [STATE(48)] = { @@ -34863,13 +34862,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(48), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(48), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(48), @@ -34943,7 +34942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unclosed_span] = ACTIONS(1630), [sym__strong_emphasis_open_star] = ACTIONS(1729), [sym__strong_emphasis_open_underscore] = ACTIONS(1732), - [sym__strong_emphasis_close_underscore] = ACTIONS(1253), + [sym__strong_emphasis_close_underscore] = ACTIONS(1251), }, [STATE(49)] = { [sym_backslash_escape] = STATE(462), @@ -34963,17 +34962,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(49), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(49), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(49), @@ -35035,7 +35034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strikeout_open] = ACTIONS(1801), [sym__latex_span_start] = ACTIONS(1804), [sym__single_quote_open] = ACTIONS(1807), - [sym__single_quote_close] = ACTIONS(1366), + [sym__single_quote_close] = ACTIONS(1364), [sym__double_quote_open] = ACTIONS(1810), [sym__superscript_open] = ACTIONS(1813), [sym__subscript_open] = ACTIONS(1816), @@ -35050,43 +35049,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(1840), }, [STATE(50)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(50), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(50), [sym__emphasis_star] = STATE(50), [sym__strong_emphasis_star] = STATE(50), [sym__emphasis_underscore] = STATE(50), [sym__strong_emphasis_underscore] = STATE(50), [aux_sym_insert_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(465), + [aux_sym__inline_base_repeat1] = STATE(466), [sym__backslash_escape] = ACTIONS(1843), [sym_entity_reference] = ACTIONS(1846), [sym_numeric_character_reference] = ACTIONS(1846), @@ -35140,7 +35139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__latex_span_start] = ACTIONS(1912), [sym__single_quote_open] = ACTIONS(1915), [sym__double_quote_open] = ACTIONS(1918), - [sym__double_quote_close] = ACTIONS(1366), + [sym__double_quote_close] = ACTIONS(1364), [sym__superscript_open] = ACTIONS(1921), [sym__subscript_open] = ACTIONS(1924), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1927), @@ -35154,43 +35153,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(1948), }, [STATE(51)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(51), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(51), [sym__emphasis_star] = STATE(51), [sym__strong_emphasis_star] = STATE(51), [sym__emphasis_underscore] = STATE(51), [sym__strong_emphasis_underscore] = STATE(51), [aux_sym_insert_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(469), + [aux_sym__inline_base_repeat1] = STATE(470), [sym__backslash_escape] = ACTIONS(1951), [sym_entity_reference] = ACTIONS(1954), [sym_numeric_character_reference] = ACTIONS(1954), @@ -35245,7 +35244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__single_quote_open] = ACTIONS(2023), [sym__double_quote_open] = ACTIONS(2026), [sym__superscript_open] = ACTIONS(2029), - [sym__superscript_close] = ACTIONS(1366), + [sym__superscript_close] = ACTIONS(1364), [sym__subscript_open] = ACTIONS(2032), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2035), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2038), @@ -35279,13 +35278,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(52), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(52), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(52), @@ -35350,7 +35349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__double_quote_open] = ACTIONS(2134), [sym__superscript_open] = ACTIONS(2137), [sym__subscript_open] = ACTIONS(2140), - [sym__subscript_close] = ACTIONS(1366), + [sym__subscript_close] = ACTIONS(1364), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2143), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2146), [sym__cite_author_in_text] = ACTIONS(2149), @@ -35362,43 +35361,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(2164), }, [STATE(53)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(2167), [sym_entity_reference] = ACTIONS(2170), [sym_numeric_character_reference] = ACTIONS(2170), @@ -35431,7 +35430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(2176), [sym__newline_token] = ACTIONS(2191), [aux_sym_insert_token1] = ACTIONS(2194), - [aux_sym_insert_token2] = ACTIONS(1366), + [aux_sym_insert_token2] = ACTIONS(1364), [aux_sym_delete_token1] = ACTIONS(2197), [aux_sym_highlight_token1] = ACTIONS(2200), [aux_sym_edit_comment_token1] = ACTIONS(2203), @@ -35483,17 +35482,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -35526,7 +35525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(2284), [anon_sym_LBRACK] = ACTIONS(2290), [anon_sym_BSLASH] = ACTIONS(2293), - [anon_sym_RBRACK] = ACTIONS(1366), + [anon_sym_RBRACK] = ACTIONS(1364), [anon_sym_CARET] = ACTIONS(2281), [anon_sym_BQUOTE] = ACTIONS(2284), [anon_sym_LBRACE] = ACTIONS(2296), @@ -35587,17 +35586,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), [sym_inline_link] = STATE(68), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), [sym__inline_base] = STATE(68), [sym__text_base] = STATE(459), [sym__inline_element] = STATE(68), @@ -35607,71 +35606,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(68), [aux_sym_insert_repeat1] = STATE(68), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2383), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(56)] = { [sym_backslash_escape] = STATE(462), @@ -35691,17 +35690,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(69), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(69), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(69), @@ -35711,279 +35710,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(69), [aux_sym_insert_repeat1] = STATE(69), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2385), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(57)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(70), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(70), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(70), [sym__emphasis_star] = STATE(70), [sym__strong_emphasis_star] = STATE(70), [sym__emphasis_underscore] = STATE(70), [sym__strong_emphasis_underscore] = STATE(70), [aux_sym_insert_repeat1] = STATE(70), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2385), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(58)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(71), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(71), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(71), [sym__emphasis_star] = STATE(71), [sym__strong_emphasis_star] = STATE(71), [sym__emphasis_underscore] = STATE(71), [sym__strong_emphasis_underscore] = STATE(71), [aux_sym_insert_repeat1] = STATE(71), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2387), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(59)] = { [sym_backslash_escape] = STATE(472), @@ -36007,13 +36006,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(72), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(72), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(72), @@ -36023,71 +36022,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(72), [aux_sym_insert_repeat1] = STATE(72), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2389), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(60)] = { [sym_backslash_escape] = STATE(452), @@ -36107,25 +36106,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(75), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -36194,43 +36193,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(61)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(76), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(76), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(76), [sym__emphasis_star] = STATE(76), [sym__strong_emphasis_star] = STATE(76), [sym__emphasis_underscore] = STATE(76), [sym__strong_emphasis_underscore] = STATE(76), [aux_sym_insert_repeat1] = STATE(76), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -36298,43 +36297,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(62)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(77), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(77), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(77), [sym__emphasis_star] = STATE(77), [sym__strong_emphasis_star] = STATE(77), [sym__emphasis_underscore] = STATE(77), [sym__strong_emphasis_underscore] = STATE(77), [aux_sym_insert_repeat1] = STATE(77), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -36402,43 +36401,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(63)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(78), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(78), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(78), [sym__emphasis_star] = STATE(78), [sym__strong_emphasis_star] = STATE(78), [sym__emphasis_underscore] = STATE(78), [sym__strong_emphasis_underscore] = STATE(78), [aux_sym_insert_repeat1] = STATE(78), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -36506,43 +36505,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(64)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(79), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(79), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(79), [sym__emphasis_star] = STATE(79), [sym__strong_emphasis_star] = STATE(79), [sym__emphasis_underscore] = STATE(79), [sym__strong_emphasis_underscore] = STATE(79), [aux_sym_insert_repeat1] = STATE(79), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -36627,299 +36626,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), - [sym_inline_link] = STATE(24), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), + [sym_inline_link] = STATE(23), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), - [sym__inline_base] = STATE(24), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), + [sym__inline_base] = STATE(23), [sym__text_base] = STATE(462), - [sym__inline_element] = STATE(24), - [sym__emphasis_star] = STATE(24), - [sym__strong_emphasis_star] = STATE(24), - [sym__emphasis_underscore] = STATE(24), - [sym__strong_emphasis_underscore] = STATE(24), - [aux_sym_insert_repeat1] = STATE(24), + [sym__inline_element] = STATE(23), + [sym__emphasis_star] = STATE(23), + [sym__strong_emphasis_star] = STATE(23), + [sym__emphasis_underscore] = STATE(23), + [sym__strong_emphasis_underscore] = STATE(23), + [aux_sym_insert_repeat1] = STATE(23), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2401), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(66)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2403), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(67)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2405), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(68)] = { [sym_backslash_escape] = STATE(459), @@ -36939,91 +36938,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), - [sym_inline_link] = STATE(43), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), + [sym_inline_link] = STATE(42), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), - [sym__inline_base] = STATE(43), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), + [sym__inline_base] = STATE(42), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(43), - [sym__emphasis_star] = STATE(43), - [sym__strong_emphasis_star] = STATE(43), - [sym__emphasis_underscore] = STATE(43), - [sym__strong_emphasis_underscore] = STATE(43), - [aux_sym_insert_repeat1] = STATE(43), + [sym__inline_element] = STATE(42), + [sym__emphasis_star] = STATE(42), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(42), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym_insert_repeat1] = STATE(42), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2407), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(69)] = { [sym_backslash_escape] = STATE(462), @@ -37043,17 +37042,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(49), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(49), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(49), @@ -37063,279 +37062,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(49), [aux_sym_insert_repeat1] = STATE(49), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2409), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(70)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(50), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(50), [sym__emphasis_star] = STATE(50), [sym__strong_emphasis_star] = STATE(50), [sym__emphasis_underscore] = STATE(50), [sym__strong_emphasis_underscore] = STATE(50), [aux_sym_insert_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2409), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(71)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(51), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(51), [sym__emphasis_star] = STATE(51), [sym__strong_emphasis_star] = STATE(51), [sym__emphasis_underscore] = STATE(51), [sym__strong_emphasis_underscore] = STATE(51), [aux_sym_insert_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2411), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(72)] = { [sym_backslash_escape] = STATE(472), @@ -37359,13 +37358,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(52), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(52), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(52), @@ -37375,71 +37374,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(52), [aux_sym_insert_repeat1] = STATE(52), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(73)] = { [sym_backslash_escape] = STATE(474), @@ -37463,13 +37462,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(47), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(47), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(47), @@ -37479,71 +37478,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(47), [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), [sym__strong_emphasis_close_star] = ACTIONS(2415), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(74)] = { [sym_backslash_escape] = STATE(456), @@ -37567,13 +37566,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(48), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(48), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(48), @@ -37583,70 +37582,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(48), [sym__strong_emphasis_underscore] = STATE(48), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), [sym__strong_emphasis_close_underscore] = ACTIONS(2417), }, [STATE(75)] = { @@ -37667,25 +37666,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(46), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -37754,43 +37753,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(76)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -37858,43 +37857,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(77)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -37962,43 +37961,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(78)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -38066,43 +38065,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(79)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -38187,17 +38186,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(84), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(84), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(84), @@ -38291,17 +38290,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -38378,212 +38377,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(82)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2433), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(83)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2435), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(84)] = { [sym_backslash_escape] = STATE(452), @@ -38603,17 +38602,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -38707,17 +38706,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), [sym_inline_link] = STATE(98), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), [sym__inline_base] = STATE(98), [sym__text_base] = STATE(459), [sym__inline_element] = STATE(98), @@ -38727,71 +38726,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(98), [aux_sym_insert_repeat1] = STATE(98), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2439), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(86)] = { [sym_backslash_escape] = STATE(462), @@ -38811,17 +38810,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(99), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(99), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(99), @@ -38831,279 +38830,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(99), [aux_sym_insert_repeat1] = STATE(99), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2441), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(87)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(100), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(100), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(100), [sym__emphasis_star] = STATE(100), [sym__strong_emphasis_star] = STATE(100), [sym__emphasis_underscore] = STATE(100), [sym__strong_emphasis_underscore] = STATE(100), [aux_sym_insert_repeat1] = STATE(100), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2441), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(88)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(101), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(101), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(101), [sym__emphasis_star] = STATE(101), [sym__strong_emphasis_star] = STATE(101), [sym__emphasis_underscore] = STATE(101), [sym__strong_emphasis_underscore] = STATE(101), [aux_sym_insert_repeat1] = STATE(101), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2443), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(89)] = { [sym_backslash_escape] = STATE(472), @@ -39127,13 +39126,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(102), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(102), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(102), @@ -39143,71 +39142,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(102), [aux_sym_insert_repeat1] = STATE(102), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2445), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(90)] = { [sym_backslash_escape] = STATE(452), @@ -39227,25 +39226,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(105), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -39314,43 +39313,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(91)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(106), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(106), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(106), [sym__emphasis_star] = STATE(106), [sym__strong_emphasis_star] = STATE(106), [sym__emphasis_underscore] = STATE(106), [sym__strong_emphasis_underscore] = STATE(106), [aux_sym_insert_repeat1] = STATE(106), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -39418,43 +39417,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(92)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(107), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(107), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(107), [sym__emphasis_star] = STATE(107), [sym__strong_emphasis_star] = STATE(107), [sym__emphasis_underscore] = STATE(107), [sym__strong_emphasis_underscore] = STATE(107), [aux_sym_insert_repeat1] = STATE(107), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -39522,43 +39521,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(93)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(108), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(108), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(108), [sym__emphasis_star] = STATE(108), [sym__strong_emphasis_star] = STATE(108), [sym__emphasis_underscore] = STATE(108), [sym__strong_emphasis_underscore] = STATE(108), [aux_sym_insert_repeat1] = STATE(108), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -39626,43 +39625,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(94)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(109), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(109), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(109), [sym__emphasis_star] = STATE(109), [sym__strong_emphasis_star] = STATE(109), [sym__emphasis_underscore] = STATE(109), [sym__strong_emphasis_underscore] = STATE(109), [aux_sym_insert_repeat1] = STATE(109), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -39730,6 +39729,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(95)] = { + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), + [sym_inline_link] = STATE(24), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), + [sym__inline_base] = STATE(24), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(24), + [sym__emphasis_star] = STATE(24), + [sym__strong_emphasis_star] = STATE(24), + [sym__emphasis_underscore] = STATE(24), + [sym__strong_emphasis_underscore] = STATE(24), + [aux_sym_insert_repeat1] = STATE(24), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), + [sym__double_quote_close] = ACTIONS(2401), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), + }, + [STATE(96)] = { [sym_backslash_escape] = STATE(465), [sym_commonmark_attribute] = STATE(465), [sym_code_span] = STATE(465), @@ -39747,299 +39850,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(465), [sym_shortcode] = STATE(465), [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), - [sym_inline_link] = STATE(25), + [sym__link_text] = STATE(515), + [sym__link_text_non_empty] = STATE(516), + [sym_inline_link] = STATE(39), [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), - [sym__inline_base] = STATE(25), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), [sym__text_base] = STATE(465), - [sym__inline_element] = STATE(25), - [sym__emphasis_star] = STATE(25), - [sym__strong_emphasis_star] = STATE(25), - [sym__emphasis_underscore] = STATE(25), - [sym__strong_emphasis_underscore] = STATE(25), - [aux_sym_insert_repeat1] = STATE(25), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), - [sym__double_quote_close] = ACTIONS(2401), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), - }, - [STATE(96)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), - [sym__link_text] = STATE(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2457), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(97)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2459), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(98)] = { [sym_backslash_escape] = STATE(459), @@ -40059,91 +40058,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), - [sym_inline_link] = STATE(43), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), + [sym_inline_link] = STATE(42), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), - [sym__inline_base] = STATE(43), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), + [sym__inline_base] = STATE(42), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(43), - [sym__emphasis_star] = STATE(43), - [sym__strong_emphasis_star] = STATE(43), - [sym__emphasis_underscore] = STATE(43), - [sym__strong_emphasis_underscore] = STATE(43), - [aux_sym_insert_repeat1] = STATE(43), + [sym__inline_element] = STATE(42), + [sym__emphasis_star] = STATE(42), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(42), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym_insert_repeat1] = STATE(42), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2461), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(99)] = { [sym_backslash_escape] = STATE(462), @@ -40163,17 +40162,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(49), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(49), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(49), @@ -40183,279 +40182,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(49), [aux_sym_insert_repeat1] = STATE(49), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2463), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(100)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(50), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(50), [sym__emphasis_star] = STATE(50), [sym__strong_emphasis_star] = STATE(50), [sym__emphasis_underscore] = STATE(50), [sym__strong_emphasis_underscore] = STATE(50), [aux_sym_insert_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2463), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(101)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(51), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(51), [sym__emphasis_star] = STATE(51), [sym__strong_emphasis_star] = STATE(51), [sym__emphasis_underscore] = STATE(51), [sym__strong_emphasis_underscore] = STATE(51), [aux_sym_insert_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2465), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(102)] = { [sym_backslash_escape] = STATE(472), @@ -40479,13 +40478,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(52), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(52), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(52), @@ -40495,71 +40494,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(52), [aux_sym_insert_repeat1] = STATE(52), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2467), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(103)] = { [sym_backslash_escape] = STATE(474), @@ -40583,13 +40582,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(47), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(47), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(47), @@ -40599,71 +40598,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(47), [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), [sym__strong_emphasis_close_star] = ACTIONS(2469), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(104)] = { [sym_backslash_escape] = STATE(456), @@ -40687,13 +40686,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(48), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(48), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(48), @@ -40703,70 +40702,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(48), [sym__strong_emphasis_underscore] = STATE(48), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), [sym__strong_emphasis_close_underscore] = ACTIONS(2471), }, [STATE(105)] = { @@ -40787,25 +40786,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(46), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -40874,43 +40873,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(106)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -40978,43 +40977,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(107)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -41082,43 +41081,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(108)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -41186,43 +41185,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(109)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -41307,17 +41306,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(114), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(114), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(114), @@ -41411,17 +41410,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -41498,212 +41497,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(112)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2487), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(113)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2489), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(114)] = { [sym_backslash_escape] = STATE(452), @@ -41723,17 +41722,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -41827,17 +41826,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), [sym_inline_link] = STATE(128), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), [sym__inline_base] = STATE(128), [sym__text_base] = STATE(459), [sym__inline_element] = STATE(128), @@ -41847,71 +41846,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(128), [aux_sym_insert_repeat1] = STATE(128), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2493), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(116)] = { [sym_backslash_escape] = STATE(462), @@ -41931,17 +41930,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(129), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(129), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(129), @@ -41951,279 +41950,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(129), [aux_sym_insert_repeat1] = STATE(129), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2495), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(117)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(130), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(130), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(130), [sym__emphasis_star] = STATE(130), [sym__strong_emphasis_star] = STATE(130), [sym__emphasis_underscore] = STATE(130), [sym__strong_emphasis_underscore] = STATE(130), [aux_sym_insert_repeat1] = STATE(130), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(118)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(131), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(131), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(131), [sym__emphasis_star] = STATE(131), [sym__strong_emphasis_star] = STATE(131), [sym__emphasis_underscore] = STATE(131), [sym__strong_emphasis_underscore] = STATE(131), [aux_sym_insert_repeat1] = STATE(131), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2497), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(119)] = { [sym_backslash_escape] = STATE(472), @@ -42247,13 +42246,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(132), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(132), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(132), @@ -42263,71 +42262,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(132), [aux_sym_insert_repeat1] = STATE(132), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2499), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(120)] = { [sym_backslash_escape] = STATE(452), @@ -42347,25 +42346,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(135), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -42434,43 +42433,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(121)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(136), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(136), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(136), [sym__emphasis_star] = STATE(136), [sym__strong_emphasis_star] = STATE(136), [sym__emphasis_underscore] = STATE(136), [sym__strong_emphasis_underscore] = STATE(136), [aux_sym_insert_repeat1] = STATE(136), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -42538,43 +42537,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(122)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(137), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(137), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(137), [sym__emphasis_star] = STATE(137), [sym__strong_emphasis_star] = STATE(137), [sym__emphasis_underscore] = STATE(137), [sym__strong_emphasis_underscore] = STATE(137), [aux_sym_insert_repeat1] = STATE(137), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -42642,43 +42641,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(123)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(138), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(138), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(138), [sym__emphasis_star] = STATE(138), [sym__strong_emphasis_star] = STATE(138), [sym__emphasis_underscore] = STATE(138), [sym__strong_emphasis_underscore] = STATE(138), [aux_sym_insert_repeat1] = STATE(138), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -42746,43 +42745,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(124)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(139), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(139), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(139), [sym__emphasis_star] = STATE(139), [sym__strong_emphasis_star] = STATE(139), [sym__emphasis_underscore] = STATE(139), [sym__strong_emphasis_underscore] = STATE(139), [aux_sym_insert_repeat1] = STATE(139), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -42850,316 +42849,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(125)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), - [sym_inline_link] = STATE(26), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), - [sym__inline_base] = STATE(26), - [sym__text_base] = STATE(469), - [sym__inline_element] = STATE(26), - [sym__emphasis_star] = STATE(26), - [sym__strong_emphasis_star] = STATE(26), - [sym__emphasis_underscore] = STATE(26), - [sym__strong_emphasis_underscore] = STATE(26), - [aux_sym_insert_repeat1] = STATE(26), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), - [sym__superscript_close] = ACTIONS(2511), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), + [sym__link_text] = STATE(545), + [sym__link_text_non_empty] = STATE(546), + [sym_inline_link] = STATE(20), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(20), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(20), + [aux_sym__inline_no_underscore] = STATE(20), + [sym__emphasis_star] = STATE(20), + [sym__strong_emphasis_star] = STATE(20), + [sym__emphasis_underscore] = STATE(20), + [sym__strong_emphasis_underscore] = STATE(20), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), + [sym__last_token_punctuation] = ACTIONS(2511), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(126)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2513), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(127)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2515), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(128)] = { [sym_backslash_escape] = STATE(459), @@ -43179,91 +43178,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), - [sym_inline_link] = STATE(43), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), + [sym_inline_link] = STATE(42), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), - [sym__inline_base] = STATE(43), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), + [sym__inline_base] = STATE(42), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(43), - [sym__emphasis_star] = STATE(43), - [sym__strong_emphasis_star] = STATE(43), - [sym__emphasis_underscore] = STATE(43), - [sym__strong_emphasis_underscore] = STATE(43), - [aux_sym_insert_repeat1] = STATE(43), + [sym__inline_element] = STATE(42), + [sym__emphasis_star] = STATE(42), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(42), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym_insert_repeat1] = STATE(42), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2517), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(129)] = { [sym_backslash_escape] = STATE(462), @@ -43283,17 +43282,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(49), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(49), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(49), @@ -43303,279 +43302,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(49), [aux_sym_insert_repeat1] = STATE(49), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2519), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(130)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(50), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(50), [sym__emphasis_star] = STATE(50), [sym__strong_emphasis_star] = STATE(50), [sym__emphasis_underscore] = STATE(50), [sym__strong_emphasis_underscore] = STATE(50), [aux_sym_insert_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2519), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(131)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(51), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(51), [sym__emphasis_star] = STATE(51), [sym__strong_emphasis_star] = STATE(51), [sym__emphasis_underscore] = STATE(51), [sym__strong_emphasis_underscore] = STATE(51), [aux_sym_insert_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2521), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(132)] = { [sym_backslash_escape] = STATE(472), @@ -43599,13 +43598,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(52), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(52), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(52), @@ -43615,71 +43614,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(52), [aux_sym_insert_repeat1] = STATE(52), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(133)] = { [sym_backslash_escape] = STATE(474), @@ -43703,13 +43702,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(47), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(47), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(47), @@ -43719,71 +43718,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(47), [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), [sym__strong_emphasis_close_star] = ACTIONS(2525), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(134)] = { [sym_backslash_escape] = STATE(456), @@ -43807,13 +43806,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(48), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(48), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(48), @@ -43823,70 +43822,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(48), [sym__strong_emphasis_underscore] = STATE(48), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), [sym__strong_emphasis_close_underscore] = ACTIONS(2527), }, [STATE(135)] = { @@ -43907,25 +43906,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(46), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -43994,43 +43993,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(136)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -44098,43 +44097,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(137)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -44202,43 +44201,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(138)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -44306,43 +44305,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(139)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -44427,17 +44426,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(144), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(144), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(144), @@ -44531,17 +44530,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -44618,212 +44617,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(142)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2543), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(143)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2545), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(144)] = { [sym_backslash_escape] = STATE(452), @@ -44843,17 +44842,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -44947,17 +44946,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), [sym_inline_link] = STATE(158), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), [sym__inline_base] = STATE(158), [sym__text_base] = STATE(459), [sym__inline_element] = STATE(158), @@ -44967,71 +44966,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(158), [aux_sym_insert_repeat1] = STATE(158), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2549), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(146)] = { [sym_backslash_escape] = STATE(462), @@ -45051,17 +45050,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(159), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(159), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(159), @@ -45071,279 +45070,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(159), [aux_sym_insert_repeat1] = STATE(159), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2551), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(147)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(160), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(160), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(160), [sym__emphasis_star] = STATE(160), [sym__strong_emphasis_star] = STATE(160), [sym__emphasis_underscore] = STATE(160), [sym__strong_emphasis_underscore] = STATE(160), [aux_sym_insert_repeat1] = STATE(160), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2551), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(148)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(161), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(161), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(161), [sym__emphasis_star] = STATE(161), [sym__strong_emphasis_star] = STATE(161), [sym__emphasis_underscore] = STATE(161), [sym__strong_emphasis_underscore] = STATE(161), [aux_sym_insert_repeat1] = STATE(161), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2553), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(149)] = { [sym_backslash_escape] = STATE(472), @@ -45367,13 +45366,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(162), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(162), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(162), @@ -45383,71 +45382,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(162), [aux_sym_insert_repeat1] = STATE(162), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2555), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(150)] = { [sym_backslash_escape] = STATE(452), @@ -45467,25 +45466,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(165), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -45554,43 +45553,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(151)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(166), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(166), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(166), [sym__emphasis_star] = STATE(166), [sym__strong_emphasis_star] = STATE(166), [sym__emphasis_underscore] = STATE(166), [sym__strong_emphasis_underscore] = STATE(166), [aux_sym_insert_repeat1] = STATE(166), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -45658,43 +45657,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(152)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(167), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(167), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(167), [sym__emphasis_star] = STATE(167), [sym__strong_emphasis_star] = STATE(167), [sym__emphasis_underscore] = STATE(167), [sym__strong_emphasis_underscore] = STATE(167), [aux_sym_insert_repeat1] = STATE(167), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -45762,43 +45761,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(153)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(168), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(168), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(168), [sym__emphasis_star] = STATE(168), [sym__strong_emphasis_star] = STATE(168), [sym__emphasis_underscore] = STATE(168), [sym__strong_emphasis_underscore] = STATE(168), [aux_sym_insert_repeat1] = STATE(168), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -45866,43 +45865,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(154)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(169), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(169), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(169), [sym__emphasis_star] = STATE(169), [sym__strong_emphasis_star] = STATE(169), [sym__emphasis_underscore] = STATE(169), [sym__strong_emphasis_underscore] = STATE(169), [aux_sym_insert_repeat1] = STATE(169), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -45989,297 +45988,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note_reference] = STATE(472), [sym__link_text] = STATE(679), [sym__link_text_non_empty] = STATE(680), - [sym_inline_link] = STATE(27), + [sym_inline_link] = STATE(26), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), - [sym__inline_base] = STATE(27), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), + [sym__inline_base] = STATE(26), [sym__text_base] = STATE(472), - [sym__inline_element] = STATE(27), - [sym__emphasis_star] = STATE(27), - [sym__strong_emphasis_star] = STATE(27), - [sym__emphasis_underscore] = STATE(27), - [sym__strong_emphasis_underscore] = STATE(27), - [aux_sym_insert_repeat1] = STATE(27), + [sym__inline_element] = STATE(26), + [sym__emphasis_star] = STATE(26), + [sym__strong_emphasis_star] = STATE(26), + [sym__emphasis_underscore] = STATE(26), + [sym__strong_emphasis_underscore] = STATE(26), + [aux_sym_insert_repeat1] = STATE(26), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2567), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(156)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2569), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(157)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2571), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(158)] = { [sym_backslash_escape] = STATE(459), @@ -46299,91 +46298,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), - [sym_inline_link] = STATE(43), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), + [sym_inline_link] = STATE(42), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), - [sym__inline_base] = STATE(43), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), + [sym__inline_base] = STATE(42), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(43), - [sym__emphasis_star] = STATE(43), - [sym__strong_emphasis_star] = STATE(43), - [sym__emphasis_underscore] = STATE(43), - [sym__strong_emphasis_underscore] = STATE(43), - [aux_sym_insert_repeat1] = STATE(43), + [sym__inline_element] = STATE(42), + [sym__emphasis_star] = STATE(42), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(42), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym_insert_repeat1] = STATE(42), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2573), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(159)] = { [sym_backslash_escape] = STATE(462), @@ -46403,17 +46402,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(49), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(49), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(49), @@ -46423,279 +46422,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(49), [aux_sym_insert_repeat1] = STATE(49), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2575), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(160)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(50), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(50), [sym__emphasis_star] = STATE(50), [sym__strong_emphasis_star] = STATE(50), [sym__emphasis_underscore] = STATE(50), [sym__strong_emphasis_underscore] = STATE(50), [aux_sym_insert_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2575), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(161)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(51), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(51), [sym__emphasis_star] = STATE(51), [sym__strong_emphasis_star] = STATE(51), [sym__emphasis_underscore] = STATE(51), [sym__strong_emphasis_underscore] = STATE(51), [aux_sym_insert_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2577), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(162)] = { [sym_backslash_escape] = STATE(472), @@ -46719,13 +46718,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(52), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(52), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(52), @@ -46735,71 +46734,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(52), [aux_sym_insert_repeat1] = STATE(52), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2579), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(163)] = { [sym_backslash_escape] = STATE(474), @@ -46823,13 +46822,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(47), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(47), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(47), @@ -46839,71 +46838,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(47), [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), [sym__strong_emphasis_close_star] = ACTIONS(2581), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(164)] = { [sym_backslash_escape] = STATE(456), @@ -46927,13 +46926,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(48), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(48), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(48), @@ -46943,70 +46942,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(48), [sym__strong_emphasis_underscore] = STATE(48), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), [sym__strong_emphasis_close_underscore] = ACTIONS(2583), }, [STATE(165)] = { @@ -47027,25 +47026,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(46), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -47114,43 +47113,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(166)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -47218,43 +47217,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(167)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -47322,43 +47321,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(168)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -47426,43 +47425,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(169)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -47547,17 +47546,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(174), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(174), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(174), @@ -47651,17 +47650,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -47738,212 +47737,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(172)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2599), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(173)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2601), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(174)] = { [sym_backslash_escape] = STATE(452), @@ -47963,17 +47962,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -48067,17 +48066,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), [sym_inline_link] = STATE(187), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), [sym__inline_base] = STATE(187), [sym__text_base] = STATE(459), [sym__inline_element] = STATE(187), @@ -48087,71 +48086,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(187), [aux_sym_insert_repeat1] = STATE(187), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2605), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(176)] = { [sym_backslash_escape] = STATE(462), @@ -48171,17 +48170,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(188), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(188), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(188), @@ -48191,279 +48190,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(188), [aux_sym_insert_repeat1] = STATE(188), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2607), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(177)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(189), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(189), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(189), [sym__emphasis_star] = STATE(189), [sym__strong_emphasis_star] = STATE(189), [sym__emphasis_underscore] = STATE(189), [sym__strong_emphasis_underscore] = STATE(189), [aux_sym_insert_repeat1] = STATE(189), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2607), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(178)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(190), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(190), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(190), [sym__emphasis_star] = STATE(190), [sym__strong_emphasis_star] = STATE(190), [sym__emphasis_underscore] = STATE(190), [sym__strong_emphasis_underscore] = STATE(190), [aux_sym_insert_repeat1] = STATE(190), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2609), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(179)] = { [sym_backslash_escape] = STATE(472), @@ -48487,13 +48486,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(191), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(191), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(191), @@ -48503,71 +48502,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(191), [aux_sym_insert_repeat1] = STATE(191), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2611), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(180)] = { [sym_backslash_escape] = STATE(452), @@ -48587,25 +48586,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(194), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -48674,43 +48673,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(181)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(195), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(195), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(195), [sym__emphasis_star] = STATE(195), [sym__strong_emphasis_star] = STATE(195), [sym__emphasis_underscore] = STATE(195), [sym__strong_emphasis_underscore] = STATE(195), [aux_sym_insert_repeat1] = STATE(195), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -48778,43 +48777,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(182)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(196), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(196), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(196), [sym__emphasis_star] = STATE(196), [sym__strong_emphasis_star] = STATE(196), [sym__emphasis_underscore] = STATE(196), [sym__strong_emphasis_underscore] = STATE(196), [aux_sym_insert_repeat1] = STATE(196), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -48882,43 +48881,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(183)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(197), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(197), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(197), [sym__emphasis_star] = STATE(197), [sym__strong_emphasis_star] = STATE(197), [sym__emphasis_underscore] = STATE(197), [sym__strong_emphasis_underscore] = STATE(197), [aux_sym_insert_repeat1] = STATE(197), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -48986,43 +48985,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(184)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(198), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(198), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(198), [sym__emphasis_star] = STATE(198), [sym__strong_emphasis_star] = STATE(198), [sym__emphasis_underscore] = STATE(198), [sym__strong_emphasis_underscore] = STATE(198), [aux_sym_insert_repeat1] = STATE(198), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -49090,212 +49089,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(185)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2623), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(186)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2625), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(187)] = { [sym_backslash_escape] = STATE(459), @@ -49315,91 +49314,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), - [sym_inline_link] = STATE(43), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), + [sym_inline_link] = STATE(42), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), - [sym__inline_base] = STATE(43), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), + [sym__inline_base] = STATE(42), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(43), - [sym__emphasis_star] = STATE(43), - [sym__strong_emphasis_star] = STATE(43), - [sym__emphasis_underscore] = STATE(43), - [sym__strong_emphasis_underscore] = STATE(43), - [aux_sym_insert_repeat1] = STATE(43), + [sym__inline_element] = STATE(42), + [sym__emphasis_star] = STATE(42), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(42), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym_insert_repeat1] = STATE(42), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2627), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(188)] = { [sym_backslash_escape] = STATE(462), @@ -49419,17 +49418,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(49), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(49), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(49), @@ -49439,279 +49438,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(49), [aux_sym_insert_repeat1] = STATE(49), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2629), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(189)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(50), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(50), [sym__emphasis_star] = STATE(50), [sym__strong_emphasis_star] = STATE(50), [sym__emphasis_underscore] = STATE(50), [sym__strong_emphasis_underscore] = STATE(50), [aux_sym_insert_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2629), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(190)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(51), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(51), [sym__emphasis_star] = STATE(51), [sym__strong_emphasis_star] = STATE(51), [sym__emphasis_underscore] = STATE(51), [sym__strong_emphasis_underscore] = STATE(51), [aux_sym_insert_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2631), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(191)] = { [sym_backslash_escape] = STATE(472), @@ -49735,13 +49734,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(52), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(52), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(52), @@ -49751,71 +49750,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(52), [aux_sym_insert_repeat1] = STATE(52), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(192)] = { [sym_backslash_escape] = STATE(474), @@ -49839,13 +49838,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(47), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(47), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(47), @@ -49855,71 +49854,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(47), [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), [sym__strong_emphasis_close_star] = ACTIONS(2635), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(193)] = { [sym_backslash_escape] = STATE(456), @@ -49943,13 +49942,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(48), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(48), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(48), @@ -49959,70 +49958,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(48), [sym__strong_emphasis_underscore] = STATE(48), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), [sym__strong_emphasis_close_underscore] = ACTIONS(2637), }, [STATE(194)] = { @@ -50043,25 +50042,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(46), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -50130,43 +50129,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(195)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -50234,43 +50233,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(196)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -50338,43 +50337,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(197)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -50442,43 +50441,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(198)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -50563,17 +50562,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(203), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(203), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(203), @@ -50667,17 +50666,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -50754,212 +50753,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(201)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2653), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(202)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2655), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(203)] = { [sym_backslash_escape] = STATE(452), @@ -50979,17 +50978,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -51083,17 +51082,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), [sym_inline_link] = STATE(216), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), [sym__inline_base] = STATE(216), [sym__text_base] = STATE(459), [sym__inline_element] = STATE(216), @@ -51103,71 +51102,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(216), [aux_sym_insert_repeat1] = STATE(216), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2659), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(205)] = { [sym_backslash_escape] = STATE(462), @@ -51187,17 +51186,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(217), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(217), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(217), @@ -51207,279 +51206,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(217), [aux_sym_insert_repeat1] = STATE(217), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2661), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(206)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(218), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(218), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(218), [sym__emphasis_star] = STATE(218), [sym__strong_emphasis_star] = STATE(218), [sym__emphasis_underscore] = STATE(218), [sym__strong_emphasis_underscore] = STATE(218), [aux_sym_insert_repeat1] = STATE(218), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2661), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(207)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(219), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(219), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(219), [sym__emphasis_star] = STATE(219), [sym__strong_emphasis_star] = STATE(219), [sym__emphasis_underscore] = STATE(219), [sym__strong_emphasis_underscore] = STATE(219), [aux_sym_insert_repeat1] = STATE(219), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2663), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(208)] = { [sym_backslash_escape] = STATE(472), @@ -51503,13 +51502,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(220), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(220), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(220), @@ -51519,71 +51518,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(220), [aux_sym_insert_repeat1] = STATE(220), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(209)] = { [sym_backslash_escape] = STATE(452), @@ -51603,25 +51602,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(223), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -51690,43 +51689,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(210)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(224), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(224), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(224), [sym__emphasis_star] = STATE(224), [sym__strong_emphasis_star] = STATE(224), [sym__emphasis_underscore] = STATE(224), [sym__strong_emphasis_underscore] = STATE(224), [aux_sym_insert_repeat1] = STATE(224), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -51794,43 +51793,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(211)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(225), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(225), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(225), [sym__emphasis_star] = STATE(225), [sym__strong_emphasis_star] = STATE(225), [sym__emphasis_underscore] = STATE(225), [sym__strong_emphasis_underscore] = STATE(225), [aux_sym_insert_repeat1] = STATE(225), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -51898,43 +51897,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(212)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(226), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(226), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(226), [sym__emphasis_star] = STATE(226), [sym__strong_emphasis_star] = STATE(226), [sym__emphasis_underscore] = STATE(226), [sym__strong_emphasis_underscore] = STATE(226), [aux_sym_insert_repeat1] = STATE(226), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -52002,43 +52001,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(213)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(227), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(227), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(227), [sym__emphasis_star] = STATE(227), [sym__strong_emphasis_star] = STATE(227), [sym__emphasis_underscore] = STATE(227), [sym__strong_emphasis_underscore] = STATE(227), [aux_sym_insert_repeat1] = STATE(227), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -52106,212 +52105,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(214)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2677), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(215)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2679), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(216)] = { [sym_backslash_escape] = STATE(459), @@ -52331,91 +52330,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), - [sym_inline_link] = STATE(43), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), + [sym_inline_link] = STATE(42), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), - [sym__inline_base] = STATE(43), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), + [sym__inline_base] = STATE(42), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(43), - [sym__emphasis_star] = STATE(43), - [sym__strong_emphasis_star] = STATE(43), - [sym__emphasis_underscore] = STATE(43), - [sym__strong_emphasis_underscore] = STATE(43), - [aux_sym_insert_repeat1] = STATE(43), + [sym__inline_element] = STATE(42), + [sym__emphasis_star] = STATE(42), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(42), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym_insert_repeat1] = STATE(42), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2681), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(217)] = { [sym_backslash_escape] = STATE(462), @@ -52435,17 +52434,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(49), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(49), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(49), @@ -52455,279 +52454,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(49), [aux_sym_insert_repeat1] = STATE(49), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2683), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(218)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(50), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(50), [sym__emphasis_star] = STATE(50), [sym__strong_emphasis_star] = STATE(50), [sym__emphasis_underscore] = STATE(50), [sym__strong_emphasis_underscore] = STATE(50), [aux_sym_insert_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2683), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(219)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(51), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(51), [sym__emphasis_star] = STATE(51), [sym__strong_emphasis_star] = STATE(51), [sym__emphasis_underscore] = STATE(51), [sym__strong_emphasis_underscore] = STATE(51), [aux_sym_insert_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2685), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(220)] = { [sym_backslash_escape] = STATE(472), @@ -52751,13 +52750,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(52), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(52), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(52), @@ -52767,71 +52766,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(52), [aux_sym_insert_repeat1] = STATE(52), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(221)] = { [sym_backslash_escape] = STATE(474), @@ -52855,13 +52854,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(47), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(47), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(47), @@ -52871,71 +52870,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(47), [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), [sym__strong_emphasis_close_star] = ACTIONS(2689), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(222)] = { [sym_backslash_escape] = STATE(456), @@ -52959,13 +52958,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(48), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(48), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(48), @@ -52975,70 +52974,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(48), [sym__strong_emphasis_underscore] = STATE(48), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), [sym__strong_emphasis_close_underscore] = ACTIONS(2691), }, [STATE(223)] = { @@ -53059,25 +53058,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(46), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -53146,43 +53145,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(224)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -53250,43 +53249,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(225)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -53354,43 +53353,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(226)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -53458,43 +53457,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(227)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -53579,17 +53578,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(232), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(232), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(232), @@ -53683,17 +53682,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -53770,43 +53769,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(230)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), - [sym_inline_link] = STATE(32), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), - [sym__inline_base] = STATE(32), - [sym__text_base] = STATE(458), - [sym__inline_element] = STATE(32), - [sym__emphasis_star] = STATE(32), - [sym__strong_emphasis_star] = STATE(32), - [sym__emphasis_underscore] = STATE(32), - [sym__strong_emphasis_underscore] = STATE(32), - [aux_sym_insert_repeat1] = STATE(32), - [aux_sym__inline_base_repeat1] = STATE(458), + [sym_inline_link] = STATE(31), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), + [sym__inline_base] = STATE(31), + [sym__text_base] = STATE(455), + [sym__inline_element] = STATE(31), + [sym__emphasis_star] = STATE(31), + [sym__strong_emphasis_star] = STATE(31), + [sym__emphasis_underscore] = STATE(31), + [sym__strong_emphasis_underscore] = STATE(31), + [aux_sym_insert_repeat1] = STATE(31), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -53874,108 +53873,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(231)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2709), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(232)] = { [sym_backslash_escape] = STATE(452), @@ -53995,17 +53994,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -54099,17 +54098,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), [sym_inline_link] = STATE(245), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), [sym__inline_base] = STATE(245), [sym__text_base] = STATE(459), [sym__inline_element] = STATE(245), @@ -54119,71 +54118,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(245), [aux_sym_insert_repeat1] = STATE(245), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2713), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(234)] = { [sym_backslash_escape] = STATE(462), @@ -54203,17 +54202,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(246), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(246), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(246), @@ -54223,279 +54222,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(246), [aux_sym_insert_repeat1] = STATE(246), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2715), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(235)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(247), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(247), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(247), [sym__emphasis_star] = STATE(247), [sym__strong_emphasis_star] = STATE(247), [sym__emphasis_underscore] = STATE(247), [sym__strong_emphasis_underscore] = STATE(247), [aux_sym_insert_repeat1] = STATE(247), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2715), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(236)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(248), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(248), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(248), [sym__emphasis_star] = STATE(248), [sym__strong_emphasis_star] = STATE(248), [sym__emphasis_underscore] = STATE(248), [sym__strong_emphasis_underscore] = STATE(248), [aux_sym_insert_repeat1] = STATE(248), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2717), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(237)] = { [sym_backslash_escape] = STATE(472), @@ -54519,13 +54518,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(249), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(249), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(249), @@ -54535,71 +54534,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(249), [aux_sym_insert_repeat1] = STATE(249), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2719), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(238)] = { [sym_backslash_escape] = STATE(452), @@ -54619,25 +54618,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(252), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -54706,43 +54705,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(239)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(253), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(253), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(253), [sym__emphasis_star] = STATE(253), [sym__strong_emphasis_star] = STATE(253), [sym__emphasis_underscore] = STATE(253), [sym__strong_emphasis_underscore] = STATE(253), [aux_sym_insert_repeat1] = STATE(253), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -54810,43 +54809,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(240)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(254), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(254), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(254), [sym__emphasis_star] = STATE(254), [sym__strong_emphasis_star] = STATE(254), [sym__emphasis_underscore] = STATE(254), [sym__strong_emphasis_underscore] = STATE(254), [aux_sym_insert_repeat1] = STATE(254), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -54914,43 +54913,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(241)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(255), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(255), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(255), [sym__emphasis_star] = STATE(255), [sym__strong_emphasis_star] = STATE(255), [sym__emphasis_underscore] = STATE(255), [sym__strong_emphasis_underscore] = STATE(255), [aux_sym_insert_repeat1] = STATE(255), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -55018,43 +55017,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(242)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(256), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(256), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(256), [sym__emphasis_star] = STATE(256), [sym__strong_emphasis_star] = STATE(256), [sym__emphasis_underscore] = STATE(256), [sym__strong_emphasis_underscore] = STATE(256), [aux_sym_insert_repeat1] = STATE(256), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -55122,212 +55121,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(243)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2731), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(244)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2733), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(245)] = { [sym_backslash_escape] = STATE(459), @@ -55347,91 +55346,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), - [sym_inline_link] = STATE(43), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), + [sym_inline_link] = STATE(42), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), - [sym__inline_base] = STATE(43), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), + [sym__inline_base] = STATE(42), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(43), - [sym__emphasis_star] = STATE(43), - [sym__strong_emphasis_star] = STATE(43), - [sym__emphasis_underscore] = STATE(43), - [sym__strong_emphasis_underscore] = STATE(43), - [aux_sym_insert_repeat1] = STATE(43), + [sym__inline_element] = STATE(42), + [sym__emphasis_star] = STATE(42), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(42), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym_insert_repeat1] = STATE(42), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2735), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(246)] = { [sym_backslash_escape] = STATE(462), @@ -55451,17 +55450,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(49), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(49), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(49), @@ -55471,279 +55470,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(49), [aux_sym_insert_repeat1] = STATE(49), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2737), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(247)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(50), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(50), [sym__emphasis_star] = STATE(50), [sym__strong_emphasis_star] = STATE(50), [sym__emphasis_underscore] = STATE(50), [sym__strong_emphasis_underscore] = STATE(50), [aux_sym_insert_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2737), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(248)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(51), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(51), [sym__emphasis_star] = STATE(51), [sym__strong_emphasis_star] = STATE(51), [sym__emphasis_underscore] = STATE(51), [sym__strong_emphasis_underscore] = STATE(51), [aux_sym_insert_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2739), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(249)] = { [sym_backslash_escape] = STATE(472), @@ -55767,13 +55766,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(52), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(52), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(52), @@ -55783,71 +55782,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(52), [aux_sym_insert_repeat1] = STATE(52), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(250)] = { [sym_backslash_escape] = STATE(474), @@ -55871,13 +55870,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(47), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(47), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(47), @@ -55887,71 +55886,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(47), [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), [sym__strong_emphasis_close_star] = ACTIONS(2743), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(251)] = { [sym_backslash_escape] = STATE(456), @@ -55975,13 +55974,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(48), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(48), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(48), @@ -55991,70 +55990,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(48), [sym__strong_emphasis_underscore] = STATE(48), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), [sym__strong_emphasis_close_underscore] = ACTIONS(2745), }, [STATE(252)] = { @@ -56075,25 +56074,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(46), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -56162,43 +56161,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(253)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -56266,43 +56265,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(254)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -56370,43 +56369,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(255)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -56474,43 +56473,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(256)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -56595,17 +56594,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(261), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(261), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(261), @@ -56699,17 +56698,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -56786,212 +56785,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(259)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2761), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(260)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2763), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(261)] = { [sym_backslash_escape] = STATE(452), @@ -57011,17 +57010,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -57115,17 +57114,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), [sym_inline_link] = STATE(274), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), [sym__inline_base] = STATE(274), [sym__text_base] = STATE(459), [sym__inline_element] = STATE(274), @@ -57135,71 +57134,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(274), [aux_sym_insert_repeat1] = STATE(274), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2767), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(263)] = { [sym_backslash_escape] = STATE(462), @@ -57219,17 +57218,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(275), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(275), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(275), @@ -57239,279 +57238,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(275), [aux_sym_insert_repeat1] = STATE(275), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2769), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(264)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(276), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(276), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(276), [sym__emphasis_star] = STATE(276), [sym__strong_emphasis_star] = STATE(276), [sym__emphasis_underscore] = STATE(276), [sym__strong_emphasis_underscore] = STATE(276), [aux_sym_insert_repeat1] = STATE(276), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2769), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(265)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(277), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(277), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(277), [sym__emphasis_star] = STATE(277), [sym__strong_emphasis_star] = STATE(277), [sym__emphasis_underscore] = STATE(277), [sym__strong_emphasis_underscore] = STATE(277), [aux_sym_insert_repeat1] = STATE(277), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2771), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(266)] = { [sym_backslash_escape] = STATE(472), @@ -57535,13 +57534,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(278), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(278), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(278), @@ -57551,71 +57550,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(278), [aux_sym_insert_repeat1] = STATE(278), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2773), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(267)] = { [sym_backslash_escape] = STATE(452), @@ -57635,25 +57634,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(281), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -57722,43 +57721,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(268)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(282), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(282), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(282), [sym__emphasis_star] = STATE(282), [sym__strong_emphasis_star] = STATE(282), [sym__emphasis_underscore] = STATE(282), [sym__strong_emphasis_underscore] = STATE(282), [aux_sym_insert_repeat1] = STATE(282), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -57826,43 +57825,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(269)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(283), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(283), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(283), [sym__emphasis_star] = STATE(283), [sym__strong_emphasis_star] = STATE(283), [sym__emphasis_underscore] = STATE(283), [sym__strong_emphasis_underscore] = STATE(283), [aux_sym_insert_repeat1] = STATE(283), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -57930,43 +57929,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(270)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(284), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(284), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(284), [sym__emphasis_star] = STATE(284), [sym__strong_emphasis_star] = STATE(284), [sym__emphasis_underscore] = STATE(284), [sym__strong_emphasis_underscore] = STATE(284), [aux_sym_insert_repeat1] = STATE(284), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -58034,43 +58033,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(271)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(285), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(285), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(285), [sym__emphasis_star] = STATE(285), [sym__strong_emphasis_star] = STATE(285), [sym__emphasis_underscore] = STATE(285), [sym__strong_emphasis_underscore] = STATE(285), [aux_sym_insert_repeat1] = STATE(285), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -58138,212 +58137,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(272)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2785), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(273)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2787), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(274)] = { [sym_backslash_escape] = STATE(459), @@ -58363,91 +58362,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), - [sym_inline_link] = STATE(43), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), + [sym_inline_link] = STATE(42), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), - [sym__inline_base] = STATE(43), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), + [sym__inline_base] = STATE(42), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(43), - [sym__emphasis_star] = STATE(43), - [sym__strong_emphasis_star] = STATE(43), - [sym__emphasis_underscore] = STATE(43), - [sym__strong_emphasis_underscore] = STATE(43), - [aux_sym_insert_repeat1] = STATE(43), + [sym__inline_element] = STATE(42), + [sym__emphasis_star] = STATE(42), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(42), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym_insert_repeat1] = STATE(42), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2789), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(275)] = { [sym_backslash_escape] = STATE(462), @@ -58467,17 +58466,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(49), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(49), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(49), @@ -58487,279 +58486,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(49), [aux_sym_insert_repeat1] = STATE(49), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2791), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(276)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(50), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(50), [sym__emphasis_star] = STATE(50), [sym__strong_emphasis_star] = STATE(50), [sym__emphasis_underscore] = STATE(50), [sym__strong_emphasis_underscore] = STATE(50), [aux_sym_insert_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2791), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(277)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(51), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(51), [sym__emphasis_star] = STATE(51), [sym__strong_emphasis_star] = STATE(51), [sym__emphasis_underscore] = STATE(51), [sym__strong_emphasis_underscore] = STATE(51), [aux_sym_insert_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2793), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(278)] = { [sym_backslash_escape] = STATE(472), @@ -58783,13 +58782,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(52), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(52), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(52), @@ -58799,71 +58798,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(52), [aux_sym_insert_repeat1] = STATE(52), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2795), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(279)] = { [sym_backslash_escape] = STATE(474), @@ -58887,13 +58886,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(47), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(47), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(47), @@ -58903,71 +58902,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(47), [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), [sym__strong_emphasis_close_star] = ACTIONS(2797), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(280)] = { [sym_backslash_escape] = STATE(456), @@ -58991,13 +58990,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(48), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(48), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(48), @@ -59007,70 +59006,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(48), [sym__strong_emphasis_underscore] = STATE(48), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), [sym__strong_emphasis_close_underscore] = ACTIONS(2799), }, [STATE(281)] = { @@ -59091,25 +59090,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(46), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -59178,43 +59177,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(282)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -59282,43 +59281,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(283)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -59386,43 +59385,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(284)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -59490,43 +59489,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(285)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -59611,17 +59610,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(290), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(290), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(290), @@ -59715,17 +59714,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -59802,212 +59801,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(288)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2815), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(289)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2817), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(290)] = { [sym_backslash_escape] = STATE(452), @@ -60027,17 +60026,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -60131,17 +60130,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), [sym_inline_link] = STATE(304), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), [sym__inline_base] = STATE(304), [sym__text_base] = STATE(459), [sym__inline_element] = STATE(304), @@ -60151,71 +60150,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(304), [aux_sym_insert_repeat1] = STATE(304), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2821), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(292)] = { [sym_backslash_escape] = STATE(462), @@ -60235,17 +60234,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(305), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(305), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(305), @@ -60255,279 +60254,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(305), [aux_sym_insert_repeat1] = STATE(305), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2823), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(293)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(306), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(306), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(306), [sym__emphasis_star] = STATE(306), [sym__strong_emphasis_star] = STATE(306), [sym__emphasis_underscore] = STATE(306), [sym__strong_emphasis_underscore] = STATE(306), [aux_sym_insert_repeat1] = STATE(306), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2823), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(294)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(307), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(307), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(307), [sym__emphasis_star] = STATE(307), [sym__strong_emphasis_star] = STATE(307), [sym__emphasis_underscore] = STATE(307), [sym__strong_emphasis_underscore] = STATE(307), [aux_sym_insert_repeat1] = STATE(307), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2825), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(295)] = { [sym_backslash_escape] = STATE(472), @@ -60551,13 +60550,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(308), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(308), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(308), @@ -60567,71 +60566,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(308), [aux_sym_insert_repeat1] = STATE(308), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2827), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(296)] = { [sym_backslash_escape] = STATE(452), @@ -60651,25 +60650,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(311), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -60738,43 +60737,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(297)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(312), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(312), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(312), [sym__emphasis_star] = STATE(312), [sym__strong_emphasis_star] = STATE(312), [sym__emphasis_underscore] = STATE(312), [sym__strong_emphasis_underscore] = STATE(312), [aux_sym_insert_repeat1] = STATE(312), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -60842,43 +60841,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(298)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(313), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(313), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(313), [sym__emphasis_star] = STATE(313), [sym__strong_emphasis_star] = STATE(313), [sym__emphasis_underscore] = STATE(313), [sym__strong_emphasis_underscore] = STATE(313), [aux_sym_insert_repeat1] = STATE(313), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -60946,43 +60945,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(299)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(314), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(314), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(314), [sym__emphasis_star] = STATE(314), [sym__strong_emphasis_star] = STATE(314), [sym__emphasis_underscore] = STATE(314), [sym__strong_emphasis_underscore] = STATE(314), [aux_sym_insert_repeat1] = STATE(314), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -61050,43 +61049,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(300)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(315), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(315), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(315), [sym__emphasis_star] = STATE(315), [sym__strong_emphasis_star] = STATE(315), [sym__emphasis_underscore] = STATE(315), [sym__strong_emphasis_underscore] = STATE(315), [aux_sym_insert_repeat1] = STATE(315), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -61171,25 +61170,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), - [aux_sym__inline] = STATE(31), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__inline_element] = STATE(1105), + [aux_sym__inline] = STATE(30), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -61258,212 +61257,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(302)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2841), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(303)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2843), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(304)] = { [sym_backslash_escape] = STATE(459), @@ -61483,91 +61482,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), - [sym_inline_link] = STATE(43), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), + [sym_inline_link] = STATE(42), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), - [sym__inline_base] = STATE(43), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), + [sym__inline_base] = STATE(42), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(43), - [sym__emphasis_star] = STATE(43), - [sym__strong_emphasis_star] = STATE(43), - [sym__emphasis_underscore] = STATE(43), - [sym__strong_emphasis_underscore] = STATE(43), - [aux_sym_insert_repeat1] = STATE(43), + [sym__inline_element] = STATE(42), + [sym__emphasis_star] = STATE(42), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(42), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym_insert_repeat1] = STATE(42), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2845), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(305)] = { [sym_backslash_escape] = STATE(462), @@ -61587,17 +61586,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(49), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(49), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(49), @@ -61607,279 +61606,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(49), [aux_sym_insert_repeat1] = STATE(49), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2847), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(306)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(50), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(50), [sym__emphasis_star] = STATE(50), [sym__strong_emphasis_star] = STATE(50), [sym__emphasis_underscore] = STATE(50), [sym__strong_emphasis_underscore] = STATE(50), [aux_sym_insert_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2847), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(307)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(51), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(51), [sym__emphasis_star] = STATE(51), [sym__strong_emphasis_star] = STATE(51), [sym__emphasis_underscore] = STATE(51), [sym__strong_emphasis_underscore] = STATE(51), [aux_sym_insert_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2849), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(308)] = { [sym_backslash_escape] = STATE(472), @@ -61903,13 +61902,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(52), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(52), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(52), @@ -61919,71 +61918,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(52), [aux_sym_insert_repeat1] = STATE(52), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2851), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(309)] = { [sym_backslash_escape] = STATE(474), @@ -62007,13 +62006,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(47), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(47), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(47), @@ -62023,71 +62022,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(47), [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), [sym__strong_emphasis_close_star] = ACTIONS(2853), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(310)] = { [sym_backslash_escape] = STATE(456), @@ -62111,13 +62110,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(48), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(48), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(48), @@ -62127,70 +62126,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(48), [sym__strong_emphasis_underscore] = STATE(48), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), [sym__strong_emphasis_close_underscore] = ACTIONS(2855), }, [STATE(311)] = { @@ -62211,25 +62210,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(46), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -62298,43 +62297,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(312)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -62402,43 +62401,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(313)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -62506,43 +62505,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(314)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -62610,43 +62609,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(315)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -62731,17 +62730,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(320), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(320), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(320), @@ -62835,17 +62834,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -62922,212 +62921,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(318)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2871), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(319)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2873), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(320)] = { [sym_backslash_escape] = STATE(452), @@ -63147,17 +63146,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -63251,17 +63250,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), [sym_inline_link] = STATE(333), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), [sym__inline_base] = STATE(333), [sym__text_base] = STATE(459), [sym__inline_element] = STATE(333), @@ -63271,71 +63270,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(333), [aux_sym_insert_repeat1] = STATE(333), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2877), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(322)] = { [sym_backslash_escape] = STATE(462), @@ -63355,17 +63354,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(334), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(334), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(334), @@ -63375,279 +63374,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(334), [aux_sym_insert_repeat1] = STATE(334), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2879), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(323)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(335), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(335), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(335), [sym__emphasis_star] = STATE(335), [sym__strong_emphasis_star] = STATE(335), [sym__emphasis_underscore] = STATE(335), [sym__strong_emphasis_underscore] = STATE(335), [aux_sym_insert_repeat1] = STATE(335), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2879), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(324)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(336), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(336), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(336), [sym__emphasis_star] = STATE(336), [sym__strong_emphasis_star] = STATE(336), [sym__emphasis_underscore] = STATE(336), [sym__strong_emphasis_underscore] = STATE(336), [aux_sym_insert_repeat1] = STATE(336), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2881), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(325)] = { [sym_backslash_escape] = STATE(472), @@ -63671,13 +63670,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(337), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(337), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(337), @@ -63687,71 +63686,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(337), [aux_sym_insert_repeat1] = STATE(337), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2883), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(326)] = { [sym_backslash_escape] = STATE(452), @@ -63771,25 +63770,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(340), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -63858,43 +63857,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(327)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(341), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(341), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(341), [sym__emphasis_star] = STATE(341), [sym__strong_emphasis_star] = STATE(341), [sym__emphasis_underscore] = STATE(341), [sym__strong_emphasis_underscore] = STATE(341), [aux_sym_insert_repeat1] = STATE(341), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -63962,43 +63961,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(328)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(342), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(342), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(342), [sym__emphasis_star] = STATE(342), [sym__strong_emphasis_star] = STATE(342), [sym__emphasis_underscore] = STATE(342), [sym__strong_emphasis_underscore] = STATE(342), [aux_sym_insert_repeat1] = STATE(342), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -64066,43 +64065,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(329)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(343), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(343), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(343), [sym__emphasis_star] = STATE(343), [sym__strong_emphasis_star] = STATE(343), [sym__emphasis_underscore] = STATE(343), [sym__strong_emphasis_underscore] = STATE(343), [aux_sym_insert_repeat1] = STATE(343), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -64170,43 +64169,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(330)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(344), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(344), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(344), [sym__emphasis_star] = STATE(344), [sym__strong_emphasis_star] = STATE(344), [sym__emphasis_underscore] = STATE(344), [sym__strong_emphasis_underscore] = STATE(344), [aux_sym_insert_repeat1] = STATE(344), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -64274,212 +64273,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(331)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2895), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(332)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2897), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(333)] = { [sym_backslash_escape] = STATE(459), @@ -64499,91 +64498,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), - [sym_inline_link] = STATE(43), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), + [sym_inline_link] = STATE(42), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), - [sym__inline_base] = STATE(43), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), + [sym__inline_base] = STATE(42), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(43), - [sym__emphasis_star] = STATE(43), - [sym__strong_emphasis_star] = STATE(43), - [sym__emphasis_underscore] = STATE(43), - [sym__strong_emphasis_underscore] = STATE(43), - [aux_sym_insert_repeat1] = STATE(43), + [sym__inline_element] = STATE(42), + [sym__emphasis_star] = STATE(42), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(42), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym_insert_repeat1] = STATE(42), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2899), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(334)] = { [sym_backslash_escape] = STATE(462), @@ -64603,17 +64602,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(49), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(49), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(49), @@ -64623,279 +64622,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(49), [aux_sym_insert_repeat1] = STATE(49), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2901), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(335)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(50), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(50), [sym__emphasis_star] = STATE(50), [sym__strong_emphasis_star] = STATE(50), [sym__emphasis_underscore] = STATE(50), [sym__strong_emphasis_underscore] = STATE(50), [aux_sym_insert_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2901), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(336)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(51), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(51), [sym__emphasis_star] = STATE(51), [sym__strong_emphasis_star] = STATE(51), [sym__emphasis_underscore] = STATE(51), [sym__strong_emphasis_underscore] = STATE(51), [aux_sym_insert_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2903), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(337)] = { [sym_backslash_escape] = STATE(472), @@ -64919,13 +64918,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(52), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(52), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(52), @@ -64935,71 +64934,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(52), [aux_sym_insert_repeat1] = STATE(52), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2905), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(338)] = { [sym_backslash_escape] = STATE(474), @@ -65023,13 +65022,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(47), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(47), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(47), @@ -65039,71 +65038,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(47), [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), [sym__strong_emphasis_close_star] = ACTIONS(2907), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(339)] = { [sym_backslash_escape] = STATE(456), @@ -65127,13 +65126,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(48), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(48), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(48), @@ -65143,70 +65142,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(48), [sym__strong_emphasis_underscore] = STATE(48), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), [sym__strong_emphasis_close_underscore] = ACTIONS(2909), }, [STATE(340)] = { @@ -65227,25 +65226,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(46), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -65314,43 +65313,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(341)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -65418,43 +65417,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(342)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -65522,43 +65521,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(343)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -65626,43 +65625,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(344)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -65747,17 +65746,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(349), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(349), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(349), @@ -65851,17 +65850,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -65938,212 +65937,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(347)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2925), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(348)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2927), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(349)] = { [sym_backslash_escape] = STATE(452), @@ -66163,17 +66162,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -66267,17 +66266,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), [sym_inline_link] = STATE(362), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), [sym__inline_base] = STATE(362), [sym__text_base] = STATE(459), [sym__inline_element] = STATE(362), @@ -66287,71 +66286,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(362), [aux_sym_insert_repeat1] = STATE(362), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2931), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(351)] = { [sym_backslash_escape] = STATE(462), @@ -66371,17 +66370,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(363), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(363), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(363), @@ -66391,279 +66390,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(363), [aux_sym_insert_repeat1] = STATE(363), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2933), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(352)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(364), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(364), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(364), [sym__emphasis_star] = STATE(364), [sym__strong_emphasis_star] = STATE(364), [sym__emphasis_underscore] = STATE(364), [sym__strong_emphasis_underscore] = STATE(364), [aux_sym_insert_repeat1] = STATE(364), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2933), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(353)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(365), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(365), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(365), [sym__emphasis_star] = STATE(365), [sym__strong_emphasis_star] = STATE(365), [sym__emphasis_underscore] = STATE(365), [sym__strong_emphasis_underscore] = STATE(365), [aux_sym_insert_repeat1] = STATE(365), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2935), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(354)] = { [sym_backslash_escape] = STATE(472), @@ -66687,13 +66686,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(366), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(366), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(366), @@ -66703,71 +66702,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(366), [aux_sym_insert_repeat1] = STATE(366), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2937), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(355)] = { [sym_backslash_escape] = STATE(452), @@ -66787,25 +66786,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(369), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -66874,43 +66873,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(356)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(370), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(370), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(370), [sym__emphasis_star] = STATE(370), [sym__strong_emphasis_star] = STATE(370), [sym__emphasis_underscore] = STATE(370), [sym__strong_emphasis_underscore] = STATE(370), [aux_sym_insert_repeat1] = STATE(370), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -66978,43 +66977,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(357)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(371), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(371), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(371), [sym__emphasis_star] = STATE(371), [sym__strong_emphasis_star] = STATE(371), [sym__emphasis_underscore] = STATE(371), [sym__strong_emphasis_underscore] = STATE(371), [aux_sym_insert_repeat1] = STATE(371), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -67082,43 +67081,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(358)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(372), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(372), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(372), [sym__emphasis_star] = STATE(372), [sym__strong_emphasis_star] = STATE(372), [sym__emphasis_underscore] = STATE(372), [sym__strong_emphasis_underscore] = STATE(372), [aux_sym_insert_repeat1] = STATE(372), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -67186,43 +67185,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(359)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(373), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(373), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(373), [sym__emphasis_star] = STATE(373), [sym__strong_emphasis_star] = STATE(373), [sym__emphasis_underscore] = STATE(373), [sym__strong_emphasis_underscore] = STATE(373), [aux_sym_insert_repeat1] = STATE(373), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -67290,212 +67289,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(360)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2949), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(361)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2951), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(362)] = { [sym_backslash_escape] = STATE(459), @@ -67515,91 +67514,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(459), [sym_shortcode] = STATE(459), [sym_note_reference] = STATE(459), - [sym__link_text] = STATE(573), - [sym__link_text_non_empty] = STATE(574), - [sym_inline_link] = STATE(43), + [sym__link_text] = STATE(572), + [sym__link_text_non_empty] = STATE(573), + [sym_inline_link] = STATE(42), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), - [sym__inline_base] = STATE(43), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), + [sym__inline_base] = STATE(42), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(43), - [sym__emphasis_star] = STATE(43), - [sym__strong_emphasis_star] = STATE(43), - [sym__emphasis_underscore] = STATE(43), - [sym__strong_emphasis_underscore] = STATE(43), - [aux_sym_insert_repeat1] = STATE(43), + [sym__inline_element] = STATE(42), + [sym__emphasis_star] = STATE(42), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(42), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym_insert_repeat1] = STATE(42), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(431), - [sym_entity_reference] = ACTIONS(433), - [sym_numeric_character_reference] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), - [sym_uri_autolink] = ACTIONS(433), - [sym_email_autolink] = ACTIONS(433), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(473), - [sym__strikeout_open] = ACTIONS(475), + [sym__backslash_escape] = ACTIONS(501), + [sym_entity_reference] = ACTIONS(503), + [sym_numeric_character_reference] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), + [sym_uri_autolink] = ACTIONS(503), + [sym_email_autolink] = ACTIONS(503), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(541), + [sym__emphasis_open_underscore] = ACTIONS(543), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(2953), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), - [sym__unclosed_span] = ACTIONS(433), - [sym__strong_emphasis_open_star] = ACTIONS(501), - [sym__strong_emphasis_open_underscore] = ACTIONS(503), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), + [sym__unclosed_span] = ACTIONS(503), + [sym__strong_emphasis_open_star] = ACTIONS(571), + [sym__strong_emphasis_open_underscore] = ACTIONS(573), }, [STATE(363)] = { [sym_backslash_escape] = STATE(462), @@ -67619,17 +67618,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(462), [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), - [sym__link_text] = STATE(601), - [sym__link_text_non_empty] = STATE(602), + [sym__link_text] = STATE(600), + [sym__link_text_non_empty] = STATE(601), [sym_inline_link] = STATE(49), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__inline_base] = STATE(49), [sym__text_base] = STATE(462), [sym__inline_element] = STATE(49), @@ -67639,279 +67638,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(49), [aux_sym_insert_repeat1] = STATE(49), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(505), - [sym_entity_reference] = ACTIONS(507), - [sym_numeric_character_reference] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), - [sym_uri_autolink] = ACTIONS(507), - [sym_email_autolink] = ACTIONS(507), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), - [sym__emphasis_open_star] = ACTIONS(545), - [sym__emphasis_open_underscore] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(577), + [sym_numeric_character_reference] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), + [sym_uri_autolink] = ACTIONS(577), + [sym_email_autolink] = ACTIONS(577), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), + [sym__emphasis_open_star] = ACTIONS(615), + [sym__emphasis_open_underscore] = ACTIONS(617), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(2955), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), - [sym__unclosed_span] = ACTIONS(507), - [sym__strong_emphasis_open_star] = ACTIONS(575), - [sym__strong_emphasis_open_underscore] = ACTIONS(577), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(645), + [sym__strong_emphasis_open_underscore] = ACTIONS(647), }, [STATE(364)] = { - [sym_backslash_escape] = STATE(465), - [sym_commonmark_attribute] = STATE(465), - [sym_code_span] = STATE(465), - [sym_latex_span] = STATE(465), - [sym_insert] = STATE(465), - [sym_delete] = STATE(465), - [sym_highlight] = STATE(465), - [sym_edit_comment] = STATE(465), - [sym_superscript] = STATE(465), - [sym_subscript] = STATE(465), - [sym_strikeout] = STATE(465), - [sym_quoted_span] = STATE(465), - [sym_inline_note] = STATE(465), - [sym_citation] = STATE(465), - [sym_shortcode_escaped] = STATE(465), - [sym_shortcode] = STATE(465), - [sym_note_reference] = STATE(465), - [sym__link_text] = STATE(628), - [sym__link_text_non_empty] = STATE(629), + [sym_backslash_escape] = STATE(466), + [sym_commonmark_attribute] = STATE(466), + [sym_code_span] = STATE(466), + [sym_latex_span] = STATE(466), + [sym_insert] = STATE(466), + [sym_delete] = STATE(466), + [sym_highlight] = STATE(466), + [sym_edit_comment] = STATE(466), + [sym_superscript] = STATE(466), + [sym_subscript] = STATE(466), + [sym_strikeout] = STATE(466), + [sym_quoted_span] = STATE(466), + [sym_inline_note] = STATE(466), + [sym_citation] = STATE(466), + [sym_shortcode_escaped] = STATE(466), + [sym_shortcode] = STATE(466), + [sym_note_reference] = STATE(466), + [sym__link_text] = STATE(627), + [sym__link_text_non_empty] = STATE(628), [sym_inline_link] = STATE(50), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), [sym__inline_base] = STATE(50), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(466), [sym__inline_element] = STATE(50), [sym__emphasis_star] = STATE(50), [sym__strong_emphasis_star] = STATE(50), [sym__emphasis_underscore] = STATE(50), [sym__strong_emphasis_underscore] = STATE(50), [aux_sym_insert_repeat1] = STATE(50), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(579), - [sym_entity_reference] = ACTIONS(581), - [sym_numeric_character_reference] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(581), - [sym_email_autolink] = ACTIONS(581), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), - [sym__emphasis_open_star] = ACTIONS(619), - [sym__emphasis_open_underscore] = ACTIONS(621), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(651), + [sym_numeric_character_reference] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(651), + [sym_email_autolink] = ACTIONS(651), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), [sym__double_quote_close] = ACTIONS(2955), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), - [sym__unclosed_span] = ACTIONS(581), - [sym__strong_emphasis_open_star] = ACTIONS(647), - [sym__strong_emphasis_open_underscore] = ACTIONS(649), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(651), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, [STATE(365)] = { - [sym_backslash_escape] = STATE(469), - [sym_commonmark_attribute] = STATE(469), - [sym_code_span] = STATE(469), - [sym_latex_span] = STATE(469), - [sym_insert] = STATE(469), - [sym_delete] = STATE(469), - [sym_highlight] = STATE(469), - [sym_edit_comment] = STATE(469), - [sym_superscript] = STATE(469), - [sym_subscript] = STATE(469), - [sym_strikeout] = STATE(469), - [sym_quoted_span] = STATE(469), - [sym_inline_note] = STATE(469), - [sym_citation] = STATE(469), - [sym_shortcode_escaped] = STATE(469), - [sym_shortcode] = STATE(469), - [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(653), - [sym__link_text_non_empty] = STATE(654), + [sym_backslash_escape] = STATE(470), + [sym_commonmark_attribute] = STATE(470), + [sym_code_span] = STATE(470), + [sym_latex_span] = STATE(470), + [sym_insert] = STATE(470), + [sym_delete] = STATE(470), + [sym_highlight] = STATE(470), + [sym_edit_comment] = STATE(470), + [sym_superscript] = STATE(470), + [sym_subscript] = STATE(470), + [sym_strikeout] = STATE(470), + [sym_quoted_span] = STATE(470), + [sym_inline_note] = STATE(470), + [sym_citation] = STATE(470), + [sym_shortcode_escaped] = STATE(470), + [sym_shortcode] = STATE(470), + [sym_note_reference] = STATE(470), + [sym__link_text] = STATE(652), + [sym__link_text_non_empty] = STATE(653), [sym_inline_link] = STATE(51), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(469), + [sym__text_base] = STATE(470), [sym__inline_element] = STATE(51), [sym__emphasis_star] = STATE(51), [sym__strong_emphasis_star] = STATE(51), [sym__emphasis_underscore] = STATE(51), [sym__strong_emphasis_underscore] = STATE(51), [aux_sym_insert_repeat1] = STATE(51), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(653), - [sym_numeric_character_reference] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(653), - [sym_email_autolink] = ACTIONS(653), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(693), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(199), + [sym_numeric_character_reference] = ACTIONS(199), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(199), + [sym_email_autolink] = ACTIONS(199), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), + [sym__emphasis_open_star] = ACTIONS(237), + [sym__emphasis_open_underscore] = ACTIONS(239), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(2957), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(653), - [sym__strong_emphasis_open_star] = ACTIONS(721), - [sym__strong_emphasis_open_underscore] = ACTIONS(723), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(199), + [sym__strong_emphasis_open_star] = ACTIONS(267), + [sym__strong_emphasis_open_underscore] = ACTIONS(269), }, [STATE(366)] = { [sym_backslash_escape] = STATE(472), @@ -67935,13 +67934,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(680), [sym_inline_link] = STATE(52), [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__inline_base] = STATE(52), [sym__text_base] = STATE(472), [sym__inline_element] = STATE(52), @@ -67951,71 +67950,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_underscore] = STATE(52), [aux_sym_insert_repeat1] = STATE(52), [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(725), - [sym_entity_reference] = ACTIONS(727), - [sym_numeric_character_reference] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(735), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), - [sym_uri_autolink] = ACTIONS(727), - [sym_email_autolink] = ACTIONS(727), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(765), - [sym__emphasis_open_underscore] = ACTIONS(767), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__backslash_escape] = ACTIONS(723), + [sym_entity_reference] = ACTIONS(725), + [sym_numeric_character_reference] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), + [sym_uri_autolink] = ACTIONS(725), + [sym_email_autolink] = ACTIONS(725), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), + [sym__emphasis_open_star] = ACTIONS(763), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(2959), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), - [sym__unclosed_span] = ACTIONS(727), - [sym__strong_emphasis_open_star] = ACTIONS(795), - [sym__strong_emphasis_open_underscore] = ACTIONS(797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), + [sym__unclosed_span] = ACTIONS(725), + [sym__strong_emphasis_open_star] = ACTIONS(793), + [sym__strong_emphasis_open_underscore] = ACTIONS(795), }, [STATE(367)] = { [sym_backslash_escape] = STATE(474), @@ -68039,13 +68038,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(47), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(47), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(47), @@ -68055,71 +68054,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(47), [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), [sym__strong_emphasis_close_star] = ACTIONS(2961), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(368)] = { [sym_backslash_escape] = STATE(456), @@ -68143,13 +68142,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(48), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(48), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(48), @@ -68159,70 +68158,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(48), [sym__strong_emphasis_underscore] = STATE(48), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), [sym__strong_emphasis_close_underscore] = ACTIONS(2963), }, [STATE(369)] = { @@ -68243,25 +68242,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), - [sym_inline_link] = STATE(1132), + [sym_inline_link] = STATE(1105), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), - [sym__inline_base] = STATE(1132), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), + [sym__inline_base] = STATE(1105), [sym__text_base] = STATE(452), - [sym__inline_element] = STATE(1132), + [sym__inline_element] = STATE(1105), [aux_sym__inline] = STATE(46), - [sym__emphasis_star] = STATE(1132), - [sym__strong_emphasis_star] = STATE(1132), - [sym__emphasis_underscore] = STATE(1132), - [sym__strong_emphasis_underscore] = STATE(1132), + [sym__emphasis_star] = STATE(1105), + [sym__strong_emphasis_star] = STATE(1105), + [sym__emphasis_underscore] = STATE(1105), + [sym__strong_emphasis_underscore] = STATE(1105), [aux_sym__inline_base_repeat1] = STATE(452), [sym__backslash_escape] = ACTIONS(77), [sym_entity_reference] = ACTIONS(79), @@ -68330,43 +68329,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(370)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -68434,43 +68433,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(371)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -68538,43 +68537,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(372)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -68642,43 +68641,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(343), }, [STATE(373)] = { - [sym_backslash_escape] = STATE(458), - [sym_commonmark_attribute] = STATE(458), - [sym_code_span] = STATE(458), - [sym_latex_span] = STATE(458), - [sym_insert] = STATE(458), - [sym_delete] = STATE(458), - [sym_highlight] = STATE(458), - [sym_edit_comment] = STATE(458), - [sym_superscript] = STATE(458), - [sym_subscript] = STATE(458), - [sym_strikeout] = STATE(458), - [sym_quoted_span] = STATE(458), - [sym_inline_note] = STATE(458), - [sym_citation] = STATE(458), - [sym_shortcode_escaped] = STATE(458), - [sym_shortcode] = STATE(458), - [sym_note_reference] = STATE(458), + [sym_backslash_escape] = STATE(455), + [sym_commonmark_attribute] = STATE(455), + [sym_code_span] = STATE(455), + [sym_latex_span] = STATE(455), + [sym_insert] = STATE(455), + [sym_delete] = STATE(455), + [sym_highlight] = STATE(455), + [sym_edit_comment] = STATE(455), + [sym_superscript] = STATE(455), + [sym_subscript] = STATE(455), + [sym_strikeout] = STATE(455), + [sym_quoted_span] = STATE(455), + [sym_inline_note] = STATE(455), + [sym_citation] = STATE(455), + [sym_shortcode_escaped] = STATE(455), + [sym_shortcode] = STATE(455), + [sym_note_reference] = STATE(455), [sym__link_text] = STATE(759), [sym__link_text_non_empty] = STATE(763), [sym_inline_link] = STATE(53), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym_image] = STATE(455), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), + [sym_hard_line_break] = STATE(455), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(458), + [sym__text_base] = STATE(455), [sym__inline_element] = STATE(53), [sym__emphasis_star] = STATE(53), [sym__strong_emphasis_star] = STATE(53), [sym__emphasis_underscore] = STATE(53), [sym__strong_emphasis_underscore] = STATE(53), [aux_sym_insert_repeat1] = STATE(53), - [aux_sym__inline_base_repeat1] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(455), [sym__backslash_escape] = ACTIONS(271), [sym_entity_reference] = ACTIONS(273), [sym_numeric_character_reference] = ACTIONS(273), @@ -68763,17 +68762,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(378), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(378), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(378), @@ -68867,17 +68866,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -68954,212 +68953,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(376)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(2979), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(377)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(42), - [aux_sym__inline_no_underscore] = STATE(42), - [sym__emphasis_star] = STATE(42), - [sym__strong_emphasis_star] = STATE(42), - [sym__emphasis_underscore] = STATE(42), - [sym__strong_emphasis_underscore] = STATE(42), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(41), + [aux_sym__inline_no_underscore] = STATE(41), + [sym__emphasis_star] = STATE(41), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(41), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__emphasis_close_underscore] = ACTIONS(2981), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(378)] = { [sym_backslash_escape] = STATE(452), @@ -69179,17 +69178,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(452), [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), - [sym__link_text] = STATE(662), + [sym__link_text] = STATE(660), [sym__link_text_non_empty] = STATE(681), [sym_inline_link] = STATE(54), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__inline_base] = STATE(54), [sym__text_base] = STATE(452), [sym__inline_element] = STATE(54), @@ -69266,2500 +69265,2500 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, [STATE(379)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(66), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(66), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(66), [aux_sym__inline_no_star] = STATE(66), [sym__emphasis_star] = STATE(66), [sym__strong_emphasis_star] = STATE(66), [sym__emphasis_underscore] = STATE(66), [sym__strong_emphasis_underscore] = STATE(66), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__last_token_punctuation] = ACTIONS(2985), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(380)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(67), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(67), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(67), [aux_sym__inline_no_underscore] = STATE(67), [sym__emphasis_star] = STATE(67), [sym__strong_emphasis_star] = STATE(67), [sym__emphasis_underscore] = STATE(67), [sym__strong_emphasis_underscore] = STATE(67), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__last_token_punctuation] = ACTIONS(2987), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(381)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(96), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(96), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(96), [aux_sym__inline_no_star] = STATE(96), [sym__emphasis_star] = STATE(96), [sym__strong_emphasis_star] = STATE(96), [sym__emphasis_underscore] = STATE(96), [sym__strong_emphasis_underscore] = STATE(96), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__last_token_punctuation] = ACTIONS(2989), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(382)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(97), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(97), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(97), [aux_sym__inline_no_underscore] = STATE(97), [sym__emphasis_star] = STATE(97), [sym__strong_emphasis_star] = STATE(97), [sym__emphasis_underscore] = STATE(97), [sym__strong_emphasis_underscore] = STATE(97), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__last_token_punctuation] = ACTIONS(2991), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(383)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(126), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(126), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(126), [aux_sym__inline_no_star] = STATE(126), [sym__emphasis_star] = STATE(126), [sym__strong_emphasis_star] = STATE(126), [sym__emphasis_underscore] = STATE(126), [sym__strong_emphasis_underscore] = STATE(126), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__last_token_punctuation] = ACTIONS(2993), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(384)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(127), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(127), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(127), [aux_sym__inline_no_underscore] = STATE(127), [sym__emphasis_star] = STATE(127), [sym__strong_emphasis_star] = STATE(127), [sym__emphasis_underscore] = STATE(127), [sym__strong_emphasis_underscore] = STATE(127), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__last_token_punctuation] = ACTIONS(2995), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(385)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(156), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(156), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(156), [aux_sym__inline_no_star] = STATE(156), [sym__emphasis_star] = STATE(156), [sym__strong_emphasis_star] = STATE(156), [sym__emphasis_underscore] = STATE(156), [sym__strong_emphasis_underscore] = STATE(156), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__last_token_punctuation] = ACTIONS(2997), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(386)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(157), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(157), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(157), [aux_sym__inline_no_underscore] = STATE(157), [sym__emphasis_star] = STATE(157), [sym__strong_emphasis_star] = STATE(157), [sym__emphasis_underscore] = STATE(157), [sym__strong_emphasis_underscore] = STATE(157), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__last_token_punctuation] = ACTIONS(2999), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(387)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(185), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(185), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(185), [aux_sym__inline_no_star] = STATE(185), [sym__emphasis_star] = STATE(185), [sym__strong_emphasis_star] = STATE(185), [sym__emphasis_underscore] = STATE(185), [sym__strong_emphasis_underscore] = STATE(185), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__last_token_punctuation] = ACTIONS(3001), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(388)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(186), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(186), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(186), [aux_sym__inline_no_underscore] = STATE(186), [sym__emphasis_star] = STATE(186), [sym__strong_emphasis_star] = STATE(186), [sym__emphasis_underscore] = STATE(186), [sym__strong_emphasis_underscore] = STATE(186), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__last_token_punctuation] = ACTIONS(3003), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(389)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(214), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(214), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(214), [aux_sym__inline_no_star] = STATE(214), [sym__emphasis_star] = STATE(214), [sym__strong_emphasis_star] = STATE(214), [sym__emphasis_underscore] = STATE(214), [sym__strong_emphasis_underscore] = STATE(214), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__last_token_punctuation] = ACTIONS(3005), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(390)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(215), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(215), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(215), [aux_sym__inline_no_underscore] = STATE(215), [sym__emphasis_star] = STATE(215), [sym__strong_emphasis_star] = STATE(215), [sym__emphasis_underscore] = STATE(215), [sym__strong_emphasis_underscore] = STATE(215), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__last_token_punctuation] = ACTIONS(3007), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(391)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(243), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(243), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(243), [aux_sym__inline_no_star] = STATE(243), [sym__emphasis_star] = STATE(243), [sym__strong_emphasis_star] = STATE(243), [sym__emphasis_underscore] = STATE(243), [sym__strong_emphasis_underscore] = STATE(243), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__last_token_punctuation] = ACTIONS(3009), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(392)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(244), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(244), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(244), [aux_sym__inline_no_underscore] = STATE(244), [sym__emphasis_star] = STATE(244), [sym__strong_emphasis_star] = STATE(244), [sym__emphasis_underscore] = STATE(244), [sym__strong_emphasis_underscore] = STATE(244), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__last_token_punctuation] = ACTIONS(3011), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(393)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(272), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(272), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(272), [aux_sym__inline_no_star] = STATE(272), [sym__emphasis_star] = STATE(272), [sym__strong_emphasis_star] = STATE(272), [sym__emphasis_underscore] = STATE(272), [sym__strong_emphasis_underscore] = STATE(272), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__last_token_punctuation] = ACTIONS(3013), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(394)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(273), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(273), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(273), [aux_sym__inline_no_underscore] = STATE(273), [sym__emphasis_star] = STATE(273), [sym__strong_emphasis_star] = STATE(273), [sym__emphasis_underscore] = STATE(273), [sym__strong_emphasis_underscore] = STATE(273), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__last_token_punctuation] = ACTIONS(3015), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(395)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(302), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(302), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(302), [aux_sym__inline_no_star] = STATE(302), [sym__emphasis_star] = STATE(302), [sym__strong_emphasis_star] = STATE(302), [sym__emphasis_underscore] = STATE(302), [sym__strong_emphasis_underscore] = STATE(302), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__last_token_punctuation] = ACTIONS(3017), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(396)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(303), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(303), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(303), [aux_sym__inline_no_underscore] = STATE(303), [sym__emphasis_star] = STATE(303), [sym__strong_emphasis_star] = STATE(303), [sym__emphasis_underscore] = STATE(303), [sym__strong_emphasis_underscore] = STATE(303), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__last_token_punctuation] = ACTIONS(3019), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(397)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(20), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(20), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(20), - [aux_sym__inline_no_star] = STATE(20), - [sym__emphasis_star] = STATE(20), - [sym__strong_emphasis_star] = STATE(20), - [sym__emphasis_underscore] = STATE(20), - [sym__strong_emphasis_underscore] = STATE(20), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(19), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(19), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(19), + [aux_sym__inline_no_star] = STATE(19), + [sym__emphasis_star] = STATE(19), + [sym__strong_emphasis_star] = STATE(19), + [sym__emphasis_underscore] = STATE(19), + [sym__strong_emphasis_underscore] = STATE(19), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__last_token_punctuation] = ACTIONS(3021), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(398)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(331), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(331), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(331), [aux_sym__inline_no_star] = STATE(331), [sym__emphasis_star] = STATE(331), [sym__strong_emphasis_star] = STATE(331), [sym__emphasis_underscore] = STATE(331), [sym__strong_emphasis_underscore] = STATE(331), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__last_token_punctuation] = ACTIONS(3023), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(399)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(332), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(332), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(332), [aux_sym__inline_no_underscore] = STATE(332), [sym__emphasis_star] = STATE(332), [sym__strong_emphasis_star] = STATE(332), [sym__emphasis_underscore] = STATE(332), [sym__strong_emphasis_underscore] = STATE(332), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__last_token_punctuation] = ACTIONS(3025), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(400)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(360), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(360), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(360), [aux_sym__inline_no_star] = STATE(360), [sym__emphasis_star] = STATE(360), [sym__strong_emphasis_star] = STATE(360), [sym__emphasis_underscore] = STATE(360), [sym__strong_emphasis_underscore] = STATE(360), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__last_token_punctuation] = ACTIONS(3027), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(401)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(361), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(361), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(361), [aux_sym__inline_no_underscore] = STATE(361), [sym__emphasis_star] = STATE(361), [sym__strong_emphasis_star] = STATE(361), [sym__emphasis_underscore] = STATE(361), [sym__strong_emphasis_underscore] = STATE(361), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), [sym__last_token_punctuation] = ACTIONS(3029), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(402)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(40), - [aux_sym__inline_no_star] = STATE(40), - [sym__emphasis_star] = STATE(40), - [sym__strong_emphasis_star] = STATE(40), - [sym__emphasis_underscore] = STATE(40), - [sym__strong_emphasis_underscore] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(39), + [aux_sym__inline_no_star] = STATE(39), + [sym__emphasis_star] = STATE(39), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(39), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), [sym__emphasis_close_star] = ACTIONS(3031), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(403)] = { [sym_backslash_escape] = STATE(474), @@ -71783,13 +71782,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(309), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(309), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(309), @@ -71799,212 +71798,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(309), [sym__strong_emphasis_underscore] = STATE(309), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(404)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(376), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(376), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(376), [aux_sym__inline_no_star] = STATE(376), [sym__emphasis_star] = STATE(376), [sym__strong_emphasis_star] = STATE(376), [sym__emphasis_underscore] = STATE(376), [sym__strong_emphasis_underscore] = STATE(376), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(405)] = { - [sym_backslash_escape] = STATE(454), - [sym_commonmark_attribute] = STATE(454), - [sym_code_span] = STATE(454), - [sym_latex_span] = STATE(454), - [sym_insert] = STATE(454), - [sym_delete] = STATE(454), - [sym_highlight] = STATE(454), - [sym_edit_comment] = STATE(454), - [sym_superscript] = STATE(454), - [sym_subscript] = STATE(454), - [sym_strikeout] = STATE(454), - [sym_quoted_span] = STATE(454), - [sym_inline_note] = STATE(454), - [sym_citation] = STATE(454), - [sym_shortcode_escaped] = STATE(454), - [sym_shortcode] = STATE(454), - [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(495), - [sym__link_text_non_empty] = STATE(497), - [sym_inline_link] = STATE(1730), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1528), - [sym__image_description] = STATE(2751), - [sym__image_description_non_empty] = STATE(2751), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(896), - [sym__word] = STATE(896), - [sym__soft_line_break] = STATE(1586), - [sym__inline_base] = STATE(1730), - [sym__text_base] = STATE(454), - [sym__inline_element] = STATE(1730), - [aux_sym__inline] = STATE(22), - [sym__emphasis_star] = STATE(1730), - [sym__strong_emphasis_star] = STATE(1730), - [sym__emphasis_underscore] = STATE(1730), - [sym__strong_emphasis_underscore] = STATE(1730), - [aux_sym__inline_base_repeat1] = STATE(454), + [sym_backslash_escape] = STATE(453), + [sym_commonmark_attribute] = STATE(453), + [sym_code_span] = STATE(453), + [sym_latex_span] = STATE(453), + [sym_insert] = STATE(453), + [sym_delete] = STATE(453), + [sym_highlight] = STATE(453), + [sym_edit_comment] = STATE(453), + [sym_superscript] = STATE(453), + [sym_subscript] = STATE(453), + [sym_strikeout] = STATE(453), + [sym_quoted_span] = STATE(453), + [sym_inline_note] = STATE(453), + [sym_citation] = STATE(453), + [sym_shortcode_escaped] = STATE(453), + [sym_shortcode] = STATE(453), + [sym_note_reference] = STATE(453), + [sym__link_text] = STATE(493), + [sym__link_text_non_empty] = STATE(495), + [sym_inline_link] = STATE(1731), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1581), + [sym__image_description] = STATE(2764), + [sym__image_description_non_empty] = STATE(2764), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1353), + [sym__word] = STATE(1353), + [sym__soft_line_break] = STATE(1724), + [sym__inline_base] = STATE(1731), + [sym__text_base] = STATE(453), + [sym__inline_element] = STATE(1731), + [aux_sym__inline] = STATE(21), + [sym__emphasis_star] = STATE(1731), + [sym__strong_emphasis_star] = STATE(1731), + [sym__emphasis_underscore] = STATE(1731), + [sym__strong_emphasis_underscore] = STATE(1731), + [aux_sym__inline_base_repeat1] = STATE(453), [sym__backslash_escape] = ACTIONS(3), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), @@ -72071,107 +72070,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(75), }, [STATE(406)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(39), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__inline_base] = STATE(39), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(39), - [aux_sym__inline_no_star] = STATE(39), - [sym__emphasis_star] = STATE(39), - [sym__strong_emphasis_star] = STATE(39), - [sym__emphasis_underscore] = STATE(39), - [sym__strong_emphasis_underscore] = STATE(39), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(465), + [sym__inline_element_no_star] = STATE(38), + [aux_sym__inline_no_star] = STATE(38), + [sym__emphasis_star] = STATE(38), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(38), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(407)] = { [sym_backslash_escape] = STATE(474), @@ -72193,88 +72192,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note_reference] = STATE(474), [sym__link_text] = STATE(706), [sym__link_text_non_empty] = STATE(707), - [sym_inline_link] = STATE(28), + [sym_inline_link] = STATE(27), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), - [sym__inline_base] = STATE(28), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), + [sym__inline_base] = STATE(27), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(28), - [aux_sym__inline_no_star] = STATE(28), - [sym__emphasis_star] = STATE(28), - [sym__strong_emphasis_star] = STATE(28), - [sym__emphasis_underscore] = STATE(28), - [sym__strong_emphasis_underscore] = STATE(28), + [sym__inline_element_no_star] = STATE(27), + [aux_sym__inline_no_star] = STATE(27), + [sym__emphasis_star] = STATE(27), + [sym__strong_emphasis_star] = STATE(27), + [sym__emphasis_underscore] = STATE(27), + [sym__strong_emphasis_underscore] = STATE(27), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(408)] = { [sym_backslash_escape] = STATE(456), @@ -72296,191 +72295,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note_reference] = STATE(456), [sym__link_text] = STATE(748), [sym__link_text_non_empty] = STATE(749), - [sym_inline_link] = STATE(29), + [sym_inline_link] = STATE(28), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), - [sym__inline_base] = STATE(29), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), + [sym__inline_base] = STATE(28), [sym__text_base] = STATE(456), - [sym__inline_element_no_underscore] = STATE(29), - [aux_sym__inline_no_underscore] = STATE(29), - [sym__emphasis_star] = STATE(29), - [sym__strong_emphasis_star] = STATE(29), - [sym__emphasis_underscore] = STATE(29), - [sym__strong_emphasis_underscore] = STATE(29), + [sym__inline_element_no_underscore] = STATE(28), + [aux_sym__inline_no_underscore] = STATE(28), + [sym__emphasis_star] = STATE(28), + [sym__strong_emphasis_star] = STATE(28), + [sym__emphasis_underscore] = STATE(28), + [sym__strong_emphasis_underscore] = STATE(28), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), }, [STATE(409)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), - [sym_inline_link] = STATE(14), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__inline_base] = STATE(14), - [sym__text_base] = STATE(455), - [sym__inline_element_no_underscore] = STATE(14), - [aux_sym__inline_no_underscore] = STATE(14), - [sym__emphasis_star] = STATE(14), - [sym__strong_emphasis_star] = STATE(14), - [sym__emphasis_underscore] = STATE(14), - [sym__strong_emphasis_underscore] = STATE(14), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(457), + [sym__inline_element_no_underscore] = STATE(40), + [aux_sym__inline_no_underscore] = STATE(40), + [sym__emphasis_star] = STATE(40), + [sym__strong_emphasis_star] = STATE(40), + [sym__emphasis_underscore] = STATE(40), + [sym__strong_emphasis_underscore] = STATE(40), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(410)] = { [sym_backslash_escape] = STATE(474), @@ -72504,13 +72503,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(73), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(73), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(73), @@ -72520,70 +72519,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(73), [sym__strong_emphasis_underscore] = STATE(73), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(411)] = { [sym_backslash_escape] = STATE(456), @@ -72607,13 +72606,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(74), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(74), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(74), @@ -72623,276 +72622,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(74), [sym__strong_emphasis_underscore] = STATE(74), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), }, [STATE(412)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(82), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(82), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(82), [aux_sym__inline_no_star] = STATE(82), [sym__emphasis_star] = STATE(82), [sym__strong_emphasis_star] = STATE(82), [sym__emphasis_underscore] = STATE(82), [sym__strong_emphasis_underscore] = STATE(82), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(413)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(83), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(83), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(83), [aux_sym__inline_no_underscore] = STATE(83), [sym__emphasis_star] = STATE(83), [sym__strong_emphasis_star] = STATE(83), [sym__emphasis_underscore] = STATE(83), [sym__strong_emphasis_underscore] = STATE(83), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(414)] = { [sym_backslash_escape] = STATE(474), @@ -72916,13 +72915,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(103), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(103), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(103), @@ -72932,70 +72931,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(103), [sym__strong_emphasis_underscore] = STATE(103), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(415)] = { [sym_backslash_escape] = STATE(456), @@ -73019,13 +73018,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(104), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(104), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(104), @@ -73035,276 +73034,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(104), [sym__strong_emphasis_underscore] = STATE(104), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), }, [STATE(416)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(112), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(112), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(112), [aux_sym__inline_no_star] = STATE(112), [sym__emphasis_star] = STATE(112), [sym__strong_emphasis_star] = STATE(112), [sym__emphasis_underscore] = STATE(112), [sym__strong_emphasis_underscore] = STATE(112), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(417)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(113), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(113), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(113), [aux_sym__inline_no_underscore] = STATE(113), [sym__emphasis_star] = STATE(113), [sym__strong_emphasis_star] = STATE(113), [sym__emphasis_underscore] = STATE(113), [sym__strong_emphasis_underscore] = STATE(113), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(418)] = { [sym_backslash_escape] = STATE(474), @@ -73328,13 +73327,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(133), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(133), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(133), @@ -73344,70 +73343,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(133), [sym__strong_emphasis_underscore] = STATE(133), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(419)] = { [sym_backslash_escape] = STATE(456), @@ -73431,13 +73430,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(134), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(134), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(134), @@ -73447,379 +73446,379 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(134), [sym__strong_emphasis_underscore] = STATE(134), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), }, [STATE(420)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(142), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(142), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(142), [aux_sym__inline_no_star] = STATE(142), [sym__emphasis_star] = STATE(142), [sym__strong_emphasis_star] = STATE(142), [sym__emphasis_underscore] = STATE(142), [sym__strong_emphasis_underscore] = STATE(142), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(421)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(143), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(143), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(143), [aux_sym__inline_no_underscore] = STATE(143), [sym__emphasis_star] = STATE(143), [sym__strong_emphasis_star] = STATE(143), [sym__emphasis_underscore] = STATE(143), [sym__strong_emphasis_underscore] = STATE(143), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(422)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(377), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(377), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(377), [aux_sym__inline_no_underscore] = STATE(377), [sym__emphasis_star] = STATE(377), [sym__strong_emphasis_star] = STATE(377), [sym__emphasis_underscore] = STATE(377), [sym__strong_emphasis_underscore] = STATE(377), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(423)] = { [sym_backslash_escape] = STATE(456), @@ -73843,13 +73842,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(164), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(164), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(164), @@ -73859,276 +73858,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(164), [sym__strong_emphasis_underscore] = STATE(164), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), }, [STATE(424)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(172), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(172), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(172), [aux_sym__inline_no_star] = STATE(172), [sym__emphasis_star] = STATE(172), [sym__strong_emphasis_star] = STATE(172), [sym__emphasis_underscore] = STATE(172), [sym__strong_emphasis_underscore] = STATE(172), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(425)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(173), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(173), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(173), [aux_sym__inline_no_underscore] = STATE(173), [sym__emphasis_star] = STATE(173), [sym__strong_emphasis_star] = STATE(173), [sym__emphasis_underscore] = STATE(173), [sym__strong_emphasis_underscore] = STATE(173), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(426)] = { [sym_backslash_escape] = STATE(474), @@ -74152,13 +74151,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(192), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(192), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(192), @@ -74168,70 +74167,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(192), [sym__strong_emphasis_underscore] = STATE(192), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(427)] = { [sym_backslash_escape] = STATE(456), @@ -74255,13 +74254,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(193), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(193), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(193), @@ -74271,276 +74270,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(193), [sym__strong_emphasis_underscore] = STATE(193), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), }, [STATE(428)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(201), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(201), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(201), [aux_sym__inline_no_star] = STATE(201), [sym__emphasis_star] = STATE(201), [sym__strong_emphasis_star] = STATE(201), [sym__emphasis_underscore] = STATE(201), [sym__strong_emphasis_underscore] = STATE(201), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(429)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(202), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(202), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(202), [aux_sym__inline_no_underscore] = STATE(202), [sym__emphasis_star] = STATE(202), [sym__strong_emphasis_star] = STATE(202), [sym__emphasis_underscore] = STATE(202), [sym__strong_emphasis_underscore] = STATE(202), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(430)] = { [sym_backslash_escape] = STATE(474), @@ -74564,13 +74563,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(221), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(221), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(221), @@ -74580,70 +74579,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(221), [sym__strong_emphasis_underscore] = STATE(221), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(431)] = { [sym_backslash_escape] = STATE(456), @@ -74667,13 +74666,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(222), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(222), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(222), @@ -74683,276 +74682,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(222), [sym__strong_emphasis_underscore] = STATE(222), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), }, [STATE(432)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(402), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(402), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(402), [aux_sym__inline_no_star] = STATE(402), [sym__emphasis_star] = STATE(402), [sym__strong_emphasis_star] = STATE(402), [sym__emphasis_underscore] = STATE(402), [sym__strong_emphasis_underscore] = STATE(402), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(433)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(231), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(231), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(231), [aux_sym__inline_no_underscore] = STATE(231), [sym__emphasis_star] = STATE(231), [sym__strong_emphasis_star] = STATE(231), [sym__emphasis_underscore] = STATE(231), [sym__strong_emphasis_underscore] = STATE(231), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(434)] = { [sym_backslash_escape] = STATE(474), @@ -74976,13 +74975,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(250), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(250), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(250), @@ -74992,70 +74991,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(250), [sym__strong_emphasis_underscore] = STATE(250), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(435)] = { [sym_backslash_escape] = STATE(456), @@ -75079,13 +75078,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(251), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(251), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(251), @@ -75095,276 +75094,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(251), [sym__strong_emphasis_underscore] = STATE(251), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), }, [STATE(436)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(259), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(259), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(259), [aux_sym__inline_no_star] = STATE(259), [sym__emphasis_star] = STATE(259), [sym__strong_emphasis_star] = STATE(259), [sym__emphasis_underscore] = STATE(259), [sym__strong_emphasis_underscore] = STATE(259), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(437)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(260), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(260), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(260), [aux_sym__inline_no_underscore] = STATE(260), [sym__emphasis_star] = STATE(260), [sym__strong_emphasis_star] = STATE(260), [sym__emphasis_underscore] = STATE(260), [sym__strong_emphasis_underscore] = STATE(260), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(438)] = { [sym_backslash_escape] = STATE(474), @@ -75388,13 +75387,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(279), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(279), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(279), @@ -75404,70 +75403,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(279), [sym__strong_emphasis_underscore] = STATE(279), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(439)] = { [sym_backslash_escape] = STATE(456), @@ -75491,13 +75490,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(280), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(280), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(280), @@ -75507,276 +75506,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(280), [sym__strong_emphasis_underscore] = STATE(280), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), }, [STATE(440)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(288), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(288), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(288), [aux_sym__inline_no_star] = STATE(288), [sym__emphasis_star] = STATE(288), [sym__strong_emphasis_star] = STATE(288), [sym__emphasis_underscore] = STATE(288), [sym__strong_emphasis_underscore] = STATE(288), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(441)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(289), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(289), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(289), [aux_sym__inline_no_underscore] = STATE(289), [sym__emphasis_star] = STATE(289), [sym__strong_emphasis_star] = STATE(289), [sym__emphasis_underscore] = STATE(289), [sym__strong_emphasis_underscore] = STATE(289), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(442)] = { [sym_backslash_escape] = STATE(456), @@ -75800,13 +75799,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(310), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(310), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(310), @@ -75816,276 +75815,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(310), [sym__strong_emphasis_underscore] = STATE(310), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), }, [STATE(443)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(318), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(318), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(318), [aux_sym__inline_no_star] = STATE(318), [sym__emphasis_star] = STATE(318), [sym__strong_emphasis_star] = STATE(318), [sym__emphasis_underscore] = STATE(318), [sym__strong_emphasis_underscore] = STATE(318), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(444)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(319), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(319), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(319), [aux_sym__inline_no_underscore] = STATE(319), [sym__emphasis_star] = STATE(319), [sym__strong_emphasis_star] = STATE(319), [sym__emphasis_underscore] = STATE(319), [sym__strong_emphasis_underscore] = STATE(319), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(445)] = { [sym_backslash_escape] = STATE(474), @@ -76109,13 +76108,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(338), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(338), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(338), @@ -76125,70 +76124,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(338), [sym__strong_emphasis_underscore] = STATE(338), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(446)] = { [sym_backslash_escape] = STATE(456), @@ -76212,13 +76211,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(339), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(339), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(339), @@ -76228,276 +76227,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(339), [sym__strong_emphasis_underscore] = STATE(339), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), }, [STATE(447)] = { - [sym_backslash_escape] = STATE(467), - [sym_commonmark_attribute] = STATE(467), - [sym_code_span] = STATE(467), - [sym_latex_span] = STATE(467), - [sym_insert] = STATE(467), - [sym_delete] = STATE(467), - [sym_highlight] = STATE(467), - [sym_edit_comment] = STATE(467), - [sym_superscript] = STATE(467), - [sym_subscript] = STATE(467), - [sym_strikeout] = STATE(467), - [sym_quoted_span] = STATE(467), - [sym_inline_note] = STATE(467), - [sym_citation] = STATE(467), - [sym_shortcode_escaped] = STATE(467), - [sym_shortcode] = STATE(467), - [sym_note_reference] = STATE(467), + [sym_backslash_escape] = STATE(465), + [sym_commonmark_attribute] = STATE(465), + [sym_code_span] = STATE(465), + [sym_latex_span] = STATE(465), + [sym_insert] = STATE(465), + [sym_delete] = STATE(465), + [sym_highlight] = STATE(465), + [sym_edit_comment] = STATE(465), + [sym_superscript] = STATE(465), + [sym_subscript] = STATE(465), + [sym_strikeout] = STATE(465), + [sym_quoted_span] = STATE(465), + [sym_inline_note] = STATE(465), + [sym_citation] = STATE(465), + [sym_shortcode_escaped] = STATE(465), + [sym_shortcode] = STATE(465), + [sym_note_reference] = STATE(465), [sym__link_text] = STATE(515), [sym__link_text_non_empty] = STATE(516), [sym_inline_link] = STATE(347), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), + [sym_image] = STATE(465), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), [sym__inline_base] = STATE(347), - [sym__text_base] = STATE(467), + [sym__text_base] = STATE(465), [sym__inline_element_no_star] = STATE(347), [aux_sym__inline_no_star] = STATE(347), [sym__emphasis_star] = STATE(347), [sym__strong_emphasis_star] = STATE(347), [sym__emphasis_underscore] = STATE(347), [sym__strong_emphasis_underscore] = STATE(347), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(355), - [sym_numeric_character_reference] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(355), - [sym_email_autolink] = ACTIONS(355), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), - [sym__emphasis_open_star] = ACTIONS(393), - [sym__emphasis_open_underscore] = ACTIONS(395), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(355), - [sym__strong_emphasis_open_star] = ACTIONS(423), - [sym__strong_emphasis_open_underscore] = ACTIONS(425), + [aux_sym__inline_base_repeat1] = STATE(465), + [sym__backslash_escape] = ACTIONS(351), + [sym_entity_reference] = ACTIONS(353), + [sym_numeric_character_reference] = ACTIONS(353), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), + [sym_uri_autolink] = ACTIONS(353), + [sym_email_autolink] = ACTIONS(353), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(391), + [sym__emphasis_open_underscore] = ACTIONS(393), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), + [sym__unclosed_span] = ACTIONS(353), + [sym__strong_emphasis_open_star] = ACTIONS(421), + [sym__strong_emphasis_open_underscore] = ACTIONS(423), }, [STATE(448)] = { - [sym_backslash_escape] = STATE(455), - [sym_commonmark_attribute] = STATE(455), - [sym_code_span] = STATE(455), - [sym_latex_span] = STATE(455), - [sym_insert] = STATE(455), - [sym_delete] = STATE(455), - [sym_highlight] = STATE(455), - [sym_edit_comment] = STATE(455), - [sym_superscript] = STATE(455), - [sym_subscript] = STATE(455), - [sym_strikeout] = STATE(455), - [sym_quoted_span] = STATE(455), - [sym_inline_note] = STATE(455), - [sym_citation] = STATE(455), - [sym_shortcode_escaped] = STATE(455), - [sym_shortcode] = STATE(455), - [sym_note_reference] = STATE(455), + [sym_backslash_escape] = STATE(457), + [sym_commonmark_attribute] = STATE(457), + [sym_code_span] = STATE(457), + [sym_latex_span] = STATE(457), + [sym_insert] = STATE(457), + [sym_delete] = STATE(457), + [sym_highlight] = STATE(457), + [sym_edit_comment] = STATE(457), + [sym_superscript] = STATE(457), + [sym_subscript] = STATE(457), + [sym_strikeout] = STATE(457), + [sym_quoted_span] = STATE(457), + [sym_inline_note] = STATE(457), + [sym_citation] = STATE(457), + [sym_shortcode_escaped] = STATE(457), + [sym_shortcode] = STATE(457), + [sym_note_reference] = STATE(457), [sym__link_text] = STATE(545), [sym__link_text_non_empty] = STATE(546), [sym_inline_link] = STATE(348), - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), + [sym_image] = STATE(457), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(457), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), [sym__inline_base] = STATE(348), - [sym__text_base] = STATE(455), + [sym__text_base] = STATE(457), [sym__inline_element_no_underscore] = STATE(348), [aux_sym__inline_no_underscore] = STATE(348), [sym__emphasis_star] = STATE(348), [sym__strong_emphasis_star] = STATE(348), [sym__emphasis_underscore] = STATE(348), [sym__strong_emphasis_underscore] = STATE(348), - [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(199), - [sym_numeric_character_reference] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(199), - [sym_email_autolink] = ACTIONS(199), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(237), - [sym__emphasis_open_underscore] = ACTIONS(239), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(199), - [sym__strong_emphasis_open_star] = ACTIONS(267), - [sym__strong_emphasis_open_underscore] = ACTIONS(269), + [aux_sym__inline_base_repeat1] = STATE(457), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(427), + [sym_numeric_character_reference] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(427), + [sym_email_autolink] = ACTIONS(427), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(467), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(427), + [sym__strong_emphasis_open_star] = ACTIONS(495), + [sym__strong_emphasis_open_underscore] = ACTIONS(497), }, [STATE(449)] = { [sym_backslash_escape] = STATE(474), @@ -76521,13 +76520,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(367), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(367), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(367), @@ -76537,70 +76536,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(367), [sym__strong_emphasis_underscore] = STATE(367), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(450)] = { [sym_backslash_escape] = STATE(456), @@ -76624,13 +76623,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(749), [sym_inline_link] = STATE(368), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__inline_base] = STATE(368), [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(368), @@ -76640,70 +76639,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(368), [sym__strong_emphasis_underscore] = STATE(368), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(875), - [sym_numeric_character_reference] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(875), - [sym_email_autolink] = ACTIONS(875), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(913), - [sym__emphasis_open_underscore] = ACTIONS(915), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(875), - [sym__strong_emphasis_open_star] = ACTIONS(941), - [sym__strong_emphasis_open_underscore] = ACTIONS(943), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(873), + [sym_numeric_character_reference] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(873), + [sym_email_autolink] = ACTIONS(873), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(911), + [sym__emphasis_open_underscore] = ACTIONS(913), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(873), + [sym__strong_emphasis_open_star] = ACTIONS(939), + [sym__strong_emphasis_open_underscore] = ACTIONS(941), }, [STATE(451)] = { [sym_backslash_escape] = STATE(474), @@ -76727,13 +76726,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__link_text_non_empty] = STATE(707), [sym_inline_link] = STATE(163), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__inline_base] = STATE(163), [sym__text_base] = STATE(474), [sym__inline_element_no_star] = STATE(163), @@ -76743,70 +76742,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_underscore] = STATE(163), [sym__strong_emphasis_underscore] = STATE(163), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(801), - [sym_numeric_character_reference] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(801), - [sym_email_autolink] = ACTIONS(801), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), - [sym__emphasis_open_star] = ACTIONS(839), - [sym__emphasis_open_underscore] = ACTIONS(841), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), - [sym__unclosed_span] = ACTIONS(801), - [sym__strong_emphasis_open_star] = ACTIONS(867), - [sym__strong_emphasis_open_underscore] = ACTIONS(871), + [sym__backslash_escape] = ACTIONS(797), + [sym_entity_reference] = ACTIONS(799), + [sym_numeric_character_reference] = ACTIONS(799), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(799), + [sym_email_autolink] = ACTIONS(799), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(839), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), + [sym__unclosed_span] = ACTIONS(799), + [sym__strong_emphasis_open_star] = ACTIONS(865), + [sym__strong_emphasis_open_underscore] = ACTIONS(869), }, [STATE(452)] = { [sym_backslash_escape] = STATE(464), @@ -76827,13 +76826,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(464), [sym_note_reference] = STATE(464), [sym_image] = STATE(464), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(464), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__text_base] = STATE(464), [aux_sym__inline_base_repeat1] = STATE(464), [sym__backslash_escape] = ACTIONS(77), @@ -76903,131 +76902,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(3037), }, [STATE(453)] = { - [sym_backslash_escape] = STATE(453), - [sym_commonmark_attribute] = STATE(453), - [sym_code_span] = STATE(453), - [sym_latex_span] = STATE(453), - [sym_insert] = STATE(453), - [sym_delete] = STATE(453), - [sym_highlight] = STATE(453), - [sym_edit_comment] = STATE(453), - [sym_superscript] = STATE(453), - [sym_subscript] = STATE(453), - [sym_strikeout] = STATE(453), - [sym_quoted_span] = STATE(453), - [sym_inline_note] = STATE(453), - [sym_citation] = STATE(453), - [sym_shortcode_escaped] = STATE(453), - [sym_shortcode] = STATE(453), - [sym_note_reference] = STATE(453), - [sym_image] = STATE(453), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(453), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__text_base] = STATE(453), - [aux_sym__inline_base_repeat1] = STATE(453), - [sym__backslash_escape] = ACTIONS(3039), - [sym_entity_reference] = ACTIONS(3042), - [sym_numeric_character_reference] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3048), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3048), - [anon_sym_POUND] = ACTIONS(3048), - [anon_sym_DOLLAR] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_SQUOTE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3048), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_SLASH] = ACTIONS(3048), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_SEMI] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3048), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_BSLASH] = ACTIONS(3056), - [anon_sym_CARET] = ACTIONS(3045), - [anon_sym_BQUOTE] = ACTIONS(3048), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_RPAREN] = ACTIONS(3048), - [sym__newline_token] = ACTIONS(3062), - [aux_sym_insert_token1] = ACTIONS(3065), - [aux_sym_delete_token1] = ACTIONS(3068), - [aux_sym_highlight_token1] = ACTIONS(3071), - [aux_sym_edit_comment_token1] = ACTIONS(3074), - [anon_sym_CARET_LBRACK] = ACTIONS(3077), - [anon_sym_LBRACK_CARET] = ACTIONS(3080), - [sym_uri_autolink] = ACTIONS(3042), - [sym_email_autolink] = ACTIONS(3042), - [sym__whitespace_ge_2] = ACTIONS(3083), - [aux_sym__whitespace_token1] = ACTIONS(3086), - [sym__word_no_digit] = ACTIONS(3089), - [sym__digits] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3092), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3089), - [sym__code_span_start] = ACTIONS(3095), - [sym__emphasis_open_star] = ACTIONS(3098), - [sym__emphasis_open_underscore] = ACTIONS(3098), - [sym__emphasis_close_star] = ACTIONS(3098), - [sym__strikeout_open] = ACTIONS(3100), - [sym__latex_span_start] = ACTIONS(3103), - [sym__single_quote_open] = ACTIONS(3106), - [sym__double_quote_open] = ACTIONS(3109), - [sym__superscript_open] = ACTIONS(3112), - [sym__subscript_open] = ACTIONS(3115), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3118), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3121), - [sym__cite_author_in_text] = ACTIONS(3124), - [sym__cite_suppress_author] = ACTIONS(3127), - [sym__shortcode_open_escaped] = ACTIONS(3130), - [sym__shortcode_open] = ACTIONS(3133), - [sym__unclosed_span] = ACTIONS(3042), - [sym__strong_emphasis_open_star] = ACTIONS(3098), - [sym__strong_emphasis_open_underscore] = ACTIONS(3098), - }, - [STATE(454)] = { - [sym_backslash_escape] = STATE(471), - [sym_commonmark_attribute] = STATE(471), - [sym_code_span] = STATE(471), - [sym_latex_span] = STATE(471), - [sym_insert] = STATE(471), - [sym_delete] = STATE(471), - [sym_highlight] = STATE(471), - [sym_edit_comment] = STATE(471), - [sym_superscript] = STATE(471), - [sym_subscript] = STATE(471), - [sym_strikeout] = STATE(471), - [sym_quoted_span] = STATE(471), - [sym_inline_note] = STATE(471), - [sym_citation] = STATE(471), - [sym_shortcode_escaped] = STATE(471), - [sym_shortcode] = STATE(471), - [sym_note_reference] = STATE(471), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1528), - [sym__image_description] = STATE(2751), - [sym__image_description_non_empty] = STATE(2751), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(896), - [sym__word] = STATE(896), - [sym__soft_line_break] = STATE(1586), - [sym__text_base] = STATE(471), - [aux_sym__inline_base_repeat1] = STATE(471), + [sym_backslash_escape] = STATE(469), + [sym_commonmark_attribute] = STATE(469), + [sym_code_span] = STATE(469), + [sym_latex_span] = STATE(469), + [sym_insert] = STATE(469), + [sym_delete] = STATE(469), + [sym_highlight] = STATE(469), + [sym_edit_comment] = STATE(469), + [sym_superscript] = STATE(469), + [sym_subscript] = STATE(469), + [sym_strikeout] = STATE(469), + [sym_quoted_span] = STATE(469), + [sym_inline_note] = STATE(469), + [sym_citation] = STATE(469), + [sym_shortcode_escaped] = STATE(469), + [sym_shortcode] = STATE(469), + [sym_note_reference] = STATE(469), + [sym_image] = STATE(469), + [sym__image_inline_link] = STATE(1581), + [sym__image_description] = STATE(2764), + [sym__image_description_non_empty] = STATE(2764), + [sym_hard_line_break] = STATE(469), + [sym__whitespace] = STATE(1353), + [sym__word] = STATE(1353), + [sym__soft_line_break] = STATE(1724), + [sym__text_base] = STATE(469), + [aux_sym__inline_base_repeat1] = STATE(469), [ts_builtin_sym_end] = ACTIONS(3037), [sym__backslash_escape] = ACTIONS(3), - [sym_entity_reference] = ACTIONS(3136), - [sym_numeric_character_reference] = ACTIONS(3136), + [sym_entity_reference] = ACTIONS(3039), + [sym_numeric_character_reference] = ACTIONS(3039), [anon_sym_LT] = ACTIONS(7), [anon_sym_GT] = ACTIONS(9), [anon_sym_BANG] = ACTIONS(11), @@ -77062,8 +76967,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_edit_comment_token1] = ACTIONS(27), [anon_sym_CARET_LBRACK] = ACTIONS(29), [anon_sym_LBRACK_CARET] = ACTIONS(31), - [sym_uri_autolink] = ACTIONS(3136), - [sym_email_autolink] = ACTIONS(3136), + [sym_uri_autolink] = ACTIONS(3039), + [sym_email_autolink] = ACTIONS(3039), [sym__whitespace_ge_2] = ACTIONS(33), [aux_sym__whitespace_token1] = ACTIONS(35), [sym__word_no_digit] = ACTIONS(37), @@ -77086,293 +76991,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cite_suppress_author] = ACTIONS(67), [sym__shortcode_open_escaped] = ACTIONS(69), [sym__shortcode_open] = ACTIONS(71), - [sym__unclosed_span] = ACTIONS(3136), - [sym__strong_emphasis_open_star] = ACTIONS(3037), - [sym__strong_emphasis_open_underscore] = ACTIONS(3037), - }, - [STATE(455)] = { - [sym_backslash_escape] = STATE(457), - [sym_commonmark_attribute] = STATE(457), - [sym_code_span] = STATE(457), - [sym_latex_span] = STATE(457), - [sym_insert] = STATE(457), - [sym_delete] = STATE(457), - [sym_highlight] = STATE(457), - [sym_edit_comment] = STATE(457), - [sym_superscript] = STATE(457), - [sym_subscript] = STATE(457), - [sym_strikeout] = STATE(457), - [sym_quoted_span] = STATE(457), - [sym_inline_note] = STATE(457), - [sym_citation] = STATE(457), - [sym_shortcode_escaped] = STATE(457), - [sym_shortcode] = STATE(457), - [sym_note_reference] = STATE(457), - [sym_image] = STATE(457), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(457), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__text_base] = STATE(457), - [aux_sym__inline_base_repeat1] = STATE(457), - [sym__backslash_escape] = ACTIONS(197), - [sym_entity_reference] = ACTIONS(3138), - [sym_numeric_character_reference] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_GT] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_BQUOTE] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(203), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(215), - [aux_sym_delete_token1] = ACTIONS(217), - [aux_sym_highlight_token1] = ACTIONS(219), - [aux_sym_edit_comment_token1] = ACTIONS(221), - [anon_sym_CARET_LBRACK] = ACTIONS(223), - [anon_sym_LBRACK_CARET] = ACTIONS(225), - [sym_uri_autolink] = ACTIONS(3138), - [sym_email_autolink] = ACTIONS(3138), - [sym__whitespace_ge_2] = ACTIONS(227), - [aux_sym__whitespace_token1] = ACTIONS(229), - [sym__word_no_digit] = ACTIONS(231), - [sym__digits] = ACTIONS(231), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH_DASH] = ACTIONS(231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(231), - [sym__code_span_start] = ACTIONS(235), - [sym__emphasis_open_star] = ACTIONS(3037), - [sym__emphasis_open_underscore] = ACTIONS(3037), - [sym__emphasis_close_underscore] = ACTIONS(3037), - [sym__strikeout_open] = ACTIONS(243), - [sym__latex_span_start] = ACTIONS(245), - [sym__single_quote_open] = ACTIONS(247), - [sym__double_quote_open] = ACTIONS(249), - [sym__superscript_open] = ACTIONS(251), - [sym__subscript_open] = ACTIONS(253), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), - [sym__cite_author_in_text] = ACTIONS(259), - [sym__cite_suppress_author] = ACTIONS(261), - [sym__shortcode_open_escaped] = ACTIONS(263), - [sym__shortcode_open] = ACTIONS(265), - [sym__unclosed_span] = ACTIONS(3138), - [sym__strong_emphasis_open_star] = ACTIONS(3037), - [sym__strong_emphasis_open_underscore] = ACTIONS(3037), - }, - [STATE(456)] = { - [sym_backslash_escape] = STATE(468), - [sym_commonmark_attribute] = STATE(468), - [sym_code_span] = STATE(468), - [sym_latex_span] = STATE(468), - [sym_insert] = STATE(468), - [sym_delete] = STATE(468), - [sym_highlight] = STATE(468), - [sym_edit_comment] = STATE(468), - [sym_superscript] = STATE(468), - [sym_subscript] = STATE(468), - [sym_strikeout] = STATE(468), - [sym_quoted_span] = STATE(468), - [sym_inline_note] = STATE(468), - [sym_citation] = STATE(468), - [sym_shortcode_escaped] = STATE(468), - [sym_shortcode] = STATE(468), - [sym_note_reference] = STATE(468), - [sym_image] = STATE(468), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), - [sym_hard_line_break] = STATE(468), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), - [sym__text_base] = STATE(468), - [aux_sym__inline_base_repeat1] = STATE(468), - [sym__backslash_escape] = ACTIONS(873), - [sym_entity_reference] = ACTIONS(3140), - [sym_numeric_character_reference] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_COMMA] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_BSLASH] = ACTIONS(885), - [anon_sym_CARET] = ACTIONS(877), - [anon_sym_BQUOTE] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(891), - [aux_sym_delete_token1] = ACTIONS(893), - [aux_sym_highlight_token1] = ACTIONS(895), - [aux_sym_edit_comment_token1] = ACTIONS(897), - [anon_sym_CARET_LBRACK] = ACTIONS(899), - [anon_sym_LBRACK_CARET] = ACTIONS(901), - [sym_uri_autolink] = ACTIONS(3140), - [sym_email_autolink] = ACTIONS(3140), - [sym__whitespace_ge_2] = ACTIONS(903), - [aux_sym__whitespace_token1] = ACTIONS(905), - [sym__word_no_digit] = ACTIONS(907), - [sym__digits] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_DASH_DASH_DASH] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [sym__code_span_start] = ACTIONS(911), - [sym__emphasis_open_star] = ACTIONS(3037), - [sym__emphasis_open_underscore] = ACTIONS(3037), - [sym__strikeout_open] = ACTIONS(917), - [sym__latex_span_start] = ACTIONS(919), - [sym__single_quote_open] = ACTIONS(921), - [sym__double_quote_open] = ACTIONS(923), - [sym__superscript_open] = ACTIONS(925), - [sym__subscript_open] = ACTIONS(927), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(929), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(933), - [sym__cite_suppress_author] = ACTIONS(935), - [sym__shortcode_open_escaped] = ACTIONS(937), - [sym__shortcode_open] = ACTIONS(939), - [sym__unclosed_span] = ACTIONS(3140), + [sym__unclosed_span] = ACTIONS(3039), [sym__strong_emphasis_open_star] = ACTIONS(3037), [sym__strong_emphasis_open_underscore] = ACTIONS(3037), - [sym__strong_emphasis_close_underscore] = ACTIONS(3037), }, - [STATE(457)] = { - [sym_backslash_escape] = STATE(457), - [sym_commonmark_attribute] = STATE(457), - [sym_code_span] = STATE(457), - [sym_latex_span] = STATE(457), - [sym_insert] = STATE(457), - [sym_delete] = STATE(457), - [sym_highlight] = STATE(457), - [sym_edit_comment] = STATE(457), - [sym_superscript] = STATE(457), - [sym_subscript] = STATE(457), - [sym_strikeout] = STATE(457), - [sym_quoted_span] = STATE(457), - [sym_inline_note] = STATE(457), - [sym_citation] = STATE(457), - [sym_shortcode_escaped] = STATE(457), - [sym_shortcode] = STATE(457), - [sym_note_reference] = STATE(457), - [sym_image] = STATE(457), - [sym__image_inline_link] = STATE(1458), - [sym__image_description] = STATE(2892), - [sym__image_description_non_empty] = STATE(2892), - [sym_hard_line_break] = STATE(457), - [sym__whitespace] = STATE(1443), - [sym__word] = STATE(1443), - [sym__soft_line_break] = STATE(1460), - [sym__text_base] = STATE(457), - [aux_sym__inline_base_repeat1] = STATE(457), - [sym__backslash_escape] = ACTIONS(3142), - [sym_entity_reference] = ACTIONS(3145), - [sym_numeric_character_reference] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_GT] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3151), - [anon_sym_POUND] = ACTIONS(3151), - [anon_sym_DOLLAR] = ACTIONS(3151), - [anon_sym_PERCENT] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_DOT] = ACTIONS(3148), - [anon_sym_SLASH] = ACTIONS(3151), - [anon_sym_COLON] = ACTIONS(3151), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_EQ] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_BSLASH] = ACTIONS(3157), - [anon_sym_CARET] = ACTIONS(3148), - [anon_sym_BQUOTE] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_RPAREN] = ACTIONS(3151), - [sym__newline_token] = ACTIONS(3163), - [aux_sym_insert_token1] = ACTIONS(3166), - [aux_sym_delete_token1] = ACTIONS(3169), - [aux_sym_highlight_token1] = ACTIONS(3172), - [aux_sym_edit_comment_token1] = ACTIONS(3175), - [anon_sym_CARET_LBRACK] = ACTIONS(3178), - [anon_sym_LBRACK_CARET] = ACTIONS(3181), - [sym_uri_autolink] = ACTIONS(3145), - [sym_email_autolink] = ACTIONS(3145), - [sym__whitespace_ge_2] = ACTIONS(3184), - [aux_sym__whitespace_token1] = ACTIONS(3187), - [sym__word_no_digit] = ACTIONS(3190), - [sym__digits] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3190), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3190), - [sym__code_span_start] = ACTIONS(3196), - [sym__emphasis_open_star] = ACTIONS(3098), - [sym__emphasis_open_underscore] = ACTIONS(3098), - [sym__emphasis_close_underscore] = ACTIONS(3098), - [sym__strikeout_open] = ACTIONS(3199), - [sym__latex_span_start] = ACTIONS(3202), - [sym__single_quote_open] = ACTIONS(3205), - [sym__double_quote_open] = ACTIONS(3208), - [sym__superscript_open] = ACTIONS(3211), - [sym__subscript_open] = ACTIONS(3214), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3217), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3220), - [sym__cite_author_in_text] = ACTIONS(3223), - [sym__cite_suppress_author] = ACTIONS(3226), - [sym__shortcode_open_escaped] = ACTIONS(3229), - [sym__shortcode_open] = ACTIONS(3232), - [sym__unclosed_span] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3098), - [sym__strong_emphasis_open_underscore] = ACTIONS(3098), + [STATE(454)] = { + [sym_backslash_escape] = STATE(454), + [sym_commonmark_attribute] = STATE(454), + [sym_code_span] = STATE(454), + [sym_latex_span] = STATE(454), + [sym_insert] = STATE(454), + [sym_delete] = STATE(454), + [sym_highlight] = STATE(454), + [sym_edit_comment] = STATE(454), + [sym_superscript] = STATE(454), + [sym_subscript] = STATE(454), + [sym_strikeout] = STATE(454), + [sym_quoted_span] = STATE(454), + [sym_inline_note] = STATE(454), + [sym_citation] = STATE(454), + [sym_shortcode_escaped] = STATE(454), + [sym_shortcode] = STATE(454), + [sym_note_reference] = STATE(454), + [sym_image] = STATE(454), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(454), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__text_base] = STATE(454), + [aux_sym__inline_base_repeat1] = STATE(454), + [sym__backslash_escape] = ACTIONS(3041), + [sym_entity_reference] = ACTIONS(3044), + [sym_numeric_character_reference] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(3050), + [anon_sym_POUND] = ACTIONS(3050), + [anon_sym_DOLLAR] = ACTIONS(3050), + [anon_sym_PERCENT] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3050), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_DOT] = ACTIONS(3047), + [anon_sym_SLASH] = ACTIONS(3050), + [anon_sym_COLON] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_BSLASH] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3047), + [anon_sym_BQUOTE] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_RPAREN] = ACTIONS(3050), + [sym__newline_token] = ACTIONS(3064), + [aux_sym_insert_token1] = ACTIONS(3067), + [aux_sym_delete_token1] = ACTIONS(3070), + [aux_sym_highlight_token1] = ACTIONS(3073), + [aux_sym_edit_comment_token1] = ACTIONS(3076), + [anon_sym_CARET_LBRACK] = ACTIONS(3079), + [anon_sym_LBRACK_CARET] = ACTIONS(3082), + [sym_uri_autolink] = ACTIONS(3044), + [sym_email_autolink] = ACTIONS(3044), + [sym__whitespace_ge_2] = ACTIONS(3085), + [aux_sym__whitespace_token1] = ACTIONS(3088), + [sym__word_no_digit] = ACTIONS(3091), + [sym__digits] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3094), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3091), + [sym__code_span_start] = ACTIONS(3097), + [sym__emphasis_open_star] = ACTIONS(3100), + [sym__emphasis_open_underscore] = ACTIONS(3100), + [sym__emphasis_close_star] = ACTIONS(3100), + [sym__strikeout_open] = ACTIONS(3102), + [sym__latex_span_start] = ACTIONS(3105), + [sym__single_quote_open] = ACTIONS(3108), + [sym__double_quote_open] = ACTIONS(3111), + [sym__superscript_open] = ACTIONS(3114), + [sym__subscript_open] = ACTIONS(3117), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3120), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3123), + [sym__cite_author_in_text] = ACTIONS(3126), + [sym__cite_suppress_author] = ACTIONS(3129), + [sym__shortcode_open_escaped] = ACTIONS(3132), + [sym__shortcode_open] = ACTIONS(3135), + [sym__unclosed_span] = ACTIONS(3044), + [sym__strong_emphasis_open_star] = ACTIONS(3100), + [sym__strong_emphasis_open_underscore] = ACTIONS(3100), }, - [STATE(458)] = { + [STATE(455)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -77391,18 +77108,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__text_base] = STATE(461), [aux_sym__inline_base_repeat1] = STATE(461), [sym__backslash_escape] = ACTIONS(271), - [sym_entity_reference] = ACTIONS(3235), - [sym_numeric_character_reference] = ACTIONS(3235), + [sym_entity_reference] = ACTIONS(3138), + [sym_numeric_character_reference] = ACTIONS(3138), [anon_sym_LT] = ACTIONS(275), [anon_sym_GT] = ACTIONS(277), [anon_sym_BANG] = ACTIONS(279), @@ -77438,8 +77155,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_edit_comment_token1] = ACTIONS(297), [anon_sym_CARET_LBRACK] = ACTIONS(299), [anon_sym_LBRACK_CARET] = ACTIONS(301), - [sym_uri_autolink] = ACTIONS(3235), - [sym_email_autolink] = ACTIONS(3235), + [sym_uri_autolink] = ACTIONS(3138), + [sym_email_autolink] = ACTIONS(3138), [sym__whitespace_ge_2] = ACTIONS(303), [aux_sym__whitespace_token1] = ACTIONS(305), [sym__word_no_digit] = ACTIONS(307), @@ -77462,10 +77179,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__cite_suppress_author] = ACTIONS(335), [sym__shortcode_open_escaped] = ACTIONS(337), [sym__shortcode_open] = ACTIONS(339), - [sym__unclosed_span] = ACTIONS(3235), + [sym__unclosed_span] = ACTIONS(3138), + [sym__strong_emphasis_open_star] = ACTIONS(3037), + [sym__strong_emphasis_open_underscore] = ACTIONS(3037), + }, + [STATE(456)] = { + [sym_backslash_escape] = STATE(468), + [sym_commonmark_attribute] = STATE(468), + [sym_code_span] = STATE(468), + [sym_latex_span] = STATE(468), + [sym_insert] = STATE(468), + [sym_delete] = STATE(468), + [sym_highlight] = STATE(468), + [sym_edit_comment] = STATE(468), + [sym_superscript] = STATE(468), + [sym_subscript] = STATE(468), + [sym_strikeout] = STATE(468), + [sym_quoted_span] = STATE(468), + [sym_inline_note] = STATE(468), + [sym_citation] = STATE(468), + [sym_shortcode_escaped] = STATE(468), + [sym_shortcode] = STATE(468), + [sym_note_reference] = STATE(468), + [sym_image] = STATE(468), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), + [sym_hard_line_break] = STATE(468), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), + [sym__text_base] = STATE(468), + [aux_sym__inline_base_repeat1] = STATE(468), + [sym__backslash_escape] = ACTIONS(871), + [sym_entity_reference] = ACTIONS(3140), + [sym_numeric_character_reference] = ACTIONS(3140), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_DQUOTE] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(889), + [aux_sym_delete_token1] = ACTIONS(891), + [aux_sym_highlight_token1] = ACTIONS(893), + [aux_sym_edit_comment_token1] = ACTIONS(895), + [anon_sym_CARET_LBRACK] = ACTIONS(897), + [anon_sym_LBRACK_CARET] = ACTIONS(899), + [sym_uri_autolink] = ACTIONS(3140), + [sym_email_autolink] = ACTIONS(3140), + [sym__whitespace_ge_2] = ACTIONS(901), + [aux_sym__whitespace_token1] = ACTIONS(903), + [sym__word_no_digit] = ACTIONS(905), + [sym__digits] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(907), + [anon_sym_DASH_DASH_DASH] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [sym__code_span_start] = ACTIONS(909), + [sym__emphasis_open_star] = ACTIONS(3037), + [sym__emphasis_open_underscore] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(915), + [sym__latex_span_start] = ACTIONS(917), + [sym__single_quote_open] = ACTIONS(919), + [sym__double_quote_open] = ACTIONS(921), + [sym__superscript_open] = ACTIONS(923), + [sym__subscript_open] = ACTIONS(925), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(927), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(929), + [sym__cite_author_in_text] = ACTIONS(931), + [sym__cite_suppress_author] = ACTIONS(933), + [sym__shortcode_open_escaped] = ACTIONS(935), + [sym__shortcode_open] = ACTIONS(937), + [sym__unclosed_span] = ACTIONS(3140), + [sym__strong_emphasis_open_star] = ACTIONS(3037), + [sym__strong_emphasis_open_underscore] = ACTIONS(3037), + [sym__strong_emphasis_close_underscore] = ACTIONS(3037), + }, + [STATE(457)] = { + [sym_backslash_escape] = STATE(458), + [sym_commonmark_attribute] = STATE(458), + [sym_code_span] = STATE(458), + [sym_latex_span] = STATE(458), + [sym_insert] = STATE(458), + [sym_delete] = STATE(458), + [sym_highlight] = STATE(458), + [sym_edit_comment] = STATE(458), + [sym_superscript] = STATE(458), + [sym_subscript] = STATE(458), + [sym_strikeout] = STATE(458), + [sym_quoted_span] = STATE(458), + [sym_inline_note] = STATE(458), + [sym_citation] = STATE(458), + [sym_shortcode_escaped] = STATE(458), + [sym_shortcode] = STATE(458), + [sym_note_reference] = STATE(458), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__text_base] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(425), + [sym_entity_reference] = ACTIONS(3142), + [sym_numeric_character_reference] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(431), + [anon_sym_PERCENT] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(431), + [anon_sym_COLON] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_BSLASH] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(443), + [aux_sym_delete_token1] = ACTIONS(445), + [aux_sym_highlight_token1] = ACTIONS(447), + [aux_sym_edit_comment_token1] = ACTIONS(449), + [anon_sym_CARET_LBRACK] = ACTIONS(451), + [anon_sym_LBRACK_CARET] = ACTIONS(453), + [sym_uri_autolink] = ACTIONS(3142), + [sym_email_autolink] = ACTIONS(3142), + [sym__whitespace_ge_2] = ACTIONS(455), + [aux_sym__whitespace_token1] = ACTIONS(457), + [sym__word_no_digit] = ACTIONS(459), + [sym__digits] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_DASH_DASH_DASH] = ACTIONS(459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym__code_span_start] = ACTIONS(463), + [sym__emphasis_open_star] = ACTIONS(3037), + [sym__emphasis_open_underscore] = ACTIONS(3037), + [sym__emphasis_close_underscore] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(471), + [sym__latex_span_start] = ACTIONS(473), + [sym__single_quote_open] = ACTIONS(475), + [sym__double_quote_open] = ACTIONS(477), + [sym__superscript_open] = ACTIONS(479), + [sym__subscript_open] = ACTIONS(481), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(485), + [sym__cite_author_in_text] = ACTIONS(487), + [sym__cite_suppress_author] = ACTIONS(489), + [sym__shortcode_open_escaped] = ACTIONS(491), + [sym__shortcode_open] = ACTIONS(493), + [sym__unclosed_span] = ACTIONS(3142), [sym__strong_emphasis_open_star] = ACTIONS(3037), [sym__strong_emphasis_open_underscore] = ACTIONS(3037), }, + [STATE(458)] = { + [sym_backslash_escape] = STATE(458), + [sym_commonmark_attribute] = STATE(458), + [sym_code_span] = STATE(458), + [sym_latex_span] = STATE(458), + [sym_insert] = STATE(458), + [sym_delete] = STATE(458), + [sym_highlight] = STATE(458), + [sym_edit_comment] = STATE(458), + [sym_superscript] = STATE(458), + [sym_subscript] = STATE(458), + [sym_strikeout] = STATE(458), + [sym_quoted_span] = STATE(458), + [sym_inline_note] = STATE(458), + [sym_citation] = STATE(458), + [sym_shortcode_escaped] = STATE(458), + [sym_shortcode] = STATE(458), + [sym_note_reference] = STATE(458), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1439), + [sym__image_description] = STATE(2886), + [sym__image_description_non_empty] = STATE(2886), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1434), + [sym__word] = STATE(1434), + [sym__soft_line_break] = STATE(1440), + [sym__text_base] = STATE(458), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(3144), + [sym_entity_reference] = ACTIONS(3147), + [sym_numeric_character_reference] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3150), + [anon_sym_GT] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_DQUOTE] = ACTIONS(3153), + [anon_sym_POUND] = ACTIONS(3153), + [anon_sym_DOLLAR] = ACTIONS(3153), + [anon_sym_PERCENT] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_DOT] = ACTIONS(3150), + [anon_sym_SLASH] = ACTIONS(3153), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_BSLASH] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_BQUOTE] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3153), + [anon_sym_RPAREN] = ACTIONS(3153), + [sym__newline_token] = ACTIONS(3165), + [aux_sym_insert_token1] = ACTIONS(3168), + [aux_sym_delete_token1] = ACTIONS(3171), + [aux_sym_highlight_token1] = ACTIONS(3174), + [aux_sym_edit_comment_token1] = ACTIONS(3177), + [anon_sym_CARET_LBRACK] = ACTIONS(3180), + [anon_sym_LBRACK_CARET] = ACTIONS(3183), + [sym_uri_autolink] = ACTIONS(3147), + [sym_email_autolink] = ACTIONS(3147), + [sym__whitespace_ge_2] = ACTIONS(3186), + [aux_sym__whitespace_token1] = ACTIONS(3189), + [sym__word_no_digit] = ACTIONS(3192), + [sym__digits] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3192), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3192), + [sym__code_span_start] = ACTIONS(3198), + [sym__emphasis_open_star] = ACTIONS(3100), + [sym__emphasis_open_underscore] = ACTIONS(3100), + [sym__emphasis_close_underscore] = ACTIONS(3100), + [sym__strikeout_open] = ACTIONS(3201), + [sym__latex_span_start] = ACTIONS(3204), + [sym__single_quote_open] = ACTIONS(3207), + [sym__double_quote_open] = ACTIONS(3210), + [sym__superscript_open] = ACTIONS(3213), + [sym__subscript_open] = ACTIONS(3216), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3219), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3222), + [sym__cite_author_in_text] = ACTIONS(3225), + [sym__cite_suppress_author] = ACTIONS(3228), + [sym__shortcode_open_escaped] = ACTIONS(3231), + [sym__shortcode_open] = ACTIONS(3234), + [sym__unclosed_span] = ACTIONS(3147), + [sym__strong_emphasis_open_star] = ACTIONS(3100), + [sym__strong_emphasis_open_underscore] = ACTIONS(3100), + }, [STATE(459)] = { [sym_backslash_escape] = STATE(460), [sym_commonmark_attribute] = STATE(460), @@ -77485,77 +77484,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(460), [sym_note_reference] = STATE(460), [sym_image] = STATE(460), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(460), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), [sym__text_base] = STATE(460), [aux_sym__inline_base_repeat1] = STATE(460), - [sym__backslash_escape] = ACTIONS(431), + [sym__backslash_escape] = ACTIONS(501), [sym_entity_reference] = ACTIONS(3237), [sym_numeric_character_reference] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_COLON] = ACTIONS(437), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(437), + [anon_sym_LT] = ACTIONS(505), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(507), [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_BSLASH] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_BQUOTE] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RPAREN] = ACTIONS(437), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(449), - [aux_sym_delete_token1] = ACTIONS(451), - [aux_sym_highlight_token1] = ACTIONS(453), - [aux_sym_edit_comment_token1] = ACTIONS(455), - [anon_sym_CARET_LBRACK] = ACTIONS(457), - [anon_sym_LBRACK_CARET] = ACTIONS(459), + [anon_sym_BSLASH] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(507), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(519), + [aux_sym_delete_token1] = ACTIONS(521), + [aux_sym_highlight_token1] = ACTIONS(523), + [aux_sym_edit_comment_token1] = ACTIONS(525), + [anon_sym_CARET_LBRACK] = ACTIONS(527), + [anon_sym_LBRACK_CARET] = ACTIONS(529), [sym_uri_autolink] = ACTIONS(3237), [sym_email_autolink] = ACTIONS(3237), - [sym__whitespace_ge_2] = ACTIONS(461), - [aux_sym__whitespace_token1] = ACTIONS(463), - [sym__word_no_digit] = ACTIONS(465), - [sym__digits] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DASH_DASH_DASH] = ACTIONS(465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym__code_span_start] = ACTIONS(469), + [sym__whitespace_ge_2] = ACTIONS(531), + [aux_sym__whitespace_token1] = ACTIONS(533), + [sym__word_no_digit] = ACTIONS(535), + [sym__digits] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym__code_span_start] = ACTIONS(539), [sym__emphasis_open_star] = ACTIONS(3037), [sym__emphasis_open_underscore] = ACTIONS(3037), - [sym__strikeout_open] = ACTIONS(475), + [sym__strikeout_open] = ACTIONS(545), [sym__strikeout_close] = ACTIONS(3037), - [sym__latex_span_start] = ACTIONS(479), - [sym__single_quote_open] = ACTIONS(481), - [sym__double_quote_open] = ACTIONS(483), - [sym__superscript_open] = ACTIONS(485), - [sym__subscript_open] = ACTIONS(487), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(489), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(491), - [sym__cite_author_in_text] = ACTIONS(493), - [sym__cite_suppress_author] = ACTIONS(495), - [sym__shortcode_open_escaped] = ACTIONS(497), - [sym__shortcode_open] = ACTIONS(499), + [sym__latex_span_start] = ACTIONS(549), + [sym__single_quote_open] = ACTIONS(551), + [sym__double_quote_open] = ACTIONS(553), + [sym__superscript_open] = ACTIONS(555), + [sym__subscript_open] = ACTIONS(557), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(561), + [sym__cite_author_in_text] = ACTIONS(563), + [sym__cite_suppress_author] = ACTIONS(565), + [sym__shortcode_open_escaped] = ACTIONS(567), + [sym__shortcode_open] = ACTIONS(569), [sym__unclosed_span] = ACTIONS(3237), [sym__strong_emphasis_open_star] = ACTIONS(3037), [sym__strong_emphasis_open_underscore] = ACTIONS(3037), @@ -77579,13 +77578,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(460), [sym_note_reference] = STATE(460), [sym_image] = STATE(460), - [sym__image_inline_link] = STATE(1573), - [sym__image_description] = STATE(2790), - [sym__image_description_non_empty] = STATE(2790), + [sym__image_inline_link] = STATE(1568), + [sym__image_description] = STATE(2771), + [sym__image_description_non_empty] = STATE(2771), [sym_hard_line_break] = STATE(460), - [sym__whitespace] = STATE(1572), - [sym__word] = STATE(1572), - [sym__soft_line_break] = STATE(1574), + [sym__whitespace] = STATE(1567), + [sym__word] = STATE(1567), + [sym__soft_line_break] = STATE(1569), [sym__text_base] = STATE(460), [aux_sym__inline_base_repeat1] = STATE(460), [sym__backslash_escape] = ACTIONS(3239), @@ -77609,7 +77608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(3248), [anon_sym_EQ] = ACTIONS(3248), [anon_sym_QMARK] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), [anon_sym_BSLASH] = ACTIONS(3254), [anon_sym_CARET] = ACTIONS(3245), [anon_sym_BQUOTE] = ACTIONS(3248), @@ -77635,10 +77634,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH_DASH] = ACTIONS(3287), [anon_sym_DOT_DOT_DOT] = ACTIONS(3287), [sym__code_span_start] = ACTIONS(3293), - [sym__emphasis_open_star] = ACTIONS(3098), - [sym__emphasis_open_underscore] = ACTIONS(3098), + [sym__emphasis_open_star] = ACTIONS(3100), + [sym__emphasis_open_underscore] = ACTIONS(3100), [sym__strikeout_open] = ACTIONS(3296), - [sym__strikeout_close] = ACTIONS(3098), + [sym__strikeout_close] = ACTIONS(3100), [sym__latex_span_start] = ACTIONS(3299), [sym__single_quote_open] = ACTIONS(3302), [sym__double_quote_open] = ACTIONS(3305), @@ -77651,8 +77650,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__shortcode_open_escaped] = ACTIONS(3326), [sym__shortcode_open] = ACTIONS(3329), [sym__unclosed_span] = ACTIONS(3242), - [sym__strong_emphasis_open_star] = ACTIONS(3098), - [sym__strong_emphasis_open_underscore] = ACTIONS(3098), + [sym__strong_emphasis_open_star] = ACTIONS(3100), + [sym__strong_emphasis_open_underscore] = ACTIONS(3100), }, [STATE(461)] = { [sym_backslash_escape] = STATE(461), @@ -77673,13 +77672,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(1393), - [sym__image_description] = STATE(2837), - [sym__image_description_non_empty] = STATE(2837), + [sym__image_inline_link] = STATE(1394), + [sym__image_description] = STATE(2833), + [sym__image_description_non_empty] = STATE(2833), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1390), - [sym__word] = STATE(1390), - [sym__soft_line_break] = STATE(1394), + [sym__whitespace] = STATE(1391), + [sym__word] = STATE(1391), + [sym__soft_line_break] = STATE(1395), [sym__text_base] = STATE(461), [aux_sym__inline_base_repeat1] = STATE(461), [sym__backslash_escape] = ACTIONS(3332), @@ -77703,7 +77702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(3341), [anon_sym_EQ] = ACTIONS(3341), [anon_sym_QMARK] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), [anon_sym_BSLASH] = ACTIONS(3347), [anon_sym_CARET] = ACTIONS(3338), [anon_sym_BQUOTE] = ACTIONS(3341), @@ -77714,7 +77713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(3341), [sym__newline_token] = ACTIONS(3353), [aux_sym_insert_token1] = ACTIONS(3356), - [aux_sym_insert_token2] = ACTIONS(3098), + [aux_sym_insert_token2] = ACTIONS(3100), [aux_sym_delete_token1] = ACTIONS(3359), [aux_sym_highlight_token1] = ACTIONS(3362), [aux_sym_edit_comment_token1] = ACTIONS(3365), @@ -77730,8 +77729,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH_DASH] = ACTIONS(3380), [anon_sym_DOT_DOT_DOT] = ACTIONS(3380), [sym__code_span_start] = ACTIONS(3386), - [sym__emphasis_open_star] = ACTIONS(3098), - [sym__emphasis_open_underscore] = ACTIONS(3098), + [sym__emphasis_open_star] = ACTIONS(3100), + [sym__emphasis_open_underscore] = ACTIONS(3100), [sym__strikeout_open] = ACTIONS(3389), [sym__latex_span_start] = ACTIONS(3392), [sym__single_quote_open] = ACTIONS(3395), @@ -77745,8 +77744,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__shortcode_open_escaped] = ACTIONS(3419), [sym__shortcode_open] = ACTIONS(3422), [sym__unclosed_span] = ACTIONS(3335), - [sym__strong_emphasis_open_star] = ACTIONS(3098), - [sym__strong_emphasis_open_underscore] = ACTIONS(3098), + [sym__strong_emphasis_open_star] = ACTIONS(3100), + [sym__strong_emphasis_open_underscore] = ACTIONS(3100), }, [STATE(462)] = { [sym_backslash_escape] = STATE(463), @@ -77767,77 +77766,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(463), [sym_note_reference] = STATE(463), [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__text_base] = STATE(463), [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(505), + [sym__backslash_escape] = ACTIONS(575), [sym_entity_reference] = ACTIONS(3425), [sym_numeric_character_reference] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_DQUOTE] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_DOLLAR] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_BSLASH] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_BQUOTE] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RPAREN] = ACTIONS(511), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(523), - [aux_sym_delete_token1] = ACTIONS(525), - [aux_sym_highlight_token1] = ACTIONS(527), - [aux_sym_edit_comment_token1] = ACTIONS(529), - [anon_sym_CARET_LBRACK] = ACTIONS(531), - [anon_sym_LBRACK_CARET] = ACTIONS(533), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(593), + [aux_sym_delete_token1] = ACTIONS(595), + [aux_sym_highlight_token1] = ACTIONS(597), + [aux_sym_edit_comment_token1] = ACTIONS(599), + [anon_sym_CARET_LBRACK] = ACTIONS(601), + [anon_sym_LBRACK_CARET] = ACTIONS(603), [sym_uri_autolink] = ACTIONS(3425), [sym_email_autolink] = ACTIONS(3425), - [sym__whitespace_ge_2] = ACTIONS(535), - [aux_sym__whitespace_token1] = ACTIONS(537), - [sym__word_no_digit] = ACTIONS(539), - [sym__digits] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [sym__code_span_start] = ACTIONS(543), + [sym__whitespace_ge_2] = ACTIONS(605), + [aux_sym__whitespace_token1] = ACTIONS(607), + [sym__word_no_digit] = ACTIONS(609), + [sym__digits] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym__code_span_start] = ACTIONS(613), [sym__emphasis_open_star] = ACTIONS(3037), [sym__emphasis_open_underscore] = ACTIONS(3037), - [sym__strikeout_open] = ACTIONS(549), - [sym__latex_span_start] = ACTIONS(551), - [sym__single_quote_open] = ACTIONS(553), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), [sym__single_quote_close] = ACTIONS(3037), - [sym__double_quote_open] = ACTIONS(557), - [sym__superscript_open] = ACTIONS(559), - [sym__subscript_open] = ACTIONS(561), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(565), - [sym__cite_author_in_text] = ACTIONS(567), - [sym__cite_suppress_author] = ACTIONS(569), - [sym__shortcode_open_escaped] = ACTIONS(571), - [sym__shortcode_open] = ACTIONS(573), + [sym__double_quote_open] = ACTIONS(627), + [sym__superscript_open] = ACTIONS(629), + [sym__subscript_open] = ACTIONS(631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(633), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(635), + [sym__cite_author_in_text] = ACTIONS(637), + [sym__cite_suppress_author] = ACTIONS(639), + [sym__shortcode_open_escaped] = ACTIONS(641), + [sym__shortcode_open] = ACTIONS(643), [sym__unclosed_span] = ACTIONS(3425), [sym__strong_emphasis_open_star] = ACTIONS(3037), [sym__strong_emphasis_open_underscore] = ACTIONS(3037), @@ -77861,13 +77860,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(463), [sym_note_reference] = STATE(463), [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(1659), - [sym__image_description] = STATE(2831), - [sym__image_description_non_empty] = STATE(2831), + [sym__image_inline_link] = STATE(1653), + [sym__image_description] = STATE(2822), + [sym__image_description_non_empty] = STATE(2822), [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(1658), - [sym__word] = STATE(1658), - [sym__soft_line_break] = STATE(1660), + [sym__whitespace] = STATE(1652), + [sym__word] = STATE(1652), + [sym__soft_line_break] = STATE(1654), [sym__text_base] = STATE(463), [aux_sym__inline_base_repeat1] = STATE(463), [sym__backslash_escape] = ACTIONS(3427), @@ -77891,7 +77890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(3436), [anon_sym_EQ] = ACTIONS(3436), [anon_sym_QMARK] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), [anon_sym_BSLASH] = ACTIONS(3442), [anon_sym_CARET] = ACTIONS(3433), [anon_sym_BQUOTE] = ACTIONS(3436), @@ -77917,12 +77916,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH_DASH] = ACTIONS(3475), [anon_sym_DOT_DOT_DOT] = ACTIONS(3475), [sym__code_span_start] = ACTIONS(3481), - [sym__emphasis_open_star] = ACTIONS(3098), - [sym__emphasis_open_underscore] = ACTIONS(3098), + [sym__emphasis_open_star] = ACTIONS(3100), + [sym__emphasis_open_underscore] = ACTIONS(3100), [sym__strikeout_open] = ACTIONS(3484), [sym__latex_span_start] = ACTIONS(3487), [sym__single_quote_open] = ACTIONS(3490), - [sym__single_quote_close] = ACTIONS(3098), + [sym__single_quote_close] = ACTIONS(3100), [sym__double_quote_open] = ACTIONS(3493), [sym__superscript_open] = ACTIONS(3496), [sym__subscript_open] = ACTIONS(3499), @@ -77933,8 +77932,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__shortcode_open_escaped] = ACTIONS(3514), [sym__shortcode_open] = ACTIONS(3517), [sym__unclosed_span] = ACTIONS(3430), - [sym__strong_emphasis_open_star] = ACTIONS(3098), - [sym__strong_emphasis_open_underscore] = ACTIONS(3098), + [sym__strong_emphasis_open_star] = ACTIONS(3100), + [sym__strong_emphasis_open_underscore] = ACTIONS(3100), }, [STATE(464)] = { [sym_backslash_escape] = STATE(464), @@ -77955,13 +77954,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(464), [sym_note_reference] = STATE(464), [sym_image] = STATE(464), - [sym__image_inline_link] = STATE(1285), - [sym__image_description] = STATE(2819), - [sym__image_description_non_empty] = STATE(2819), + [sym__image_inline_link] = STATE(1286), + [sym__image_description] = STATE(2815), + [sym__image_description_non_empty] = STATE(2815), [sym_hard_line_break] = STATE(464), - [sym__whitespace] = STATE(1284), - [sym__word] = STATE(1284), - [sym__soft_line_break] = STATE(1286), + [sym__whitespace] = STATE(1283), + [sym__word] = STATE(1283), + [sym__soft_line_break] = STATE(1287), [sym__text_base] = STATE(464), [aux_sym__inline_base_repeat1] = STATE(464), [sym__backslash_escape] = ACTIONS(3520), @@ -77985,9 +77984,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(3529), [anon_sym_EQ] = ACTIONS(3529), [anon_sym_QMARK] = ACTIONS(3529), - [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), [anon_sym_BSLASH] = ACTIONS(3535), - [anon_sym_RBRACK] = ACTIONS(3098), + [anon_sym_RBRACK] = ACTIONS(3100), [anon_sym_CARET] = ACTIONS(3526), [anon_sym_BQUOTE] = ACTIONS(3529), [anon_sym_LBRACE] = ACTIONS(3538), @@ -78012,8 +78011,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH_DASH] = ACTIONS(3568), [anon_sym_DOT_DOT_DOT] = ACTIONS(3568), [sym__code_span_start] = ACTIONS(3574), - [sym__emphasis_open_star] = ACTIONS(3098), - [sym__emphasis_open_underscore] = ACTIONS(3098), + [sym__emphasis_open_star] = ACTIONS(3100), + [sym__emphasis_open_underscore] = ACTIONS(3100), [sym__strikeout_open] = ACTIONS(3577), [sym__latex_span_start] = ACTIONS(3580), [sym__single_quote_open] = ACTIONS(3583), @@ -78027,291 +78026,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__shortcode_open_escaped] = ACTIONS(3607), [sym__shortcode_open] = ACTIONS(3610), [sym__unclosed_span] = ACTIONS(3523), - [sym__strong_emphasis_open_star] = ACTIONS(3098), - [sym__strong_emphasis_open_underscore] = ACTIONS(3098), + [sym__strong_emphasis_open_star] = ACTIONS(3100), + [sym__strong_emphasis_open_underscore] = ACTIONS(3100), }, [STATE(465)] = { - [sym_backslash_escape] = STATE(466), - [sym_commonmark_attribute] = STATE(466), - [sym_code_span] = STATE(466), - [sym_latex_span] = STATE(466), - [sym_insert] = STATE(466), - [sym_delete] = STATE(466), - [sym_highlight] = STATE(466), - [sym_edit_comment] = STATE(466), - [sym_superscript] = STATE(466), - [sym_subscript] = STATE(466), - [sym_strikeout] = STATE(466), - [sym_quoted_span] = STATE(466), - [sym_inline_note] = STATE(466), - [sym_citation] = STATE(466), - [sym_shortcode_escaped] = STATE(466), - [sym_shortcode] = STATE(466), - [sym_note_reference] = STATE(466), - [sym_image] = STATE(466), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(466), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), - [sym__text_base] = STATE(466), - [aux_sym__inline_base_repeat1] = STATE(466), - [sym__backslash_escape] = ACTIONS(579), + [sym_backslash_escape] = STATE(454), + [sym_commonmark_attribute] = STATE(454), + [sym_code_span] = STATE(454), + [sym_latex_span] = STATE(454), + [sym_insert] = STATE(454), + [sym_delete] = STATE(454), + [sym_highlight] = STATE(454), + [sym_edit_comment] = STATE(454), + [sym_superscript] = STATE(454), + [sym_subscript] = STATE(454), + [sym_strikeout] = STATE(454), + [sym_quoted_span] = STATE(454), + [sym_inline_note] = STATE(454), + [sym_citation] = STATE(454), + [sym_shortcode_escaped] = STATE(454), + [sym_shortcode] = STATE(454), + [sym_note_reference] = STATE(454), + [sym_image] = STATE(454), + [sym__image_inline_link] = STATE(1103), + [sym__image_description] = STATE(2772), + [sym__image_description_non_empty] = STATE(2772), + [sym_hard_line_break] = STATE(454), + [sym__whitespace] = STATE(1099), + [sym__word] = STATE(1099), + [sym__soft_line_break] = STATE(1104), + [sym__text_base] = STATE(454), + [aux_sym__inline_base_repeat1] = STATE(454), + [sym__backslash_escape] = ACTIONS(351), [sym_entity_reference] = ACTIONS(3613), [sym_numeric_character_reference] = ACTIONS(3613), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_AMP] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(357), [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(597), - [aux_sym_delete_token1] = ACTIONS(599), - [aux_sym_highlight_token1] = ACTIONS(601), - [aux_sym_edit_comment_token1] = ACTIONS(603), - [anon_sym_CARET_LBRACK] = ACTIONS(605), - [anon_sym_LBRACK_CARET] = ACTIONS(607), + [anon_sym_BSLASH] = ACTIONS(363), + [anon_sym_CARET] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(357), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(357), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(369), + [aux_sym_delete_token1] = ACTIONS(371), + [aux_sym_highlight_token1] = ACTIONS(373), + [aux_sym_edit_comment_token1] = ACTIONS(375), + [anon_sym_CARET_LBRACK] = ACTIONS(377), + [anon_sym_LBRACK_CARET] = ACTIONS(379), [sym_uri_autolink] = ACTIONS(3613), [sym_email_autolink] = ACTIONS(3613), - [sym__whitespace_ge_2] = ACTIONS(609), - [aux_sym__whitespace_token1] = ACTIONS(611), - [sym__word_no_digit] = ACTIONS(613), - [sym__digits] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_DASH_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [sym__code_span_start] = ACTIONS(617), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(385), + [sym__digits] = ACTIONS(385), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [sym__code_span_start] = ACTIONS(389), [sym__emphasis_open_star] = ACTIONS(3037), [sym__emphasis_open_underscore] = ACTIONS(3037), - [sym__strikeout_open] = ACTIONS(623), - [sym__latex_span_start] = ACTIONS(625), - [sym__single_quote_open] = ACTIONS(627), - [sym__double_quote_open] = ACTIONS(629), - [sym__double_quote_close] = ACTIONS(3037), - [sym__superscript_open] = ACTIONS(631), - [sym__subscript_open] = ACTIONS(633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(637), - [sym__cite_author_in_text] = ACTIONS(639), - [sym__cite_suppress_author] = ACTIONS(641), - [sym__shortcode_open_escaped] = ACTIONS(643), - [sym__shortcode_open] = ACTIONS(645), + [sym__emphasis_close_star] = ACTIONS(3037), + [sym__strikeout_open] = ACTIONS(397), + [sym__latex_span_start] = ACTIONS(399), + [sym__single_quote_open] = ACTIONS(401), + [sym__double_quote_open] = ACTIONS(403), + [sym__superscript_open] = ACTIONS(405), + [sym__subscript_open] = ACTIONS(407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(409), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(411), + [sym__cite_author_in_text] = ACTIONS(413), + [sym__cite_suppress_author] = ACTIONS(415), + [sym__shortcode_open_escaped] = ACTIONS(417), + [sym__shortcode_open] = ACTIONS(419), [sym__unclosed_span] = ACTIONS(3613), [sym__strong_emphasis_open_star] = ACTIONS(3037), [sym__strong_emphasis_open_underscore] = ACTIONS(3037), }, [STATE(466)] = { - [sym_backslash_escape] = STATE(466), - [sym_commonmark_attribute] = STATE(466), - [sym_code_span] = STATE(466), - [sym_latex_span] = STATE(466), - [sym_insert] = STATE(466), - [sym_delete] = STATE(466), - [sym_highlight] = STATE(466), - [sym_edit_comment] = STATE(466), - [sym_superscript] = STATE(466), - [sym_subscript] = STATE(466), - [sym_strikeout] = STATE(466), - [sym_quoted_span] = STATE(466), - [sym_inline_note] = STATE(466), - [sym_citation] = STATE(466), - [sym_shortcode_escaped] = STATE(466), - [sym_shortcode] = STATE(466), - [sym_note_reference] = STATE(466), - [sym_image] = STATE(466), - [sym__image_inline_link] = STATE(1737), - [sym__image_description] = STATE(2881), - [sym__image_description_non_empty] = STATE(2881), - [sym_hard_line_break] = STATE(466), - [sym__whitespace] = STATE(1736), - [sym__word] = STATE(1736), - [sym__soft_line_break] = STATE(1738), - [sym__text_base] = STATE(466), - [aux_sym__inline_base_repeat1] = STATE(466), - [sym__backslash_escape] = ACTIONS(3615), - [sym_entity_reference] = ACTIONS(3618), - [sym_numeric_character_reference] = ACTIONS(3618), - [anon_sym_LT] = ACTIONS(3621), - [anon_sym_GT] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_DQUOTE] = ACTIONS(3624), - [anon_sym_POUND] = ACTIONS(3624), - [anon_sym_DOLLAR] = ACTIONS(3624), - [anon_sym_PERCENT] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_PLUS] = ACTIONS(3624), - [anon_sym_COMMA] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_SLASH] = ACTIONS(3624), - [anon_sym_COLON] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym_EQ] = ACTIONS(3624), - [anon_sym_QMARK] = ACTIONS(3624), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_BSLASH] = ACTIONS(3630), - [anon_sym_CARET] = ACTIONS(3621), - [anon_sym_BQUOTE] = ACTIONS(3624), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_PIPE] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_RPAREN] = ACTIONS(3624), - [sym__newline_token] = ACTIONS(3636), - [aux_sym_insert_token1] = ACTIONS(3639), - [aux_sym_delete_token1] = ACTIONS(3642), - [aux_sym_highlight_token1] = ACTIONS(3645), - [aux_sym_edit_comment_token1] = ACTIONS(3648), - [anon_sym_CARET_LBRACK] = ACTIONS(3651), - [anon_sym_LBRACK_CARET] = ACTIONS(3654), - [sym_uri_autolink] = ACTIONS(3618), - [sym_email_autolink] = ACTIONS(3618), - [sym__whitespace_ge_2] = ACTIONS(3657), - [aux_sym__whitespace_token1] = ACTIONS(3660), - [sym__word_no_digit] = ACTIONS(3663), - [sym__digits] = ACTIONS(3663), - [anon_sym_DASH_DASH] = ACTIONS(3666), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3663), - [sym__code_span_start] = ACTIONS(3669), - [sym__emphasis_open_star] = ACTIONS(3098), - [sym__emphasis_open_underscore] = ACTIONS(3098), - [sym__strikeout_open] = ACTIONS(3672), - [sym__latex_span_start] = ACTIONS(3675), - [sym__single_quote_open] = ACTIONS(3678), - [sym__double_quote_open] = ACTIONS(3681), - [sym__double_quote_close] = ACTIONS(3098), - [sym__superscript_open] = ACTIONS(3684), - [sym__subscript_open] = ACTIONS(3687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3690), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3693), - [sym__cite_author_in_text] = ACTIONS(3696), - [sym__cite_suppress_author] = ACTIONS(3699), - [sym__shortcode_open_escaped] = ACTIONS(3702), - [sym__shortcode_open] = ACTIONS(3705), - [sym__unclosed_span] = ACTIONS(3618), - [sym__strong_emphasis_open_star] = ACTIONS(3098), - [sym__strong_emphasis_open_underscore] = ACTIONS(3098), - }, - [STATE(467)] = { - [sym_backslash_escape] = STATE(453), - [sym_commonmark_attribute] = STATE(453), - [sym_code_span] = STATE(453), - [sym_latex_span] = STATE(453), - [sym_insert] = STATE(453), - [sym_delete] = STATE(453), - [sym_highlight] = STATE(453), - [sym_edit_comment] = STATE(453), - [sym_superscript] = STATE(453), - [sym_subscript] = STATE(453), - [sym_strikeout] = STATE(453), - [sym_quoted_span] = STATE(453), - [sym_inline_note] = STATE(453), - [sym_citation] = STATE(453), - [sym_shortcode_escaped] = STATE(453), - [sym_shortcode] = STATE(453), - [sym_note_reference] = STATE(453), - [sym_image] = STATE(453), - [sym__image_inline_link] = STATE(1128), - [sym__image_description] = STATE(2826), - [sym__image_description_non_empty] = STATE(2826), - [sym_hard_line_break] = STATE(453), - [sym__whitespace] = STATE(1110), - [sym__word] = STATE(1110), - [sym__soft_line_break] = STATE(1130), - [sym__text_base] = STATE(453), - [aux_sym__inline_base_repeat1] = STATE(453), - [sym__backslash_escape] = ACTIONS(353), - [sym_entity_reference] = ACTIONS(3708), - [sym_numeric_character_reference] = ACTIONS(3708), - [anon_sym_LT] = ACTIONS(357), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_DOT] = ACTIONS(357), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_QMARK] = ACTIONS(359), + [sym_backslash_escape] = STATE(467), + [sym_commonmark_attribute] = STATE(467), + [sym_code_span] = STATE(467), + [sym_latex_span] = STATE(467), + [sym_insert] = STATE(467), + [sym_delete] = STATE(467), + [sym_highlight] = STATE(467), + [sym_edit_comment] = STATE(467), + [sym_superscript] = STATE(467), + [sym_subscript] = STATE(467), + [sym_strikeout] = STATE(467), + [sym_quoted_span] = STATE(467), + [sym_inline_note] = STATE(467), + [sym_citation] = STATE(467), + [sym_shortcode_escaped] = STATE(467), + [sym_shortcode] = STATE(467), + [sym_note_reference] = STATE(467), + [sym_image] = STATE(467), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(467), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), + [sym__text_base] = STATE(467), + [aux_sym__inline_base_repeat1] = STATE(467), + [sym__backslash_escape] = ACTIONS(649), + [sym_entity_reference] = ACTIONS(3615), + [sym_numeric_character_reference] = ACTIONS(3615), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PERCENT] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_BSLASH] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(357), - [anon_sym_BQUOTE] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(359), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(371), - [aux_sym_delete_token1] = ACTIONS(373), - [aux_sym_highlight_token1] = ACTIONS(375), - [aux_sym_edit_comment_token1] = ACTIONS(377), - [anon_sym_CARET_LBRACK] = ACTIONS(379), - [anon_sym_LBRACK_CARET] = ACTIONS(381), - [sym_uri_autolink] = ACTIONS(3708), - [sym_email_autolink] = ACTIONS(3708), - [sym__whitespace_ge_2] = ACTIONS(383), - [aux_sym__whitespace_token1] = ACTIONS(385), - [sym__word_no_digit] = ACTIONS(387), - [sym__digits] = ACTIONS(387), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_DASH_DASH_DASH] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [sym__code_span_start] = ACTIONS(391), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(667), + [aux_sym_delete_token1] = ACTIONS(669), + [aux_sym_highlight_token1] = ACTIONS(671), + [aux_sym_edit_comment_token1] = ACTIONS(673), + [anon_sym_CARET_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK_CARET] = ACTIONS(677), + [sym_uri_autolink] = ACTIONS(3615), + [sym_email_autolink] = ACTIONS(3615), + [sym__whitespace_ge_2] = ACTIONS(679), + [aux_sym__whitespace_token1] = ACTIONS(681), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(687), [sym__emphasis_open_star] = ACTIONS(3037), [sym__emphasis_open_underscore] = ACTIONS(3037), - [sym__emphasis_close_star] = ACTIONS(3037), - [sym__strikeout_open] = ACTIONS(399), - [sym__latex_span_start] = ACTIONS(401), - [sym__single_quote_open] = ACTIONS(403), - [sym__double_quote_open] = ACTIONS(405), - [sym__superscript_open] = ACTIONS(407), - [sym__subscript_open] = ACTIONS(409), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(411), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(413), - [sym__cite_author_in_text] = ACTIONS(415), - [sym__cite_suppress_author] = ACTIONS(417), - [sym__shortcode_open_escaped] = ACTIONS(419), - [sym__shortcode_open] = ACTIONS(421), - [sym__unclosed_span] = ACTIONS(3708), + [sym__strikeout_open] = ACTIONS(693), + [sym__latex_span_start] = ACTIONS(695), + [sym__single_quote_open] = ACTIONS(697), + [sym__double_quote_open] = ACTIONS(699), + [sym__double_quote_close] = ACTIONS(3037), + [sym__superscript_open] = ACTIONS(701), + [sym__subscript_open] = ACTIONS(703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(705), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(707), + [sym__cite_author_in_text] = ACTIONS(709), + [sym__cite_suppress_author] = ACTIONS(711), + [sym__shortcode_open_escaped] = ACTIONS(713), + [sym__shortcode_open] = ACTIONS(715), + [sym__unclosed_span] = ACTIONS(3615), [sym__strong_emphasis_open_star] = ACTIONS(3037), [sym__strong_emphasis_open_underscore] = ACTIONS(3037), }, + [STATE(467)] = { + [sym_backslash_escape] = STATE(467), + [sym_commonmark_attribute] = STATE(467), + [sym_code_span] = STATE(467), + [sym_latex_span] = STATE(467), + [sym_insert] = STATE(467), + [sym_delete] = STATE(467), + [sym_highlight] = STATE(467), + [sym_edit_comment] = STATE(467), + [sym_superscript] = STATE(467), + [sym_subscript] = STATE(467), + [sym_strikeout] = STATE(467), + [sym_quoted_span] = STATE(467), + [sym_inline_note] = STATE(467), + [sym_citation] = STATE(467), + [sym_shortcode_escaped] = STATE(467), + [sym_shortcode] = STATE(467), + [sym_note_reference] = STATE(467), + [sym_image] = STATE(467), + [sym__image_inline_link] = STATE(1732), + [sym__image_description] = STATE(2877), + [sym__image_description_non_empty] = STATE(2877), + [sym_hard_line_break] = STATE(467), + [sym__whitespace] = STATE(1730), + [sym__word] = STATE(1730), + [sym__soft_line_break] = STATE(1733), + [sym__text_base] = STATE(467), + [aux_sym__inline_base_repeat1] = STATE(467), + [sym__backslash_escape] = ACTIONS(3617), + [sym_entity_reference] = ACTIONS(3620), + [sym_numeric_character_reference] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(3623), + [anon_sym_GT] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3629), + [anon_sym_DQUOTE] = ACTIONS(3626), + [anon_sym_POUND] = ACTIONS(3626), + [anon_sym_DOLLAR] = ACTIONS(3626), + [anon_sym_PERCENT] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3623), + [anon_sym_SQUOTE] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3626), + [anon_sym_COMMA] = ACTIONS(3626), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_DOT] = ACTIONS(3623), + [anon_sym_SLASH] = ACTIONS(3626), + [anon_sym_COLON] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym_EQ] = ACTIONS(3626), + [anon_sym_QMARK] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_BSLASH] = ACTIONS(3632), + [anon_sym_CARET] = ACTIONS(3623), + [anon_sym_BQUOTE] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3635), + [anon_sym_PIPE] = ACTIONS(3626), + [anon_sym_TILDE] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3626), + [anon_sym_RPAREN] = ACTIONS(3626), + [sym__newline_token] = ACTIONS(3638), + [aux_sym_insert_token1] = ACTIONS(3641), + [aux_sym_delete_token1] = ACTIONS(3644), + [aux_sym_highlight_token1] = ACTIONS(3647), + [aux_sym_edit_comment_token1] = ACTIONS(3650), + [anon_sym_CARET_LBRACK] = ACTIONS(3653), + [anon_sym_LBRACK_CARET] = ACTIONS(3656), + [sym_uri_autolink] = ACTIONS(3620), + [sym_email_autolink] = ACTIONS(3620), + [sym__whitespace_ge_2] = ACTIONS(3659), + [aux_sym__whitespace_token1] = ACTIONS(3662), + [sym__word_no_digit] = ACTIONS(3665), + [sym__digits] = ACTIONS(3665), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3665), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3665), + [sym__code_span_start] = ACTIONS(3671), + [sym__emphasis_open_star] = ACTIONS(3100), + [sym__emphasis_open_underscore] = ACTIONS(3100), + [sym__strikeout_open] = ACTIONS(3674), + [sym__latex_span_start] = ACTIONS(3677), + [sym__single_quote_open] = ACTIONS(3680), + [sym__double_quote_open] = ACTIONS(3683), + [sym__double_quote_close] = ACTIONS(3100), + [sym__superscript_open] = ACTIONS(3686), + [sym__subscript_open] = ACTIONS(3689), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3692), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3695), + [sym__cite_author_in_text] = ACTIONS(3698), + [sym__cite_suppress_author] = ACTIONS(3701), + [sym__shortcode_open_escaped] = ACTIONS(3704), + [sym__shortcode_open] = ACTIONS(3707), + [sym__unclosed_span] = ACTIONS(3620), + [sym__strong_emphasis_open_star] = ACTIONS(3100), + [sym__strong_emphasis_open_underscore] = ACTIONS(3100), + }, [STATE(468)] = { [sym_backslash_escape] = STATE(468), [sym_commonmark_attribute] = STATE(468), @@ -78331,13 +78330,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(468), [sym_note_reference] = STATE(468), [sym_image] = STATE(468), - [sym__image_inline_link] = STATE(1185), - [sym__image_description] = STATE(2801), - [sym__image_description_non_empty] = STATE(2801), + [sym__image_inline_link] = STATE(1183), + [sym__image_description] = STATE(2797), + [sym__image_description_non_empty] = STATE(2797), [sym_hard_line_break] = STATE(468), - [sym__whitespace] = STATE(1183), - [sym__word] = STATE(1183), - [sym__soft_line_break] = STATE(1186), + [sym__whitespace] = STATE(1181), + [sym__word] = STATE(1181), + [sym__soft_line_break] = STATE(1184), [sym__text_base] = STATE(468), [aux_sym__inline_base_repeat1] = STATE(468), [sym__backslash_escape] = ACTIONS(3710), @@ -78361,7 +78360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(3719), [anon_sym_EQ] = ACTIONS(3719), [anon_sym_QMARK] = ACTIONS(3719), - [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), [anon_sym_BSLASH] = ACTIONS(3725), [anon_sym_CARET] = ACTIONS(3716), [anon_sym_BQUOTE] = ACTIONS(3719), @@ -78387,8 +78386,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH_DASH] = ACTIONS(3758), [anon_sym_DOT_DOT_DOT] = ACTIONS(3758), [sym__code_span_start] = ACTIONS(3764), - [sym__emphasis_open_star] = ACTIONS(3098), - [sym__emphasis_open_underscore] = ACTIONS(3098), + [sym__emphasis_open_star] = ACTIONS(3100), + [sym__emphasis_open_underscore] = ACTIONS(3100), [sym__strikeout_open] = ACTIONS(3767), [sym__latex_span_start] = ACTIONS(3770), [sym__single_quote_open] = ACTIONS(3773), @@ -78402,198 +78401,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__shortcode_open_escaped] = ACTIONS(3797), [sym__shortcode_open] = ACTIONS(3800), [sym__unclosed_span] = ACTIONS(3713), - [sym__strong_emphasis_open_star] = ACTIONS(3098), - [sym__strong_emphasis_open_underscore] = ACTIONS(3098), - [sym__strong_emphasis_close_underscore] = ACTIONS(3098), + [sym__strong_emphasis_open_star] = ACTIONS(3100), + [sym__strong_emphasis_open_underscore] = ACTIONS(3100), + [sym__strong_emphasis_close_underscore] = ACTIONS(3100), }, [STATE(469)] = { - [sym_backslash_escape] = STATE(470), - [sym_commonmark_attribute] = STATE(470), - [sym_code_span] = STATE(470), - [sym_latex_span] = STATE(470), - [sym_insert] = STATE(470), - [sym_delete] = STATE(470), - [sym_highlight] = STATE(470), - [sym_edit_comment] = STATE(470), - [sym_superscript] = STATE(470), - [sym_subscript] = STATE(470), - [sym_strikeout] = STATE(470), - [sym_quoted_span] = STATE(470), - [sym_inline_note] = STATE(470), - [sym_citation] = STATE(470), - [sym_shortcode_escaped] = STATE(470), - [sym_shortcode] = STATE(470), - [sym_note_reference] = STATE(470), - [sym_image] = STATE(470), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(470), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), - [sym__text_base] = STATE(470), - [aux_sym__inline_base_repeat1] = STATE(470), - [sym__backslash_escape] = ACTIONS(651), - [sym_entity_reference] = ACTIONS(3803), - [sym_numeric_character_reference] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_POUND] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(657), - [anon_sym_PERCENT] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(655), - [anon_sym_SQUOTE] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_QMARK] = ACTIONS(657), + [sym_backslash_escape] = STATE(469), + [sym_commonmark_attribute] = STATE(469), + [sym_code_span] = STATE(469), + [sym_latex_span] = STATE(469), + [sym_insert] = STATE(469), + [sym_delete] = STATE(469), + [sym_highlight] = STATE(469), + [sym_edit_comment] = STATE(469), + [sym_superscript] = STATE(469), + [sym_subscript] = STATE(469), + [sym_strikeout] = STATE(469), + [sym_quoted_span] = STATE(469), + [sym_inline_note] = STATE(469), + [sym_citation] = STATE(469), + [sym_shortcode_escaped] = STATE(469), + [sym_shortcode] = STATE(469), + [sym_note_reference] = STATE(469), + [sym_image] = STATE(469), + [sym__image_inline_link] = STATE(1581), + [sym__image_description] = STATE(2764), + [sym__image_description_non_empty] = STATE(2764), + [sym_hard_line_break] = STATE(469), + [sym__whitespace] = STATE(1353), + [sym__word] = STATE(1353), + [sym__soft_line_break] = STATE(1724), + [sym__text_base] = STATE(469), + [aux_sym__inline_base_repeat1] = STATE(469), + [ts_builtin_sym_end] = ACTIONS(3100), + [sym__backslash_escape] = ACTIONS(3803), + [sym_entity_reference] = ACTIONS(3806), + [sym_numeric_character_reference] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(3809), + [anon_sym_GT] = ACTIONS(3812), + [anon_sym_BANG] = ACTIONS(3815), + [anon_sym_DQUOTE] = ACTIONS(3812), + [anon_sym_POUND] = ACTIONS(3812), + [anon_sym_DOLLAR] = ACTIONS(3812), + [anon_sym_PERCENT] = ACTIONS(3812), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_SQUOTE] = ACTIONS(3812), + [anon_sym_PLUS] = ACTIONS(3812), + [anon_sym_COMMA] = ACTIONS(3812), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_DOT] = ACTIONS(3809), + [anon_sym_SLASH] = ACTIONS(3812), + [anon_sym_COLON] = ACTIONS(3812), + [anon_sym_SEMI] = ACTIONS(3812), + [anon_sym_EQ] = ACTIONS(3812), + [anon_sym_QMARK] = ACTIONS(3812), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_BSLASH] = ACTIONS(3818), + [anon_sym_CARET] = ACTIONS(3809), + [anon_sym_BQUOTE] = ACTIONS(3812), + [anon_sym_LBRACE] = ACTIONS(3821), + [anon_sym_PIPE] = ACTIONS(3812), + [anon_sym_TILDE] = ACTIONS(3812), + [anon_sym_LPAREN] = ACTIONS(3812), + [anon_sym_RPAREN] = ACTIONS(3812), + [sym__newline_token] = ACTIONS(3824), + [aux_sym_insert_token1] = ACTIONS(3827), + [aux_sym_delete_token1] = ACTIONS(3830), + [aux_sym_highlight_token1] = ACTIONS(3833), + [aux_sym_edit_comment_token1] = ACTIONS(3836), + [anon_sym_CARET_LBRACK] = ACTIONS(3839), + [anon_sym_LBRACK_CARET] = ACTIONS(3842), + [sym_uri_autolink] = ACTIONS(3806), + [sym_email_autolink] = ACTIONS(3806), + [sym__whitespace_ge_2] = ACTIONS(3845), + [aux_sym__whitespace_token1] = ACTIONS(3848), + [sym__word_no_digit] = ACTIONS(3851), + [sym__digits] = ACTIONS(3851), + [anon_sym_DASH_DASH] = ACTIONS(3854), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3851), + [sym__code_span_start] = ACTIONS(3857), + [sym__emphasis_open_star] = ACTIONS(3100), + [sym__emphasis_open_underscore] = ACTIONS(3100), + [sym__strikeout_open] = ACTIONS(3860), + [sym__latex_span_start] = ACTIONS(3863), + [sym__single_quote_open] = ACTIONS(3866), + [sym__double_quote_open] = ACTIONS(3869), + [sym__superscript_open] = ACTIONS(3872), + [sym__subscript_open] = ACTIONS(3875), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3878), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3881), + [sym__cite_author_in_text] = ACTIONS(3884), + [sym__cite_suppress_author] = ACTIONS(3887), + [sym__shortcode_open_escaped] = ACTIONS(3890), + [sym__shortcode_open] = ACTIONS(3893), + [sym__unclosed_span] = ACTIONS(3806), + [sym__strong_emphasis_open_star] = ACTIONS(3100), + [sym__strong_emphasis_open_underscore] = ACTIONS(3100), + }, + [STATE(470)] = { + [sym_backslash_escape] = STATE(471), + [sym_commonmark_attribute] = STATE(471), + [sym_code_span] = STATE(471), + [sym_latex_span] = STATE(471), + [sym_insert] = STATE(471), + [sym_delete] = STATE(471), + [sym_highlight] = STATE(471), + [sym_edit_comment] = STATE(471), + [sym_superscript] = STATE(471), + [sym_subscript] = STATE(471), + [sym_strikeout] = STATE(471), + [sym_quoted_span] = STATE(471), + [sym_inline_note] = STATE(471), + [sym_citation] = STATE(471), + [sym_shortcode_escaped] = STATE(471), + [sym_shortcode] = STATE(471), + [sym_note_reference] = STATE(471), + [sym_image] = STATE(471), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), + [sym_hard_line_break] = STATE(471), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), + [sym__text_base] = STATE(471), + [aux_sym__inline_base_repeat1] = STATE(471), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(3896), + [sym_numeric_character_reference] = ACTIONS(3896), + [anon_sym_LT] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(203), + [anon_sym_POUND] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(201), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(655), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_RPAREN] = ACTIONS(657), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(669), - [aux_sym_delete_token1] = ACTIONS(671), - [aux_sym_highlight_token1] = ACTIONS(673), - [aux_sym_edit_comment_token1] = ACTIONS(675), - [anon_sym_CARET_LBRACK] = ACTIONS(677), - [anon_sym_LBRACK_CARET] = ACTIONS(679), - [sym_uri_autolink] = ACTIONS(3803), - [sym_email_autolink] = ACTIONS(3803), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(689), + [anon_sym_BSLASH] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(201), + [anon_sym_BQUOTE] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_PIPE] = ACTIONS(203), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_LPAREN] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(215), + [aux_sym_delete_token1] = ACTIONS(217), + [aux_sym_highlight_token1] = ACTIONS(219), + [aux_sym_edit_comment_token1] = ACTIONS(221), + [anon_sym_CARET_LBRACK] = ACTIONS(223), + [anon_sym_LBRACK_CARET] = ACTIONS(225), + [sym_uri_autolink] = ACTIONS(3896), + [sym_email_autolink] = ACTIONS(3896), + [sym__whitespace_ge_2] = ACTIONS(227), + [aux_sym__whitespace_token1] = ACTIONS(229), + [sym__word_no_digit] = ACTIONS(231), + [sym__digits] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(231), + [sym__code_span_start] = ACTIONS(235), [sym__emphasis_open_star] = ACTIONS(3037), [sym__emphasis_open_underscore] = ACTIONS(3037), - [sym__strikeout_open] = ACTIONS(695), - [sym__latex_span_start] = ACTIONS(697), - [sym__single_quote_open] = ACTIONS(699), - [sym__double_quote_open] = ACTIONS(701), - [sym__superscript_open] = ACTIONS(703), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__double_quote_open] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(249), [sym__superscript_close] = ACTIONS(3037), - [sym__subscript_open] = ACTIONS(707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(709), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(711), - [sym__cite_author_in_text] = ACTIONS(713), - [sym__cite_suppress_author] = ACTIONS(715), - [sym__shortcode_open_escaped] = ACTIONS(717), - [sym__shortcode_open] = ACTIONS(719), - [sym__unclosed_span] = ACTIONS(3803), + [sym__subscript_open] = ACTIONS(253), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(257), + [sym__cite_author_in_text] = ACTIONS(259), + [sym__cite_suppress_author] = ACTIONS(261), + [sym__shortcode_open_escaped] = ACTIONS(263), + [sym__shortcode_open] = ACTIONS(265), + [sym__unclosed_span] = ACTIONS(3896), [sym__strong_emphasis_open_star] = ACTIONS(3037), [sym__strong_emphasis_open_underscore] = ACTIONS(3037), }, - [STATE(470)] = { - [sym_backslash_escape] = STATE(470), - [sym_commonmark_attribute] = STATE(470), - [sym_code_span] = STATE(470), - [sym_latex_span] = STATE(470), - [sym_insert] = STATE(470), - [sym_delete] = STATE(470), - [sym_highlight] = STATE(470), - [sym_edit_comment] = STATE(470), - [sym_superscript] = STATE(470), - [sym_subscript] = STATE(470), - [sym_strikeout] = STATE(470), - [sym_quoted_span] = STATE(470), - [sym_inline_note] = STATE(470), - [sym_citation] = STATE(470), - [sym_shortcode_escaped] = STATE(470), - [sym_shortcode] = STATE(470), - [sym_note_reference] = STATE(470), - [sym_image] = STATE(470), - [sym__image_inline_link] = STATE(926), - [sym__image_description] = STATE(2747), - [sym__image_description_non_empty] = STATE(2747), - [sym_hard_line_break] = STATE(470), - [sym__whitespace] = STATE(925), - [sym__word] = STATE(925), - [sym__soft_line_break] = STATE(927), - [sym__text_base] = STATE(470), - [aux_sym__inline_base_repeat1] = STATE(470), - [sym__backslash_escape] = ACTIONS(3805), - [sym_entity_reference] = ACTIONS(3808), - [sym_numeric_character_reference] = ACTIONS(3808), - [anon_sym_LT] = ACTIONS(3811), - [anon_sym_GT] = ACTIONS(3814), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_DQUOTE] = ACTIONS(3814), - [anon_sym_POUND] = ACTIONS(3814), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_PERCENT] = ACTIONS(3814), - [anon_sym_AMP] = ACTIONS(3811), - [anon_sym_SQUOTE] = ACTIONS(3814), - [anon_sym_PLUS] = ACTIONS(3814), - [anon_sym_COMMA] = ACTIONS(3814), - [anon_sym_DASH] = ACTIONS(3811), - [anon_sym_DOT] = ACTIONS(3811), - [anon_sym_SLASH] = ACTIONS(3814), - [anon_sym_COLON] = ACTIONS(3814), - [anon_sym_SEMI] = ACTIONS(3814), - [anon_sym_EQ] = ACTIONS(3814), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_BSLASH] = ACTIONS(3820), - [anon_sym_CARET] = ACTIONS(3811), - [anon_sym_BQUOTE] = ACTIONS(3814), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3814), - [anon_sym_TILDE] = ACTIONS(3814), - [anon_sym_LPAREN] = ACTIONS(3814), - [anon_sym_RPAREN] = ACTIONS(3814), - [sym__newline_token] = ACTIONS(3826), - [aux_sym_insert_token1] = ACTIONS(3829), - [aux_sym_delete_token1] = ACTIONS(3832), - [aux_sym_highlight_token1] = ACTIONS(3835), - [aux_sym_edit_comment_token1] = ACTIONS(3838), - [anon_sym_CARET_LBRACK] = ACTIONS(3841), - [anon_sym_LBRACK_CARET] = ACTIONS(3844), - [sym_uri_autolink] = ACTIONS(3808), - [sym_email_autolink] = ACTIONS(3808), - [sym__whitespace_ge_2] = ACTIONS(3847), - [aux_sym__whitespace_token1] = ACTIONS(3850), - [sym__word_no_digit] = ACTIONS(3853), - [sym__digits] = ACTIONS(3853), - [anon_sym_DASH_DASH] = ACTIONS(3856), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3853), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3853), - [sym__code_span_start] = ACTIONS(3859), - [sym__emphasis_open_star] = ACTIONS(3098), - [sym__emphasis_open_underscore] = ACTIONS(3098), - [sym__strikeout_open] = ACTIONS(3862), - [sym__latex_span_start] = ACTIONS(3865), - [sym__single_quote_open] = ACTIONS(3868), - [sym__double_quote_open] = ACTIONS(3871), - [sym__superscript_open] = ACTIONS(3874), - [sym__superscript_close] = ACTIONS(3098), - [sym__subscript_open] = ACTIONS(3877), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3880), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3883), - [sym__cite_author_in_text] = ACTIONS(3886), - [sym__cite_suppress_author] = ACTIONS(3889), - [sym__shortcode_open_escaped] = ACTIONS(3892), - [sym__shortcode_open] = ACTIONS(3895), - [sym__unclosed_span] = ACTIONS(3808), - [sym__strong_emphasis_open_star] = ACTIONS(3098), - [sym__strong_emphasis_open_underscore] = ACTIONS(3098), - }, [STATE(471)] = { [sym_backslash_escape] = STATE(471), [sym_commonmark_attribute] = STATE(471), @@ -78613,16 +78612,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(471), [sym_note_reference] = STATE(471), [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1528), - [sym__image_description] = STATE(2751), - [sym__image_description_non_empty] = STATE(2751), + [sym__image_inline_link] = STATE(922), + [sym__image_description] = STATE(2743), + [sym__image_description_non_empty] = STATE(2743), [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(896), - [sym__word] = STATE(896), - [sym__soft_line_break] = STATE(1586), + [sym__whitespace] = STATE(921), + [sym__word] = STATE(921), + [sym__soft_line_break] = STATE(923), [sym__text_base] = STATE(471), [aux_sym__inline_base_repeat1] = STATE(471), - [ts_builtin_sym_end] = ACTIONS(3098), [sym__backslash_escape] = ACTIONS(3898), [sym_entity_reference] = ACTIONS(3901), [sym_numeric_character_reference] = ACTIONS(3901), @@ -78644,7 +78642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(3907), [anon_sym_EQ] = ACTIONS(3907), [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), [anon_sym_BSLASH] = ACTIONS(3913), [anon_sym_CARET] = ACTIONS(3904), [anon_sym_BQUOTE] = ACTIONS(3907), @@ -78670,13 +78668,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH_DASH] = ACTIONS(3946), [anon_sym_DOT_DOT_DOT] = ACTIONS(3946), [sym__code_span_start] = ACTIONS(3952), - [sym__emphasis_open_star] = ACTIONS(3098), - [sym__emphasis_open_underscore] = ACTIONS(3098), + [sym__emphasis_open_star] = ACTIONS(3100), + [sym__emphasis_open_underscore] = ACTIONS(3100), [sym__strikeout_open] = ACTIONS(3955), [sym__latex_span_start] = ACTIONS(3958), [sym__single_quote_open] = ACTIONS(3961), [sym__double_quote_open] = ACTIONS(3964), [sym__superscript_open] = ACTIONS(3967), + [sym__superscript_close] = ACTIONS(3100), [sym__subscript_open] = ACTIONS(3970), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3973), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3976), @@ -78685,8 +78684,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__shortcode_open_escaped] = ACTIONS(3985), [sym__shortcode_open] = ACTIONS(3988), [sym__unclosed_span] = ACTIONS(3901), - [sym__strong_emphasis_open_star] = ACTIONS(3098), - [sym__strong_emphasis_open_underscore] = ACTIONS(3098), + [sym__strong_emphasis_open_star] = ACTIONS(3100), + [sym__strong_emphasis_open_underscore] = ACTIONS(3100), }, [STATE(472)] = { [sym_backslash_escape] = STATE(473), @@ -78707,77 +78706,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(473), [sym_note_reference] = STATE(473), [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__text_base] = STATE(473), [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(725), + [sym__backslash_escape] = ACTIONS(723), [sym_entity_reference] = ACTIONS(3991), [sym_numeric_character_reference] = ACTIONS(3991), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_COMMA] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(729), [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_BSLASH] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(743), - [aux_sym_delete_token1] = ACTIONS(745), - [aux_sym_highlight_token1] = ACTIONS(747), - [aux_sym_edit_comment_token1] = ACTIONS(749), - [anon_sym_CARET_LBRACK] = ACTIONS(751), - [anon_sym_LBRACK_CARET] = ACTIONS(753), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_TILDE] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(741), + [aux_sym_delete_token1] = ACTIONS(743), + [aux_sym_highlight_token1] = ACTIONS(745), + [aux_sym_edit_comment_token1] = ACTIONS(747), + [anon_sym_CARET_LBRACK] = ACTIONS(749), + [anon_sym_LBRACK_CARET] = ACTIONS(751), [sym_uri_autolink] = ACTIONS(3991), [sym_email_autolink] = ACTIONS(3991), - [sym__whitespace_ge_2] = ACTIONS(755), - [aux_sym__whitespace_token1] = ACTIONS(757), - [sym__word_no_digit] = ACTIONS(759), - [sym__digits] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(759), - [sym__code_span_start] = ACTIONS(763), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(757), + [sym__digits] = ACTIONS(757), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [sym__code_span_start] = ACTIONS(761), [sym__emphasis_open_star] = ACTIONS(3037), [sym__emphasis_open_underscore] = ACTIONS(3037), - [sym__strikeout_open] = ACTIONS(769), - [sym__latex_span_start] = ACTIONS(771), - [sym__single_quote_open] = ACTIONS(773), - [sym__double_quote_open] = ACTIONS(775), - [sym__superscript_open] = ACTIONS(777), - [sym__subscript_open] = ACTIONS(779), + [sym__strikeout_open] = ACTIONS(767), + [sym__latex_span_start] = ACTIONS(769), + [sym__single_quote_open] = ACTIONS(771), + [sym__double_quote_open] = ACTIONS(773), + [sym__superscript_open] = ACTIONS(775), + [sym__subscript_open] = ACTIONS(777), [sym__subscript_close] = ACTIONS(3037), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(783), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(785), - [sym__cite_author_in_text] = ACTIONS(787), - [sym__cite_suppress_author] = ACTIONS(789), - [sym__shortcode_open_escaped] = ACTIONS(791), - [sym__shortcode_open] = ACTIONS(793), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(783), + [sym__cite_author_in_text] = ACTIONS(785), + [sym__cite_suppress_author] = ACTIONS(787), + [sym__shortcode_open_escaped] = ACTIONS(789), + [sym__shortcode_open] = ACTIONS(791), [sym__unclosed_span] = ACTIONS(3991), [sym__strong_emphasis_open_star] = ACTIONS(3037), [sym__strong_emphasis_open_underscore] = ACTIONS(3037), @@ -78801,13 +78800,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(473), [sym_note_reference] = STATE(473), [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1006), - [sym__image_description] = STATE(2765), - [sym__image_description_non_empty] = STATE(2765), + [sym__image_inline_link] = STATE(1001), + [sym__image_description] = STATE(2761), + [sym__image_description_non_empty] = STATE(2761), [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1005), - [sym__word] = STATE(1005), - [sym__soft_line_break] = STATE(1007), + [sym__whitespace] = STATE(1000), + [sym__word] = STATE(1000), + [sym__soft_line_break] = STATE(1002), [sym__text_base] = STATE(473), [aux_sym__inline_base_repeat1] = STATE(473), [sym__backslash_escape] = ACTIONS(3993), @@ -78831,7 +78830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(4002), [anon_sym_EQ] = ACTIONS(4002), [anon_sym_QMARK] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), [anon_sym_BSLASH] = ACTIONS(4008), [anon_sym_CARET] = ACTIONS(3999), [anon_sym_BQUOTE] = ACTIONS(4002), @@ -78857,15 +78856,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH_DASH] = ACTIONS(4041), [anon_sym_DOT_DOT_DOT] = ACTIONS(4041), [sym__code_span_start] = ACTIONS(4047), - [sym__emphasis_open_star] = ACTIONS(3098), - [sym__emphasis_open_underscore] = ACTIONS(3098), + [sym__emphasis_open_star] = ACTIONS(3100), + [sym__emphasis_open_underscore] = ACTIONS(3100), [sym__strikeout_open] = ACTIONS(4050), [sym__latex_span_start] = ACTIONS(4053), [sym__single_quote_open] = ACTIONS(4056), [sym__double_quote_open] = ACTIONS(4059), [sym__superscript_open] = ACTIONS(4062), [sym__subscript_open] = ACTIONS(4065), - [sym__subscript_close] = ACTIONS(3098), + [sym__subscript_close] = ACTIONS(3100), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4068), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4071), [sym__cite_author_in_text] = ACTIONS(4074), @@ -78873,8 +78872,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__shortcode_open_escaped] = ACTIONS(4080), [sym__shortcode_open] = ACTIONS(4083), [sym__unclosed_span] = ACTIONS(3996), - [sym__strong_emphasis_open_star] = ACTIONS(3098), - [sym__strong_emphasis_open_underscore] = ACTIONS(3098), + [sym__strong_emphasis_open_star] = ACTIONS(3100), + [sym__strong_emphasis_open_underscore] = ACTIONS(3100), }, [STATE(474)] = { [sym_backslash_escape] = STATE(475), @@ -78895,76 +78894,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(475), [sym_note_reference] = STATE(475), [sym_image] = STATE(475), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(475), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__text_base] = STATE(475), [aux_sym__inline_base_repeat1] = STATE(475), - [sym__backslash_escape] = ACTIONS(799), + [sym__backslash_escape] = ACTIONS(797), [sym_entity_reference] = ACTIONS(4086), [sym_numeric_character_reference] = ACTIONS(4086), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_POUND] = ACTIONS(803), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_PERCENT] = ACTIONS(803), + [anon_sym_AMP] = ACTIONS(801), + [anon_sym_SQUOTE] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_COMMA] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(801), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(803), + [anon_sym_EQ] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_BSLASH] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(805), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(817), - [aux_sym_delete_token1] = ACTIONS(819), - [aux_sym_highlight_token1] = ACTIONS(821), - [aux_sym_edit_comment_token1] = ACTIONS(823), - [anon_sym_CARET_LBRACK] = ACTIONS(825), - [anon_sym_LBRACK_CARET] = ACTIONS(827), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_RPAREN] = ACTIONS(803), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(815), + [aux_sym_delete_token1] = ACTIONS(817), + [aux_sym_highlight_token1] = ACTIONS(819), + [aux_sym_edit_comment_token1] = ACTIONS(821), + [anon_sym_CARET_LBRACK] = ACTIONS(823), + [anon_sym_LBRACK_CARET] = ACTIONS(825), [sym_uri_autolink] = ACTIONS(4086), [sym_email_autolink] = ACTIONS(4086), - [sym__whitespace_ge_2] = ACTIONS(829), - [aux_sym__whitespace_token1] = ACTIONS(831), - [sym__word_no_digit] = ACTIONS(833), - [sym__digits] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [sym__code_span_start] = ACTIONS(837), + [sym__whitespace_ge_2] = ACTIONS(827), + [aux_sym__whitespace_token1] = ACTIONS(829), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH_DASH_DASH] = ACTIONS(831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(835), [sym__emphasis_open_star] = ACTIONS(3037), [sym__emphasis_open_underscore] = ACTIONS(3037), - [sym__strikeout_open] = ACTIONS(843), - [sym__latex_span_start] = ACTIONS(845), - [sym__single_quote_open] = ACTIONS(847), - [sym__double_quote_open] = ACTIONS(849), - [sym__superscript_open] = ACTIONS(851), - [sym__subscript_open] = ACTIONS(853), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(857), - [sym__cite_author_in_text] = ACTIONS(859), - [sym__cite_suppress_author] = ACTIONS(861), - [sym__shortcode_open_escaped] = ACTIONS(863), - [sym__shortcode_open] = ACTIONS(865), + [sym__strikeout_open] = ACTIONS(841), + [sym__latex_span_start] = ACTIONS(843), + [sym__single_quote_open] = ACTIONS(845), + [sym__double_quote_open] = ACTIONS(847), + [sym__superscript_open] = ACTIONS(849), + [sym__subscript_open] = ACTIONS(851), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(855), + [sym__cite_author_in_text] = ACTIONS(857), + [sym__cite_suppress_author] = ACTIONS(859), + [sym__shortcode_open_escaped] = ACTIONS(861), + [sym__shortcode_open] = ACTIONS(863), [sym__unclosed_span] = ACTIONS(4086), [sym__strong_emphasis_open_star] = ACTIONS(3037), [sym__strong_emphasis_close_star] = ACTIONS(3037), @@ -78989,13 +78988,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(475), [sym_note_reference] = STATE(475), [sym_image] = STATE(475), - [sym__image_inline_link] = STATE(1091), - [sym__image_description] = STATE(2745), - [sym__image_description_non_empty] = STATE(2745), + [sym__image_inline_link] = STATE(1088), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(475), - [sym__whitespace] = STATE(1089), - [sym__word] = STATE(1089), - [sym__soft_line_break] = STATE(1092), + [sym__whitespace] = STATE(1087), + [sym__word] = STATE(1087), + [sym__soft_line_break] = STATE(1089), [sym__text_base] = STATE(475), [aux_sym__inline_base_repeat1] = STATE(475), [sym__backslash_escape] = ACTIONS(4088), @@ -79019,7 +79018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(4097), [anon_sym_EQ] = ACTIONS(4097), [anon_sym_QMARK] = ACTIONS(4097), - [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), [anon_sym_BSLASH] = ACTIONS(4103), [anon_sym_CARET] = ACTIONS(4094), [anon_sym_BQUOTE] = ACTIONS(4097), @@ -79045,8 +79044,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH_DASH] = ACTIONS(4136), [anon_sym_DOT_DOT_DOT] = ACTIONS(4136), [sym__code_span_start] = ACTIONS(4142), - [sym__emphasis_open_star] = ACTIONS(3098), - [sym__emphasis_open_underscore] = ACTIONS(3098), + [sym__emphasis_open_star] = ACTIONS(3100), + [sym__emphasis_open_underscore] = ACTIONS(3100), [sym__strikeout_open] = ACTIONS(4145), [sym__latex_span_start] = ACTIONS(4148), [sym__single_quote_open] = ACTIONS(4151), @@ -79060,9 +79059,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__shortcode_open_escaped] = ACTIONS(4175), [sym__shortcode_open] = ACTIONS(4178), [sym__unclosed_span] = ACTIONS(4091), - [sym__strong_emphasis_open_star] = ACTIONS(3098), - [sym__strong_emphasis_close_star] = ACTIONS(3098), - [sym__strong_emphasis_open_underscore] = ACTIONS(3098), + [sym__strong_emphasis_open_star] = ACTIONS(3100), + [sym__strong_emphasis_close_star] = ACTIONS(3100), + [sym__strong_emphasis_open_underscore] = ACTIONS(3100), }, [STATE(476)] = { [sym__qmd_attribute] = STATE(1322), @@ -79136,10 +79135,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, [STATE(477)] = { - [sym__qmd_attribute] = STATE(1449), - [sym_raw_attribute] = STATE(1449), - [sym_commonmark_attribute] = STATE(1449), - [sym_language_attribute] = STATE(1449), + [sym__qmd_attribute] = STATE(1450), + [sym_raw_attribute] = STATE(1450), + [sym_commonmark_attribute] = STATE(1450), + [sym_language_attribute] = STATE(1450), [sym__backslash_escape] = ACTIONS(4187), [sym_entity_reference] = ACTIONS(4187), [sym_numeric_character_reference] = ACTIONS(4187), @@ -79207,10 +79206,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(478)] = { - [sym__qmd_attribute] = STATE(1450), - [sym_raw_attribute] = STATE(1450), - [sym_commonmark_attribute] = STATE(1450), - [sym_language_attribute] = STATE(1450), + [sym__qmd_attribute] = STATE(1451), + [sym_raw_attribute] = STATE(1451), + [sym_commonmark_attribute] = STATE(1451), + [sym_language_attribute] = STATE(1451), [sym__backslash_escape] = ACTIONS(4193), [sym_entity_reference] = ACTIONS(4193), [sym_numeric_character_reference] = ACTIONS(4193), @@ -79278,10 +79277,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(479)] = { - [sym__qmd_attribute] = STATE(1451), - [sym_raw_attribute] = STATE(1451), - [sym_commonmark_attribute] = STATE(1451), - [sym_language_attribute] = STATE(1451), + [sym__qmd_attribute] = STATE(1452), + [sym_raw_attribute] = STATE(1452), + [sym_commonmark_attribute] = STATE(1452), + [sym_language_attribute] = STATE(1452), [sym__backslash_escape] = ACTIONS(4197), [sym_entity_reference] = ACTIONS(4197), [sym_numeric_character_reference] = ACTIONS(4197), @@ -79349,10 +79348,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(480)] = { - [sym__qmd_attribute] = STATE(1457), - [sym_raw_attribute] = STATE(1457), - [sym_commonmark_attribute] = STATE(1457), - [sym_language_attribute] = STATE(1457), + [sym__qmd_attribute] = STATE(1458), + [sym_raw_attribute] = STATE(1458), + [sym_commonmark_attribute] = STATE(1458), + [sym_language_attribute] = STATE(1458), [sym__backslash_escape] = ACTIONS(4201), [sym_entity_reference] = ACTIONS(4201), [sym_numeric_character_reference] = ACTIONS(4201), @@ -79420,10 +79419,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(481)] = { - [sym__qmd_attribute] = STATE(1459), - [sym_raw_attribute] = STATE(1459), - [sym_commonmark_attribute] = STATE(1459), - [sym_language_attribute] = STATE(1459), + [sym__qmd_attribute] = STATE(1460), + [sym_raw_attribute] = STATE(1460), + [sym_commonmark_attribute] = STATE(1460), + [sym_language_attribute] = STATE(1460), [sym__backslash_escape] = ACTIONS(4205), [sym_entity_reference] = ACTIONS(4205), [sym_numeric_character_reference] = ACTIONS(4205), @@ -79491,10 +79490,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4205), }, [STATE(482)] = { - [sym__qmd_attribute] = STATE(1466), - [sym_raw_attribute] = STATE(1466), - [sym_commonmark_attribute] = STATE(1466), - [sym_language_attribute] = STATE(1466), + [sym__qmd_attribute] = STATE(1467), + [sym_raw_attribute] = STATE(1467), + [sym_commonmark_attribute] = STATE(1467), + [sym_language_attribute] = STATE(1467), [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), [sym_numeric_character_reference] = ACTIONS(4209), @@ -79562,10 +79561,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, [STATE(483)] = { - [sym__qmd_attribute] = STATE(1468), - [sym_raw_attribute] = STATE(1468), - [sym_commonmark_attribute] = STATE(1468), - [sym_language_attribute] = STATE(1468), + [sym__qmd_attribute] = STATE(1469), + [sym_raw_attribute] = STATE(1469), + [sym_commonmark_attribute] = STATE(1469), + [sym_language_attribute] = STATE(1469), [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), [sym_numeric_character_reference] = ACTIONS(4213), @@ -79633,10 +79632,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, [STATE(484)] = { - [sym__qmd_attribute] = STATE(1473), - [sym_raw_attribute] = STATE(1473), - [sym_commonmark_attribute] = STATE(1473), - [sym_language_attribute] = STATE(1473), + [sym__qmd_attribute] = STATE(1475), + [sym_raw_attribute] = STATE(1475), + [sym_commonmark_attribute] = STATE(1475), + [sym_language_attribute] = STATE(1475), [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -79704,10 +79703,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, [STATE(485)] = { - [sym__qmd_attribute] = STATE(1475), - [sym_raw_attribute] = STATE(1475), - [sym_commonmark_attribute] = STATE(1475), - [sym_language_attribute] = STATE(1475), + [sym__qmd_attribute] = STATE(1477), + [sym_raw_attribute] = STATE(1477), + [sym_commonmark_attribute] = STATE(1477), + [sym_language_attribute] = STATE(1477), [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -79775,10 +79774,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, [STATE(486)] = { - [sym__qmd_attribute] = STATE(1479), - [sym_raw_attribute] = STATE(1479), - [sym_commonmark_attribute] = STATE(1479), - [sym_language_attribute] = STATE(1479), + [sym__qmd_attribute] = STATE(1481), + [sym_raw_attribute] = STATE(1481), + [sym_commonmark_attribute] = STATE(1481), + [sym_language_attribute] = STATE(1481), [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -79846,10 +79845,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, [STATE(487)] = { - [sym__qmd_attribute] = STATE(1481), - [sym_raw_attribute] = STATE(1481), - [sym_commonmark_attribute] = STATE(1481), - [sym_language_attribute] = STATE(1481), + [sym__qmd_attribute] = STATE(1482), + [sym_raw_attribute] = STATE(1482), + [sym_commonmark_attribute] = STATE(1482), + [sym_language_attribute] = STATE(1482), [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -79917,10 +79916,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, [STATE(488)] = { - [sym__qmd_attribute] = STATE(1483), - [sym_raw_attribute] = STATE(1483), - [sym_commonmark_attribute] = STATE(1483), - [sym_language_attribute] = STATE(1483), + [sym__qmd_attribute] = STATE(1484), + [sym_raw_attribute] = STATE(1484), + [sym_commonmark_attribute] = STATE(1484), + [sym_language_attribute] = STATE(1484), [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -79988,10 +79987,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, [STATE(489)] = { - [sym__qmd_attribute] = STATE(1485), - [sym_raw_attribute] = STATE(1485), - [sym_commonmark_attribute] = STATE(1485), - [sym_language_attribute] = STATE(1485), + [sym__qmd_attribute] = STATE(1486), + [sym_raw_attribute] = STATE(1486), + [sym_commonmark_attribute] = STATE(1486), + [sym_language_attribute] = STATE(1486), [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -80059,10 +80058,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, [STATE(490)] = { - [sym__qmd_attribute] = STATE(1487), - [sym_raw_attribute] = STATE(1487), - [sym_commonmark_attribute] = STATE(1487), - [sym_language_attribute] = STATE(1487), + [sym__qmd_attribute] = STATE(1488), + [sym_raw_attribute] = STATE(1488), + [sym_commonmark_attribute] = STATE(1488), + [sym_language_attribute] = STATE(1488), [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -80130,10 +80129,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, [STATE(491)] = { - [sym__qmd_attribute] = STATE(1488), - [sym_raw_attribute] = STATE(1488), - [sym_commonmark_attribute] = STATE(1488), - [sym_language_attribute] = STATE(1488), + [sym__qmd_attribute] = STATE(1489), + [sym_raw_attribute] = STATE(1489), + [sym_commonmark_attribute] = STATE(1489), + [sym_language_attribute] = STATE(1489), [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -80201,81 +80200,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, [STATE(492)] = { - [sym__qmd_attribute] = STATE(1591), - [sym_raw_attribute] = STATE(1591), - [sym_commonmark_attribute] = STATE(1591), - [sym_language_attribute] = STATE(1591), - [ts_builtin_sym_end] = ACTIONS(4249), - [sym__backslash_escape] = ACTIONS(4249), - [sym_entity_reference] = ACTIONS(4249), - [sym_numeric_character_reference] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(4251), - [anon_sym_GT] = ACTIONS(4249), - [anon_sym_BANG] = ACTIONS(4249), - [anon_sym_DQUOTE] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(4249), - [anon_sym_PERCENT] = ACTIONS(4249), - [anon_sym_AMP] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4249), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_COMMA] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4251), - [anon_sym_DOT] = ACTIONS(4251), - [anon_sym_SLASH] = ACTIONS(4249), - [anon_sym_COLON] = ACTIONS(4249), - [anon_sym_SEMI] = ACTIONS(4249), - [anon_sym_EQ] = ACTIONS(4249), - [anon_sym_QMARK] = ACTIONS(4249), - [anon_sym_LBRACK] = ACTIONS(4251), - [anon_sym_BSLASH] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4251), - [anon_sym_BQUOTE] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4253), - [anon_sym_PIPE] = ACTIONS(4249), - [anon_sym_TILDE] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4249), - [anon_sym_RPAREN] = ACTIONS(4249), - [sym__newline_token] = ACTIONS(4249), - [aux_sym_insert_token1] = ACTIONS(4249), - [aux_sym_delete_token1] = ACTIONS(4249), - [aux_sym_highlight_token1] = ACTIONS(4249), - [aux_sym_edit_comment_token1] = ACTIONS(4249), - [anon_sym_CARET_LBRACK] = ACTIONS(4249), - [anon_sym_LBRACK_CARET] = ACTIONS(4249), - [sym_uri_autolink] = ACTIONS(4249), - [sym_email_autolink] = ACTIONS(4249), - [sym__whitespace_ge_2] = ACTIONS(4249), - [aux_sym__whitespace_token1] = ACTIONS(4251), - [sym__word_no_digit] = ACTIONS(4249), - [sym__digits] = ACTIONS(4249), - [anon_sym_DASH_DASH] = ACTIONS(4251), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4249), - [sym__code_span_start] = ACTIONS(4249), - [sym__emphasis_open_star] = ACTIONS(4249), - [sym__emphasis_open_underscore] = ACTIONS(4249), - [sym__strikeout_open] = ACTIONS(4249), - [sym__latex_span_start] = ACTIONS(4249), - [sym__single_quote_open] = ACTIONS(4249), - [sym__double_quote_open] = ACTIONS(4249), - [sym__superscript_open] = ACTIONS(4249), - [sym__subscript_open] = ACTIONS(4249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4249), - [sym__cite_author_in_text] = ACTIONS(4249), - [sym__cite_suppress_author] = ACTIONS(4249), - [sym__shortcode_open_escaped] = ACTIONS(4249), - [sym__shortcode_open] = ACTIONS(4249), - [sym__unclosed_span] = ACTIONS(4249), - [sym__strong_emphasis_open_star] = ACTIONS(4249), - [sym__strong_emphasis_open_underscore] = ACTIONS(4249), - }, - [STATE(493)] = { - [sym__qmd_attribute] = STATE(1240), - [sym_raw_attribute] = STATE(1240), - [sym_commonmark_attribute] = STATE(1240), - [sym_language_attribute] = STATE(1240), + [sym__qmd_attribute] = STATE(1241), + [sym_raw_attribute] = STATE(1241), + [sym_commonmark_attribute] = STATE(1241), + [sym_language_attribute] = STATE(1241), [sym__backslash_escape] = ACTIONS(4193), [sym_entity_reference] = ACTIONS(4193), [sym_numeric_character_reference] = ACTIONS(4193), @@ -80301,7 +80229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4195), [anon_sym_CARET] = ACTIONS(4195), [anon_sym_BQUOTE] = ACTIONS(4193), - [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4249), [anon_sym_PIPE] = ACTIONS(4193), [anon_sym_TILDE] = ACTIONS(4193), [anon_sym_LPAREN] = ACTIONS(4193), @@ -80342,153 +80270,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4193), [sym__strong_emphasis_close_underscore] = ACTIONS(4193), }, + [STATE(493)] = { + [sym__qmd_attribute] = STATE(1234), + [sym_raw_attribute] = STATE(1234), + [sym_commonmark_attribute] = STATE(1234), + [sym_language_attribute] = STATE(1234), + [ts_builtin_sym_end] = ACTIONS(4251), + [sym__backslash_escape] = ACTIONS(4251), + [sym_entity_reference] = ACTIONS(4251), + [sym_numeric_character_reference] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_DQUOTE] = ACTIONS(4251), + [anon_sym_POUND] = ACTIONS(4251), + [anon_sym_DOLLAR] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_COMMA] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_COLON] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4251), + [anon_sym_QMARK] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_BSLASH] = ACTIONS(4253), + [anon_sym_CARET] = ACTIONS(4253), + [anon_sym_BQUOTE] = ACTIONS(4251), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4251), + [sym__newline_token] = ACTIONS(4251), + [aux_sym_insert_token1] = ACTIONS(4251), + [aux_sym_delete_token1] = ACTIONS(4251), + [aux_sym_highlight_token1] = ACTIONS(4251), + [aux_sym_edit_comment_token1] = ACTIONS(4251), + [anon_sym_CARET_LBRACK] = ACTIONS(4251), + [anon_sym_LBRACK_CARET] = ACTIONS(4251), + [sym_uri_autolink] = ACTIONS(4251), + [sym_email_autolink] = ACTIONS(4251), + [sym__whitespace_ge_2] = ACTIONS(4251), + [aux_sym__whitespace_token1] = ACTIONS(4253), + [sym__word_no_digit] = ACTIONS(4251), + [sym__digits] = ACTIONS(4251), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4251), + [sym__code_span_start] = ACTIONS(4251), + [sym__emphasis_open_star] = ACTIONS(4251), + [sym__emphasis_open_underscore] = ACTIONS(4251), + [sym__strikeout_open] = ACTIONS(4251), + [sym__latex_span_start] = ACTIONS(4251), + [sym__single_quote_open] = ACTIONS(4251), + [sym__double_quote_open] = ACTIONS(4251), + [sym__superscript_open] = ACTIONS(4251), + [sym__subscript_open] = ACTIONS(4251), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4251), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4251), + [sym__cite_author_in_text] = ACTIONS(4251), + [sym__cite_suppress_author] = ACTIONS(4251), + [sym__shortcode_open_escaped] = ACTIONS(4251), + [sym__shortcode_open] = ACTIONS(4251), + [sym__unclosed_span] = ACTIONS(4251), + [sym__strong_emphasis_open_star] = ACTIONS(4251), + [sym__strong_emphasis_open_underscore] = ACTIONS(4251), + }, [STATE(494)] = { - [sym__qmd_attribute] = STATE(1500), - [sym_raw_attribute] = STATE(1500), - [sym_commonmark_attribute] = STATE(1500), - [sym_language_attribute] = STATE(1500), - [ts_builtin_sym_end] = ACTIONS(4181), - [sym__backslash_escape] = ACTIONS(4181), - [sym_entity_reference] = ACTIONS(4181), - [sym_numeric_character_reference] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4181), - [anon_sym_POUND] = ACTIONS(4181), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_AMP] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_COLON] = ACTIONS(4181), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_QMARK] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_BSLASH] = ACTIONS(4183), - [anon_sym_CARET] = ACTIONS(4183), - [anon_sym_BQUOTE] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4253), - [anon_sym_PIPE] = ACTIONS(4181), - [anon_sym_TILDE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_RPAREN] = ACTIONS(4181), - [sym__newline_token] = ACTIONS(4181), - [aux_sym_insert_token1] = ACTIONS(4181), - [aux_sym_delete_token1] = ACTIONS(4181), - [aux_sym_highlight_token1] = ACTIONS(4181), - [aux_sym_edit_comment_token1] = ACTIONS(4181), - [anon_sym_CARET_LBRACK] = ACTIONS(4181), - [anon_sym_LBRACK_CARET] = ACTIONS(4181), - [sym_uri_autolink] = ACTIONS(4181), - [sym_email_autolink] = ACTIONS(4181), - [sym__whitespace_ge_2] = ACTIONS(4181), - [aux_sym__whitespace_token1] = ACTIONS(4183), - [sym__word_no_digit] = ACTIONS(4181), - [sym__digits] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4183), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4181), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4181), - [sym__code_span_start] = ACTIONS(4181), - [sym__emphasis_open_star] = ACTIONS(4181), - [sym__emphasis_open_underscore] = ACTIONS(4181), - [sym__strikeout_open] = ACTIONS(4181), - [sym__latex_span_start] = ACTIONS(4181), - [sym__single_quote_open] = ACTIONS(4181), - [sym__double_quote_open] = ACTIONS(4181), - [sym__superscript_open] = ACTIONS(4181), - [sym__subscript_open] = ACTIONS(4181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4181), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4181), - [sym__cite_author_in_text] = ACTIONS(4181), - [sym__cite_suppress_author] = ACTIONS(4181), - [sym__shortcode_open_escaped] = ACTIONS(4181), - [sym__shortcode_open] = ACTIONS(4181), - [sym__unclosed_span] = ACTIONS(4181), - [sym__strong_emphasis_open_star] = ACTIONS(4181), - [sym__strong_emphasis_open_underscore] = ACTIONS(4181), + [sym__qmd_attribute] = STATE(1522), + [sym_raw_attribute] = STATE(1522), + [sym_commonmark_attribute] = STATE(1522), + [sym_language_attribute] = STATE(1522), + [ts_builtin_sym_end] = ACTIONS(4259), + [sym__backslash_escape] = ACTIONS(4259), + [sym_entity_reference] = ACTIONS(4259), + [sym_numeric_character_reference] = ACTIONS(4259), + [anon_sym_LT] = ACTIONS(4261), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + [anon_sym_SQUOTE] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_COMMA] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_DOT] = ACTIONS(4261), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_QMARK] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_BSLASH] = ACTIONS(4261), + [anon_sym_CARET] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym_RPAREN] = ACTIONS(4259), + [sym__newline_token] = ACTIONS(4259), + [aux_sym_insert_token1] = ACTIONS(4259), + [aux_sym_delete_token1] = ACTIONS(4259), + [aux_sym_highlight_token1] = ACTIONS(4259), + [aux_sym_edit_comment_token1] = ACTIONS(4259), + [anon_sym_CARET_LBRACK] = ACTIONS(4259), + [anon_sym_LBRACK_CARET] = ACTIONS(4259), + [sym_uri_autolink] = ACTIONS(4259), + [sym_email_autolink] = ACTIONS(4259), + [sym__whitespace_ge_2] = ACTIONS(4259), + [aux_sym__whitespace_token1] = ACTIONS(4261), + [sym__word_no_digit] = ACTIONS(4259), + [sym__digits] = ACTIONS(4259), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4259), + [sym__code_span_start] = ACTIONS(4259), + [sym__emphasis_open_star] = ACTIONS(4259), + [sym__emphasis_open_underscore] = ACTIONS(4259), + [sym__strikeout_open] = ACTIONS(4259), + [sym__latex_span_start] = ACTIONS(4259), + [sym__single_quote_open] = ACTIONS(4259), + [sym__double_quote_open] = ACTIONS(4259), + [sym__superscript_open] = ACTIONS(4259), + [sym__subscript_open] = ACTIONS(4259), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4259), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4259), + [sym__cite_author_in_text] = ACTIONS(4259), + [sym__cite_suppress_author] = ACTIONS(4259), + [sym__shortcode_open_escaped] = ACTIONS(4259), + [sym__shortcode_open] = ACTIONS(4259), + [sym__unclosed_span] = ACTIONS(4259), + [sym__strong_emphasis_open_star] = ACTIONS(4259), + [sym__strong_emphasis_open_underscore] = ACTIONS(4259), }, [STATE(495)] = { - [sym__qmd_attribute] = STATE(1265), - [sym_raw_attribute] = STATE(1265), - [sym_commonmark_attribute] = STATE(1265), - [sym_language_attribute] = STATE(1265), - [ts_builtin_sym_end] = ACTIONS(4257), - [sym__backslash_escape] = ACTIONS(4257), - [sym_entity_reference] = ACTIONS(4257), - [sym_numeric_character_reference] = ACTIONS(4257), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4257), - [anon_sym_BANG] = ACTIONS(4257), - [anon_sym_DQUOTE] = ACTIONS(4257), - [anon_sym_POUND] = ACTIONS(4257), - [anon_sym_DOLLAR] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4257), - [anon_sym_AMP] = ACTIONS(4259), - [anon_sym_SQUOTE] = ACTIONS(4257), - [anon_sym_PLUS] = ACTIONS(4257), - [anon_sym_COMMA] = ACTIONS(4257), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_DOT] = ACTIONS(4259), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_COLON] = ACTIONS(4257), - [anon_sym_SEMI] = ACTIONS(4257), - [anon_sym_EQ] = ACTIONS(4257), - [anon_sym_QMARK] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_BSLASH] = ACTIONS(4259), - [anon_sym_CARET] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4257), - [anon_sym_LBRACE] = ACTIONS(4253), - [anon_sym_PIPE] = ACTIONS(4257), - [anon_sym_TILDE] = ACTIONS(4257), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_RPAREN] = ACTIONS(4257), - [sym__newline_token] = ACTIONS(4257), - [aux_sym_insert_token1] = ACTIONS(4257), - [aux_sym_delete_token1] = ACTIONS(4257), - [aux_sym_highlight_token1] = ACTIONS(4257), - [aux_sym_edit_comment_token1] = ACTIONS(4257), - [anon_sym_CARET_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_CARET] = ACTIONS(4257), - [sym_uri_autolink] = ACTIONS(4257), - [sym_email_autolink] = ACTIONS(4257), - [sym__whitespace_ge_2] = ACTIONS(4257), - [aux_sym__whitespace_token1] = ACTIONS(4259), - [sym__word_no_digit] = ACTIONS(4257), - [sym__digits] = ACTIONS(4257), - [anon_sym_DASH_DASH] = ACTIONS(4259), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4257), - [sym__code_span_start] = ACTIONS(4257), - [sym__emphasis_open_star] = ACTIONS(4257), - [sym__emphasis_open_underscore] = ACTIONS(4257), - [sym__strikeout_open] = ACTIONS(4257), - [sym__latex_span_start] = ACTIONS(4257), - [sym__single_quote_open] = ACTIONS(4257), - [sym__double_quote_open] = ACTIONS(4257), - [sym__superscript_open] = ACTIONS(4257), - [sym__subscript_open] = ACTIONS(4257), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4257), - [sym__cite_author_in_text] = ACTIONS(4257), - [sym__cite_suppress_author] = ACTIONS(4257), - [sym__shortcode_open_escaped] = ACTIONS(4257), - [sym__shortcode_open] = ACTIONS(4257), - [sym__unclosed_span] = ACTIONS(4257), - [sym__strong_emphasis_open_star] = ACTIONS(4257), - [sym__strong_emphasis_open_underscore] = ACTIONS(4257), - }, - [STATE(496)] = { - [sym__qmd_attribute] = STATE(1527), - [sym_raw_attribute] = STATE(1527), - [sym_commonmark_attribute] = STATE(1527), - [sym_language_attribute] = STATE(1527), + [sym__qmd_attribute] = STATE(1249), + [sym_raw_attribute] = STATE(1249), + [sym_commonmark_attribute] = STATE(1249), + [sym_language_attribute] = STATE(1249), [ts_builtin_sym_end] = ACTIONS(4263), [sym__backslash_escape] = ACTIONS(4263), [sym_entity_reference] = ACTIONS(4263), @@ -80515,7 +80443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4265), [anon_sym_CARET] = ACTIONS(4265), [anon_sym_BQUOTE] = ACTIONS(4263), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4263), [anon_sym_TILDE] = ACTIONS(4263), [anon_sym_LPAREN] = ACTIONS(4263), @@ -80555,11 +80483,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4263), [sym__strong_emphasis_open_underscore] = ACTIONS(4263), }, - [STATE(497)] = { - [sym__qmd_attribute] = STATE(1271), - [sym_raw_attribute] = STATE(1271), - [sym_commonmark_attribute] = STATE(1271), - [sym_language_attribute] = STATE(1271), + [STATE(496)] = { + [sym__qmd_attribute] = STATE(1533), + [sym_raw_attribute] = STATE(1533), + [sym_commonmark_attribute] = STATE(1533), + [sym_language_attribute] = STATE(1533), [ts_builtin_sym_end] = ACTIONS(4267), [sym__backslash_escape] = ACTIONS(4267), [sym_entity_reference] = ACTIONS(4267), @@ -80586,7 +80514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4269), [anon_sym_CARET] = ACTIONS(4269), [anon_sym_BQUOTE] = ACTIONS(4267), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4267), [anon_sym_TILDE] = ACTIONS(4267), [anon_sym_LPAREN] = ACTIONS(4267), @@ -80626,11 +80554,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4267), [sym__strong_emphasis_open_underscore] = ACTIONS(4267), }, - [STATE(498)] = { - [sym__qmd_attribute] = STATE(1538), - [sym_raw_attribute] = STATE(1538), - [sym_commonmark_attribute] = STATE(1538), - [sym_language_attribute] = STATE(1538), + [STATE(497)] = { + [sym__qmd_attribute] = STATE(1641), + [sym_raw_attribute] = STATE(1641), + [sym_commonmark_attribute] = STATE(1641), + [sym_language_attribute] = STATE(1641), [ts_builtin_sym_end] = ACTIONS(4271), [sym__backslash_escape] = ACTIONS(4271), [sym_entity_reference] = ACTIONS(4271), @@ -80657,7 +80585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4273), [anon_sym_CARET] = ACTIONS(4273), [anon_sym_BQUOTE] = ACTIONS(4271), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4271), [anon_sym_TILDE] = ACTIONS(4271), [anon_sym_LPAREN] = ACTIONS(4271), @@ -80697,82 +80625,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4271), [sym__strong_emphasis_open_underscore] = ACTIONS(4271), }, - [STATE(499)] = { - [sym__qmd_attribute] = STATE(1647), - [sym_raw_attribute] = STATE(1647), - [sym_commonmark_attribute] = STATE(1647), - [sym_language_attribute] = STATE(1647), - [ts_builtin_sym_end] = ACTIONS(4275), - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4253), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - }, - [STATE(500)] = { - [sym__qmd_attribute] = STATE(1649), - [sym_raw_attribute] = STATE(1649), - [sym_commonmark_attribute] = STATE(1649), - [sym_language_attribute] = STATE(1649), + [STATE(498)] = { + [sym__qmd_attribute] = STATE(1643), + [sym_raw_attribute] = STATE(1643), + [sym_commonmark_attribute] = STATE(1643), + [sym_language_attribute] = STATE(1643), [ts_builtin_sym_end] = ACTIONS(4187), [sym__backslash_escape] = ACTIONS(4187), [sym_entity_reference] = ACTIONS(4187), @@ -80799,7 +80656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4189), [anon_sym_CARET] = ACTIONS(4189), [anon_sym_BQUOTE] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4187), [anon_sym_TILDE] = ACTIONS(4187), [anon_sym_LPAREN] = ACTIONS(4187), @@ -80839,11 +80696,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4187), [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, - [STATE(501)] = { - [sym__qmd_attribute] = STATE(1652), - [sym_raw_attribute] = STATE(1652), - [sym_commonmark_attribute] = STATE(1652), - [sym_language_attribute] = STATE(1652), + [STATE(499)] = { + [sym__qmd_attribute] = STATE(1646), + [sym_raw_attribute] = STATE(1646), + [sym_commonmark_attribute] = STATE(1646), + [sym_language_attribute] = STATE(1646), [ts_builtin_sym_end] = ACTIONS(4193), [sym__backslash_escape] = ACTIONS(4193), [sym_entity_reference] = ACTIONS(4193), @@ -80870,7 +80727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4195), [anon_sym_CARET] = ACTIONS(4195), [anon_sym_BQUOTE] = ACTIONS(4193), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4193), [anon_sym_TILDE] = ACTIONS(4193), [anon_sym_LPAREN] = ACTIONS(4193), @@ -80910,11 +80767,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4193), [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, - [STATE(502)] = { - [sym__qmd_attribute] = STATE(1653), - [sym_raw_attribute] = STATE(1653), - [sym_commonmark_attribute] = STATE(1653), - [sym_language_attribute] = STATE(1653), + [STATE(500)] = { + [sym__qmd_attribute] = STATE(1647), + [sym_raw_attribute] = STATE(1647), + [sym_commonmark_attribute] = STATE(1647), + [sym_language_attribute] = STATE(1647), [ts_builtin_sym_end] = ACTIONS(4197), [sym__backslash_escape] = ACTIONS(4197), [sym_entity_reference] = ACTIONS(4197), @@ -80941,7 +80798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4199), [anon_sym_CARET] = ACTIONS(4199), [anon_sym_BQUOTE] = ACTIONS(4197), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4197), [anon_sym_TILDE] = ACTIONS(4197), [anon_sym_LPAREN] = ACTIONS(4197), @@ -80981,11 +80838,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4197), [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, - [STATE(503)] = { - [sym__qmd_attribute] = STATE(1728), - [sym_raw_attribute] = STATE(1728), - [sym_commonmark_attribute] = STATE(1728), - [sym_language_attribute] = STATE(1728), + [STATE(501)] = { + [sym__qmd_attribute] = STATE(1250), + [sym_raw_attribute] = STATE(1250), + [sym_commonmark_attribute] = STATE(1250), + [sym_language_attribute] = STATE(1250), + [sym__backslash_escape] = ACTIONS(4205), + [sym_entity_reference] = ACTIONS(4205), + [sym_numeric_character_reference] = ACTIONS(4205), + [anon_sym_LT] = ACTIONS(4207), + [anon_sym_GT] = ACTIONS(4205), + [anon_sym_BANG] = ACTIONS(4205), + [anon_sym_DQUOTE] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(4205), + [anon_sym_DOLLAR] = ACTIONS(4205), + [anon_sym_PERCENT] = ACTIONS(4205), + [anon_sym_AMP] = ACTIONS(4207), + [anon_sym_SQUOTE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4205), + [anon_sym_COMMA] = ACTIONS(4205), + [anon_sym_DASH] = ACTIONS(4207), + [anon_sym_DOT] = ACTIONS(4207), + [anon_sym_SLASH] = ACTIONS(4205), + [anon_sym_COLON] = ACTIONS(4205), + [anon_sym_SEMI] = ACTIONS(4205), + [anon_sym_EQ] = ACTIONS(4205), + [anon_sym_QMARK] = ACTIONS(4205), + [anon_sym_LBRACK] = ACTIONS(4207), + [anon_sym_BSLASH] = ACTIONS(4207), + [anon_sym_CARET] = ACTIONS(4207), + [anon_sym_BQUOTE] = ACTIONS(4205), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_TILDE] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4205), + [anon_sym_RPAREN] = ACTIONS(4205), + [sym__newline_token] = ACTIONS(4205), + [aux_sym_insert_token1] = ACTIONS(4205), + [aux_sym_delete_token1] = ACTIONS(4205), + [aux_sym_highlight_token1] = ACTIONS(4205), + [aux_sym_edit_comment_token1] = ACTIONS(4205), + [anon_sym_CARET_LBRACK] = ACTIONS(4205), + [anon_sym_LBRACK_CARET] = ACTIONS(4205), + [sym_uri_autolink] = ACTIONS(4205), + [sym_email_autolink] = ACTIONS(4205), + [sym__whitespace_ge_2] = ACTIONS(4205), + [aux_sym__whitespace_token1] = ACTIONS(4207), + [sym__word_no_digit] = ACTIONS(4205), + [sym__digits] = ACTIONS(4205), + [anon_sym_DASH_DASH] = ACTIONS(4207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4205), + [sym__code_span_start] = ACTIONS(4205), + [sym__emphasis_open_star] = ACTIONS(4205), + [sym__emphasis_open_underscore] = ACTIONS(4205), + [sym__strikeout_open] = ACTIONS(4205), + [sym__latex_span_start] = ACTIONS(4205), + [sym__single_quote_open] = ACTIONS(4205), + [sym__double_quote_open] = ACTIONS(4205), + [sym__superscript_open] = ACTIONS(4205), + [sym__subscript_open] = ACTIONS(4205), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4205), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4205), + [sym__cite_author_in_text] = ACTIONS(4205), + [sym__cite_suppress_author] = ACTIONS(4205), + [sym__shortcode_open_escaped] = ACTIONS(4205), + [sym__shortcode_open] = ACTIONS(4205), + [sym__unclosed_span] = ACTIONS(4205), + [sym__strong_emphasis_open_star] = ACTIONS(4205), + [sym__strong_emphasis_open_underscore] = ACTIONS(4205), + [sym__strong_emphasis_close_underscore] = ACTIONS(4205), + }, + [STATE(502)] = { + [sym__qmd_attribute] = STATE(1722), + [sym_raw_attribute] = STATE(1722), + [sym_commonmark_attribute] = STATE(1722), + [sym_language_attribute] = STATE(1722), [ts_builtin_sym_end] = ACTIONS(4201), [sym__backslash_escape] = ACTIONS(4201), [sym_entity_reference] = ACTIONS(4201), @@ -81012,7 +80940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4203), [anon_sym_CARET] = ACTIONS(4203), [anon_sym_BQUOTE] = ACTIONS(4201), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4201), [anon_sym_TILDE] = ACTIONS(4201), [anon_sym_LPAREN] = ACTIONS(4201), @@ -81052,11 +80980,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4201), [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, - [STATE(504)] = { - [sym__qmd_attribute] = STATE(1735), - [sym_raw_attribute] = STATE(1735), - [sym_commonmark_attribute] = STATE(1735), - [sym_language_attribute] = STATE(1735), + [STATE(503)] = { + [sym__qmd_attribute] = STATE(1729), + [sym_raw_attribute] = STATE(1729), + [sym_commonmark_attribute] = STATE(1729), + [sym_language_attribute] = STATE(1729), [ts_builtin_sym_end] = ACTIONS(4205), [sym__backslash_escape] = ACTIONS(4205), [sym_entity_reference] = ACTIONS(4205), @@ -81083,7 +81011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4207), [anon_sym_CARET] = ACTIONS(4207), [anon_sym_BQUOTE] = ACTIONS(4205), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4205), [anon_sym_TILDE] = ACTIONS(4205), [anon_sym_LPAREN] = ACTIONS(4205), @@ -81123,11 +81051,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4205), [sym__strong_emphasis_open_underscore] = ACTIONS(4205), }, + [STATE(504)] = { + [sym__qmd_attribute] = STATE(1539), + [sym_raw_attribute] = STATE(1539), + [sym_commonmark_attribute] = STATE(1539), + [sym_language_attribute] = STATE(1539), + [ts_builtin_sym_end] = ACTIONS(4275), + [sym__backslash_escape] = ACTIONS(4275), + [sym_entity_reference] = ACTIONS(4275), + [sym_numeric_character_reference] = ACTIONS(4275), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + [anon_sym_SQUOTE] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_COMMA] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4277), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_COLON] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_QMARK] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_BSLASH] = ACTIONS(4277), + [anon_sym_CARET] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4275), + [anon_sym_TILDE] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4275), + [anon_sym_RPAREN] = ACTIONS(4275), + [sym__newline_token] = ACTIONS(4275), + [aux_sym_insert_token1] = ACTIONS(4275), + [aux_sym_delete_token1] = ACTIONS(4275), + [aux_sym_highlight_token1] = ACTIONS(4275), + [aux_sym_edit_comment_token1] = ACTIONS(4275), + [anon_sym_CARET_LBRACK] = ACTIONS(4275), + [anon_sym_LBRACK_CARET] = ACTIONS(4275), + [sym_uri_autolink] = ACTIONS(4275), + [sym_email_autolink] = ACTIONS(4275), + [sym__whitespace_ge_2] = ACTIONS(4275), + [aux_sym__whitespace_token1] = ACTIONS(4277), + [sym__word_no_digit] = ACTIONS(4275), + [sym__digits] = ACTIONS(4275), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), + [sym__code_span_start] = ACTIONS(4275), + [sym__emphasis_open_star] = ACTIONS(4275), + [sym__emphasis_open_underscore] = ACTIONS(4275), + [sym__strikeout_open] = ACTIONS(4275), + [sym__latex_span_start] = ACTIONS(4275), + [sym__single_quote_open] = ACTIONS(4275), + [sym__double_quote_open] = ACTIONS(4275), + [sym__superscript_open] = ACTIONS(4275), + [sym__subscript_open] = ACTIONS(4275), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), + [sym__cite_author_in_text] = ACTIONS(4275), + [sym__cite_suppress_author] = ACTIONS(4275), + [sym__shortcode_open_escaped] = ACTIONS(4275), + [sym__shortcode_open] = ACTIONS(4275), + [sym__unclosed_span] = ACTIONS(4275), + [sym__strong_emphasis_open_star] = ACTIONS(4275), + [sym__strong_emphasis_open_underscore] = ACTIONS(4275), + }, [STATE(505)] = { - [sym__qmd_attribute] = STATE(960), - [sym_raw_attribute] = STATE(960), - [sym_commonmark_attribute] = STATE(960), - [sym_language_attribute] = STATE(960), + [sym__qmd_attribute] = STATE(956), + [sym_raw_attribute] = STATE(956), + [sym_commonmark_attribute] = STATE(956), + [sym_language_attribute] = STATE(956), [ts_builtin_sym_end] = ACTIONS(4209), [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), @@ -81154,7 +81153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4211), [anon_sym_CARET] = ACTIONS(4211), [anon_sym_BQUOTE] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4209), [anon_sym_TILDE] = ACTIONS(4209), [anon_sym_LPAREN] = ACTIONS(4209), @@ -81195,10 +81194,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, [STATE(506)] = { - [sym__qmd_attribute] = STATE(978), - [sym_raw_attribute] = STATE(978), - [sym_commonmark_attribute] = STATE(978), - [sym_language_attribute] = STATE(978), + [sym__qmd_attribute] = STATE(974), + [sym_raw_attribute] = STATE(974), + [sym_commonmark_attribute] = STATE(974), + [sym_language_attribute] = STATE(974), [ts_builtin_sym_end] = ACTIONS(4213), [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), @@ -81225,7 +81224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4215), [anon_sym_CARET] = ACTIONS(4215), [anon_sym_BQUOTE] = ACTIONS(4213), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4213), [anon_sym_TILDE] = ACTIONS(4213), [anon_sym_LPAREN] = ACTIONS(4213), @@ -81266,10 +81265,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, [STATE(507)] = { - [sym__qmd_attribute] = STATE(1039), - [sym_raw_attribute] = STATE(1039), - [sym_commonmark_attribute] = STATE(1039), - [sym_language_attribute] = STATE(1039), + [sym__qmd_attribute] = STATE(1019), + [sym_raw_attribute] = STATE(1019), + [sym_commonmark_attribute] = STATE(1019), + [sym_language_attribute] = STATE(1019), [ts_builtin_sym_end] = ACTIONS(4217), [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), @@ -81296,7 +81295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4219), [anon_sym_CARET] = ACTIONS(4219), [anon_sym_BQUOTE] = ACTIONS(4217), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4217), [anon_sym_TILDE] = ACTIONS(4217), [anon_sym_LPAREN] = ACTIONS(4217), @@ -81337,10 +81336,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, [STATE(508)] = { - [sym__qmd_attribute] = STATE(1044), - [sym_raw_attribute] = STATE(1044), - [sym_commonmark_attribute] = STATE(1044), - [sym_language_attribute] = STATE(1044), + [sym__qmd_attribute] = STATE(1039), + [sym_raw_attribute] = STATE(1039), + [sym_commonmark_attribute] = STATE(1039), + [sym_language_attribute] = STATE(1039), [ts_builtin_sym_end] = ACTIONS(4221), [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), @@ -81367,7 +81366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4223), [anon_sym_CARET] = ACTIONS(4223), [anon_sym_BQUOTE] = ACTIONS(4221), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4221), [anon_sym_TILDE] = ACTIONS(4221), [anon_sym_LPAREN] = ACTIONS(4221), @@ -81408,10 +81407,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, [STATE(509)] = { - [sym__qmd_attribute] = STATE(1075), - [sym_raw_attribute] = STATE(1075), - [sym_commonmark_attribute] = STATE(1075), - [sym_language_attribute] = STATE(1075), + [sym__qmd_attribute] = STATE(1058), + [sym_raw_attribute] = STATE(1058), + [sym_commonmark_attribute] = STATE(1058), + [sym_language_attribute] = STATE(1058), [ts_builtin_sym_end] = ACTIONS(4225), [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), @@ -81438,7 +81437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4227), [anon_sym_CARET] = ACTIONS(4227), [anon_sym_BQUOTE] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4225), [anon_sym_TILDE] = ACTIONS(4225), [anon_sym_LPAREN] = ACTIONS(4225), @@ -81479,10 +81478,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, [STATE(510)] = { - [sym__qmd_attribute] = STATE(1081), - [sym_raw_attribute] = STATE(1081), - [sym_commonmark_attribute] = STATE(1081), - [sym_language_attribute] = STATE(1081), + [sym__qmd_attribute] = STATE(1071), + [sym_raw_attribute] = STATE(1071), + [sym_commonmark_attribute] = STATE(1071), + [sym_language_attribute] = STATE(1071), [ts_builtin_sym_end] = ACTIONS(4229), [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), @@ -81509,7 +81508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4231), [anon_sym_CARET] = ACTIONS(4231), [anon_sym_BQUOTE] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4229), [anon_sym_TILDE] = ACTIONS(4229), [anon_sym_LPAREN] = ACTIONS(4229), @@ -81550,10 +81549,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, [STATE(511)] = { - [sym__qmd_attribute] = STATE(1087), - [sym_raw_attribute] = STATE(1087), - [sym_commonmark_attribute] = STATE(1087), - [sym_language_attribute] = STATE(1087), + [sym__qmd_attribute] = STATE(1077), + [sym_raw_attribute] = STATE(1077), + [sym_commonmark_attribute] = STATE(1077), + [sym_language_attribute] = STATE(1077), [ts_builtin_sym_end] = ACTIONS(4233), [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), @@ -81580,7 +81579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4235), [anon_sym_CARET] = ACTIONS(4235), [anon_sym_BQUOTE] = ACTIONS(4233), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4233), [anon_sym_TILDE] = ACTIONS(4233), [anon_sym_LPAREN] = ACTIONS(4233), @@ -81621,10 +81620,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, [STATE(512)] = { - [sym__qmd_attribute] = STATE(1088), - [sym_raw_attribute] = STATE(1088), - [sym_commonmark_attribute] = STATE(1088), - [sym_language_attribute] = STATE(1088), + [sym__qmd_attribute] = STATE(1080), + [sym_raw_attribute] = STATE(1080), + [sym_commonmark_attribute] = STATE(1080), + [sym_language_attribute] = STATE(1080), [ts_builtin_sym_end] = ACTIONS(4237), [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), @@ -81651,7 +81650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4239), [anon_sym_CARET] = ACTIONS(4239), [anon_sym_BQUOTE] = ACTIONS(4237), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4237), [anon_sym_TILDE] = ACTIONS(4237), [anon_sym_LPAREN] = ACTIONS(4237), @@ -81692,10 +81691,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, [STATE(513)] = { - [sym__qmd_attribute] = STATE(1090), - [sym_raw_attribute] = STATE(1090), - [sym_commonmark_attribute] = STATE(1090), - [sym_language_attribute] = STATE(1090), + [sym__qmd_attribute] = STATE(1084), + [sym_raw_attribute] = STATE(1084), + [sym_commonmark_attribute] = STATE(1084), + [sym_language_attribute] = STATE(1084), [ts_builtin_sym_end] = ACTIONS(4241), [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), @@ -81722,7 +81721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4243), [anon_sym_CARET] = ACTIONS(4243), [anon_sym_BQUOTE] = ACTIONS(4241), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4241), [anon_sym_TILDE] = ACTIONS(4241), [anon_sym_LPAREN] = ACTIONS(4241), @@ -81763,10 +81762,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, [STATE(514)] = { - [sym__qmd_attribute] = STATE(1093), - [sym_raw_attribute] = STATE(1093), - [sym_commonmark_attribute] = STATE(1093), - [sym_language_attribute] = STATE(1093), + [sym__qmd_attribute] = STATE(1085), + [sym_raw_attribute] = STATE(1085), + [sym_commonmark_attribute] = STATE(1085), + [sym_language_attribute] = STATE(1085), [ts_builtin_sym_end] = ACTIONS(4245), [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), @@ -81793,7 +81792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4247), [anon_sym_CARET] = ACTIONS(4247), [anon_sym_BQUOTE] = ACTIONS(4245), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4245), [anon_sym_TILDE] = ACTIONS(4245), [anon_sym_LPAREN] = ACTIONS(4245), @@ -81834,152 +81833,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, [STATE(515)] = { - [sym__qmd_attribute] = STATE(1184), - [sym_raw_attribute] = STATE(1184), - [sym_commonmark_attribute] = STATE(1184), - [sym_language_attribute] = STATE(1184), - [sym__backslash_escape] = ACTIONS(4257), - [sym_entity_reference] = ACTIONS(4257), - [sym_numeric_character_reference] = ACTIONS(4257), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4257), - [anon_sym_BANG] = ACTIONS(4257), - [anon_sym_DQUOTE] = ACTIONS(4257), - [anon_sym_POUND] = ACTIONS(4257), - [anon_sym_DOLLAR] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4257), - [anon_sym_AMP] = ACTIONS(4259), - [anon_sym_SQUOTE] = ACTIONS(4257), - [anon_sym_PLUS] = ACTIONS(4257), - [anon_sym_COMMA] = ACTIONS(4257), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_DOT] = ACTIONS(4259), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_COLON] = ACTIONS(4257), - [anon_sym_SEMI] = ACTIONS(4257), - [anon_sym_EQ] = ACTIONS(4257), - [anon_sym_QMARK] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_BSLASH] = ACTIONS(4259), - [anon_sym_CARET] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4257), + [sym__qmd_attribute] = STATE(1177), + [sym_raw_attribute] = STATE(1177), + [sym_commonmark_attribute] = STATE(1177), + [sym_language_attribute] = STATE(1177), + [sym__backslash_escape] = ACTIONS(4251), + [sym_entity_reference] = ACTIONS(4251), + [sym_numeric_character_reference] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_DQUOTE] = ACTIONS(4251), + [anon_sym_POUND] = ACTIONS(4251), + [anon_sym_DOLLAR] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_COMMA] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_COLON] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4251), + [anon_sym_QMARK] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_BSLASH] = ACTIONS(4253), + [anon_sym_CARET] = ACTIONS(4253), + [anon_sym_BQUOTE] = ACTIONS(4251), [anon_sym_LBRACE] = ACTIONS(4279), - [anon_sym_PIPE] = ACTIONS(4257), - [anon_sym_TILDE] = ACTIONS(4257), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), [anon_sym_LPAREN] = ACTIONS(4281), - [anon_sym_RPAREN] = ACTIONS(4257), - [sym__newline_token] = ACTIONS(4257), - [aux_sym_insert_token1] = ACTIONS(4257), - [aux_sym_delete_token1] = ACTIONS(4257), - [aux_sym_highlight_token1] = ACTIONS(4257), - [aux_sym_edit_comment_token1] = ACTIONS(4257), - [anon_sym_CARET_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_CARET] = ACTIONS(4257), - [sym_uri_autolink] = ACTIONS(4257), - [sym_email_autolink] = ACTIONS(4257), - [sym__whitespace_ge_2] = ACTIONS(4257), - [aux_sym__whitespace_token1] = ACTIONS(4259), - [sym__word_no_digit] = ACTIONS(4257), - [sym__digits] = ACTIONS(4257), - [anon_sym_DASH_DASH] = ACTIONS(4259), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4257), - [sym__code_span_start] = ACTIONS(4257), - [sym__emphasis_open_star] = ACTIONS(4257), - [sym__emphasis_open_underscore] = ACTIONS(4257), - [sym__emphasis_close_star] = ACTIONS(4257), - [sym__strikeout_open] = ACTIONS(4257), - [sym__latex_span_start] = ACTIONS(4257), - [sym__single_quote_open] = ACTIONS(4257), - [sym__double_quote_open] = ACTIONS(4257), - [sym__superscript_open] = ACTIONS(4257), - [sym__subscript_open] = ACTIONS(4257), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4257), - [sym__cite_author_in_text] = ACTIONS(4257), - [sym__cite_suppress_author] = ACTIONS(4257), - [sym__shortcode_open_escaped] = ACTIONS(4257), - [sym__shortcode_open] = ACTIONS(4257), - [sym__unclosed_span] = ACTIONS(4257), - [sym__strong_emphasis_open_star] = ACTIONS(4257), - [sym__strong_emphasis_open_underscore] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4251), + [sym__newline_token] = ACTIONS(4251), + [aux_sym_insert_token1] = ACTIONS(4251), + [aux_sym_delete_token1] = ACTIONS(4251), + [aux_sym_highlight_token1] = ACTIONS(4251), + [aux_sym_edit_comment_token1] = ACTIONS(4251), + [anon_sym_CARET_LBRACK] = ACTIONS(4251), + [anon_sym_LBRACK_CARET] = ACTIONS(4251), + [sym_uri_autolink] = ACTIONS(4251), + [sym_email_autolink] = ACTIONS(4251), + [sym__whitespace_ge_2] = ACTIONS(4251), + [aux_sym__whitespace_token1] = ACTIONS(4253), + [sym__word_no_digit] = ACTIONS(4251), + [sym__digits] = ACTIONS(4251), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4251), + [sym__code_span_start] = ACTIONS(4251), + [sym__emphasis_open_star] = ACTIONS(4251), + [sym__emphasis_open_underscore] = ACTIONS(4251), + [sym__emphasis_close_star] = ACTIONS(4251), + [sym__strikeout_open] = ACTIONS(4251), + [sym__latex_span_start] = ACTIONS(4251), + [sym__single_quote_open] = ACTIONS(4251), + [sym__double_quote_open] = ACTIONS(4251), + [sym__superscript_open] = ACTIONS(4251), + [sym__subscript_open] = ACTIONS(4251), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4251), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4251), + [sym__cite_author_in_text] = ACTIONS(4251), + [sym__cite_suppress_author] = ACTIONS(4251), + [sym__shortcode_open_escaped] = ACTIONS(4251), + [sym__shortcode_open] = ACTIONS(4251), + [sym__unclosed_span] = ACTIONS(4251), + [sym__strong_emphasis_open_star] = ACTIONS(4251), + [sym__strong_emphasis_open_underscore] = ACTIONS(4251), }, [STATE(516)] = { - [sym__qmd_attribute] = STATE(1187), - [sym_raw_attribute] = STATE(1187), - [sym_commonmark_attribute] = STATE(1187), - [sym_language_attribute] = STATE(1187), - [sym__backslash_escape] = ACTIONS(4267), - [sym_entity_reference] = ACTIONS(4267), - [sym_numeric_character_reference] = ACTIONS(4267), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4267), - [anon_sym_BANG] = ACTIONS(4267), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_POUND] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_PERCENT] = ACTIONS(4267), - [anon_sym_AMP] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4267), - [anon_sym_PLUS] = ACTIONS(4267), - [anon_sym_COMMA] = ACTIONS(4267), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4267), - [anon_sym_COLON] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4267), - [anon_sym_EQ] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4267), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_BSLASH] = ACTIONS(4269), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4267), + [sym__qmd_attribute] = STATE(1178), + [sym_raw_attribute] = STATE(1178), + [sym_commonmark_attribute] = STATE(1178), + [sym_language_attribute] = STATE(1178), + [sym__backslash_escape] = ACTIONS(4263), + [sym_entity_reference] = ACTIONS(4263), + [sym_numeric_character_reference] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4265), + [anon_sym_GT] = ACTIONS(4263), + [anon_sym_BANG] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(4263), + [anon_sym_DOLLAR] = ACTIONS(4263), + [anon_sym_PERCENT] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4265), + [anon_sym_SQUOTE] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_COMMA] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_COLON] = ACTIONS(4263), + [anon_sym_SEMI] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_BSLASH] = ACTIONS(4265), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_BQUOTE] = ACTIONS(4263), [anon_sym_LBRACE] = ACTIONS(4279), - [anon_sym_PIPE] = ACTIONS(4267), - [anon_sym_TILDE] = ACTIONS(4267), - [anon_sym_LPAREN] = ACTIONS(4267), - [anon_sym_RPAREN] = ACTIONS(4267), - [sym__newline_token] = ACTIONS(4267), - [aux_sym_insert_token1] = ACTIONS(4267), - [aux_sym_delete_token1] = ACTIONS(4267), - [aux_sym_highlight_token1] = ACTIONS(4267), - [aux_sym_edit_comment_token1] = ACTIONS(4267), - [anon_sym_CARET_LBRACK] = ACTIONS(4267), - [anon_sym_LBRACK_CARET] = ACTIONS(4267), - [sym_uri_autolink] = ACTIONS(4267), - [sym_email_autolink] = ACTIONS(4267), - [sym__whitespace_ge_2] = ACTIONS(4267), - [aux_sym__whitespace_token1] = ACTIONS(4269), - [sym__word_no_digit] = ACTIONS(4267), - [sym__digits] = ACTIONS(4267), - [anon_sym_DASH_DASH] = ACTIONS(4269), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), - [sym__code_span_start] = ACTIONS(4267), - [sym__emphasis_open_star] = ACTIONS(4267), - [sym__emphasis_open_underscore] = ACTIONS(4267), - [sym__emphasis_close_star] = ACTIONS(4267), - [sym__strikeout_open] = ACTIONS(4267), - [sym__latex_span_start] = ACTIONS(4267), - [sym__single_quote_open] = ACTIONS(4267), - [sym__double_quote_open] = ACTIONS(4267), - [sym__superscript_open] = ACTIONS(4267), - [sym__subscript_open] = ACTIONS(4267), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), - [sym__cite_author_in_text] = ACTIONS(4267), - [sym__cite_suppress_author] = ACTIONS(4267), - [sym__shortcode_open_escaped] = ACTIONS(4267), - [sym__shortcode_open] = ACTIONS(4267), - [sym__unclosed_span] = ACTIONS(4267), - [sym__strong_emphasis_open_star] = ACTIONS(4267), - [sym__strong_emphasis_open_underscore] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4263), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym_RPAREN] = ACTIONS(4263), + [sym__newline_token] = ACTIONS(4263), + [aux_sym_insert_token1] = ACTIONS(4263), + [aux_sym_delete_token1] = ACTIONS(4263), + [aux_sym_highlight_token1] = ACTIONS(4263), + [aux_sym_edit_comment_token1] = ACTIONS(4263), + [anon_sym_CARET_LBRACK] = ACTIONS(4263), + [anon_sym_LBRACK_CARET] = ACTIONS(4263), + [sym_uri_autolink] = ACTIONS(4263), + [sym_email_autolink] = ACTIONS(4263), + [sym__whitespace_ge_2] = ACTIONS(4263), + [aux_sym__whitespace_token1] = ACTIONS(4265), + [sym__word_no_digit] = ACTIONS(4263), + [sym__digits] = ACTIONS(4263), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), + [sym__code_span_start] = ACTIONS(4263), + [sym__emphasis_open_star] = ACTIONS(4263), + [sym__emphasis_open_underscore] = ACTIONS(4263), + [sym__emphasis_close_star] = ACTIONS(4263), + [sym__strikeout_open] = ACTIONS(4263), + [sym__latex_span_start] = ACTIONS(4263), + [sym__single_quote_open] = ACTIONS(4263), + [sym__double_quote_open] = ACTIONS(4263), + [sym__superscript_open] = ACTIONS(4263), + [sym__subscript_open] = ACTIONS(4263), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), + [sym__cite_author_in_text] = ACTIONS(4263), + [sym__cite_suppress_author] = ACTIONS(4263), + [sym__shortcode_open_escaped] = ACTIONS(4263), + [sym__shortcode_open] = ACTIONS(4263), + [sym__unclosed_span] = ACTIONS(4263), + [sym__strong_emphasis_open_star] = ACTIONS(4263), + [sym__strong_emphasis_open_underscore] = ACTIONS(4263), }, [STATE(517)] = { - [sym__qmd_attribute] = STATE(1199), - [sym_raw_attribute] = STATE(1199), - [sym_commonmark_attribute] = STATE(1199), - [sym_language_attribute] = STATE(1199), + [sym__qmd_attribute] = STATE(1180), + [sym_raw_attribute] = STATE(1180), + [sym_commonmark_attribute] = STATE(1180), + [sym_language_attribute] = STATE(1180), [sym__backslash_escape] = ACTIONS(4283), [sym_entity_reference] = ACTIONS(4283), [sym_numeric_character_reference] = ACTIONS(4283), @@ -82047,10 +82046,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4283), }, [STATE(518)] = { - [sym__qmd_attribute] = STATE(1248), - [sym_raw_attribute] = STATE(1248), - [sym_commonmark_attribute] = STATE(1248), - [sym_language_attribute] = STATE(1248), + [sym__qmd_attribute] = STATE(1228), + [sym_raw_attribute] = STATE(1228), + [sym_commonmark_attribute] = STATE(1228), + [sym_language_attribute] = STATE(1228), [sym__backslash_escape] = ACTIONS(4181), [sym_entity_reference] = ACTIONS(4181), [sym_numeric_character_reference] = ACTIONS(4181), @@ -82118,152 +82117,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, [STATE(519)] = { - [sym__qmd_attribute] = STATE(1259), - [sym_raw_attribute] = STATE(1259), - [sym_commonmark_attribute] = STATE(1259), - [sym_language_attribute] = STATE(1259), - [sym__backslash_escape] = ACTIONS(4263), - [sym_entity_reference] = ACTIONS(4263), - [sym_numeric_character_reference] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(4265), - [anon_sym_GT] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4263), - [anon_sym_POUND] = ACTIONS(4263), - [anon_sym_DOLLAR] = ACTIONS(4263), - [anon_sym_PERCENT] = ACTIONS(4263), - [anon_sym_AMP] = ACTIONS(4265), - [anon_sym_SQUOTE] = ACTIONS(4263), - [anon_sym_PLUS] = ACTIONS(4263), - [anon_sym_COMMA] = ACTIONS(4263), - [anon_sym_DASH] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4265), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_COLON] = ACTIONS(4263), - [anon_sym_SEMI] = ACTIONS(4263), - [anon_sym_EQ] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4263), - [anon_sym_LBRACK] = ACTIONS(4265), - [anon_sym_BSLASH] = ACTIONS(4265), - [anon_sym_CARET] = ACTIONS(4265), - [anon_sym_BQUOTE] = ACTIONS(4263), + [sym__qmd_attribute] = STATE(1233), + [sym_raw_attribute] = STATE(1233), + [sym_commonmark_attribute] = STATE(1233), + [sym_language_attribute] = STATE(1233), + [sym__backslash_escape] = ACTIONS(4259), + [sym_entity_reference] = ACTIONS(4259), + [sym_numeric_character_reference] = ACTIONS(4259), + [anon_sym_LT] = ACTIONS(4261), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + [anon_sym_SQUOTE] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_COMMA] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_DOT] = ACTIONS(4261), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_QMARK] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_BSLASH] = ACTIONS(4261), + [anon_sym_CARET] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4259), [anon_sym_LBRACE] = ACTIONS(4279), - [anon_sym_PIPE] = ACTIONS(4263), - [anon_sym_TILDE] = ACTIONS(4263), - [anon_sym_LPAREN] = ACTIONS(4263), - [anon_sym_RPAREN] = ACTIONS(4263), - [sym__newline_token] = ACTIONS(4263), - [aux_sym_insert_token1] = ACTIONS(4263), - [aux_sym_delete_token1] = ACTIONS(4263), - [aux_sym_highlight_token1] = ACTIONS(4263), - [aux_sym_edit_comment_token1] = ACTIONS(4263), - [anon_sym_CARET_LBRACK] = ACTIONS(4263), - [anon_sym_LBRACK_CARET] = ACTIONS(4263), - [sym_uri_autolink] = ACTIONS(4263), - [sym_email_autolink] = ACTIONS(4263), - [sym__whitespace_ge_2] = ACTIONS(4263), - [aux_sym__whitespace_token1] = ACTIONS(4265), - [sym__word_no_digit] = ACTIONS(4263), - [sym__digits] = ACTIONS(4263), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), - [sym__code_span_start] = ACTIONS(4263), - [sym__emphasis_open_star] = ACTIONS(4263), - [sym__emphasis_open_underscore] = ACTIONS(4263), - [sym__emphasis_close_star] = ACTIONS(4263), - [sym__strikeout_open] = ACTIONS(4263), - [sym__latex_span_start] = ACTIONS(4263), - [sym__single_quote_open] = ACTIONS(4263), - [sym__double_quote_open] = ACTIONS(4263), - [sym__superscript_open] = ACTIONS(4263), - [sym__subscript_open] = ACTIONS(4263), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), - [sym__cite_author_in_text] = ACTIONS(4263), - [sym__cite_suppress_author] = ACTIONS(4263), - [sym__shortcode_open_escaped] = ACTIONS(4263), - [sym__shortcode_open] = ACTIONS(4263), - [sym__unclosed_span] = ACTIONS(4263), - [sym__strong_emphasis_open_star] = ACTIONS(4263), - [sym__strong_emphasis_open_underscore] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym_RPAREN] = ACTIONS(4259), + [sym__newline_token] = ACTIONS(4259), + [aux_sym_insert_token1] = ACTIONS(4259), + [aux_sym_delete_token1] = ACTIONS(4259), + [aux_sym_highlight_token1] = ACTIONS(4259), + [aux_sym_edit_comment_token1] = ACTIONS(4259), + [anon_sym_CARET_LBRACK] = ACTIONS(4259), + [anon_sym_LBRACK_CARET] = ACTIONS(4259), + [sym_uri_autolink] = ACTIONS(4259), + [sym_email_autolink] = ACTIONS(4259), + [sym__whitespace_ge_2] = ACTIONS(4259), + [aux_sym__whitespace_token1] = ACTIONS(4261), + [sym__word_no_digit] = ACTIONS(4259), + [sym__digits] = ACTIONS(4259), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4259), + [sym__code_span_start] = ACTIONS(4259), + [sym__emphasis_open_star] = ACTIONS(4259), + [sym__emphasis_open_underscore] = ACTIONS(4259), + [sym__emphasis_close_star] = ACTIONS(4259), + [sym__strikeout_open] = ACTIONS(4259), + [sym__latex_span_start] = ACTIONS(4259), + [sym__single_quote_open] = ACTIONS(4259), + [sym__double_quote_open] = ACTIONS(4259), + [sym__superscript_open] = ACTIONS(4259), + [sym__subscript_open] = ACTIONS(4259), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4259), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4259), + [sym__cite_author_in_text] = ACTIONS(4259), + [sym__cite_suppress_author] = ACTIONS(4259), + [sym__shortcode_open_escaped] = ACTIONS(4259), + [sym__shortcode_open] = ACTIONS(4259), + [sym__unclosed_span] = ACTIONS(4259), + [sym__strong_emphasis_open_star] = ACTIONS(4259), + [sym__strong_emphasis_open_underscore] = ACTIONS(4259), }, [STATE(520)] = { - [sym__qmd_attribute] = STATE(1267), - [sym_raw_attribute] = STATE(1267), - [sym_commonmark_attribute] = STATE(1267), - [sym_language_attribute] = STATE(1267), - [sym__backslash_escape] = ACTIONS(4271), - [sym_entity_reference] = ACTIONS(4271), - [sym_numeric_character_reference] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4273), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_POUND] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4273), - [anon_sym_SQUOTE] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4273), - [anon_sym_SLASH] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_EQ] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(4271), - [anon_sym_LBRACK] = ACTIONS(4273), - [anon_sym_BSLASH] = ACTIONS(4273), - [anon_sym_CARET] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4271), + [sym__qmd_attribute] = STATE(1244), + [sym_raw_attribute] = STATE(1244), + [sym_commonmark_attribute] = STATE(1244), + [sym_language_attribute] = STATE(1244), + [sym__backslash_escape] = ACTIONS(4267), + [sym_entity_reference] = ACTIONS(4267), + [sym_numeric_character_reference] = ACTIONS(4267), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_DQUOTE] = ACTIONS(4267), + [anon_sym_POUND] = ACTIONS(4267), + [anon_sym_DOLLAR] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_SQUOTE] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_COMMA] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4269), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_COLON] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_QMARK] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_BSLASH] = ACTIONS(4269), + [anon_sym_CARET] = ACTIONS(4269), + [anon_sym_BQUOTE] = ACTIONS(4267), [anon_sym_LBRACE] = ACTIONS(4279), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_TILDE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [sym__newline_token] = ACTIONS(4271), - [aux_sym_insert_token1] = ACTIONS(4271), - [aux_sym_delete_token1] = ACTIONS(4271), - [aux_sym_highlight_token1] = ACTIONS(4271), - [aux_sym_edit_comment_token1] = ACTIONS(4271), - [anon_sym_CARET_LBRACK] = ACTIONS(4271), - [anon_sym_LBRACK_CARET] = ACTIONS(4271), - [sym_uri_autolink] = ACTIONS(4271), - [sym_email_autolink] = ACTIONS(4271), - [sym__whitespace_ge_2] = ACTIONS(4271), - [aux_sym__whitespace_token1] = ACTIONS(4273), - [sym__word_no_digit] = ACTIONS(4271), - [sym__digits] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4273), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), - [sym__code_span_start] = ACTIONS(4271), - [sym__emphasis_open_star] = ACTIONS(4271), - [sym__emphasis_open_underscore] = ACTIONS(4271), - [sym__emphasis_close_star] = ACTIONS(4271), - [sym__strikeout_open] = ACTIONS(4271), - [sym__latex_span_start] = ACTIONS(4271), - [sym__single_quote_open] = ACTIONS(4271), - [sym__double_quote_open] = ACTIONS(4271), - [sym__superscript_open] = ACTIONS(4271), - [sym__subscript_open] = ACTIONS(4271), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), - [sym__cite_author_in_text] = ACTIONS(4271), - [sym__cite_suppress_author] = ACTIONS(4271), - [sym__shortcode_open_escaped] = ACTIONS(4271), - [sym__shortcode_open] = ACTIONS(4271), - [sym__unclosed_span] = ACTIONS(4271), - [sym__strong_emphasis_open_star] = ACTIONS(4271), - [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4267), + [anon_sym_TILDE] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_RPAREN] = ACTIONS(4267), + [sym__newline_token] = ACTIONS(4267), + [aux_sym_insert_token1] = ACTIONS(4267), + [aux_sym_delete_token1] = ACTIONS(4267), + [aux_sym_highlight_token1] = ACTIONS(4267), + [aux_sym_edit_comment_token1] = ACTIONS(4267), + [anon_sym_CARET_LBRACK] = ACTIONS(4267), + [anon_sym_LBRACK_CARET] = ACTIONS(4267), + [sym_uri_autolink] = ACTIONS(4267), + [sym_email_autolink] = ACTIONS(4267), + [sym__whitespace_ge_2] = ACTIONS(4267), + [aux_sym__whitespace_token1] = ACTIONS(4269), + [sym__word_no_digit] = ACTIONS(4267), + [sym__digits] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), + [sym__code_span_start] = ACTIONS(4267), + [sym__emphasis_open_star] = ACTIONS(4267), + [sym__emphasis_open_underscore] = ACTIONS(4267), + [sym__emphasis_close_star] = ACTIONS(4267), + [sym__strikeout_open] = ACTIONS(4267), + [sym__latex_span_start] = ACTIONS(4267), + [sym__single_quote_open] = ACTIONS(4267), + [sym__double_quote_open] = ACTIONS(4267), + [sym__superscript_open] = ACTIONS(4267), + [sym__subscript_open] = ACTIONS(4267), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), + [sym__cite_author_in_text] = ACTIONS(4267), + [sym__cite_suppress_author] = ACTIONS(4267), + [sym__shortcode_open_escaped] = ACTIONS(4267), + [sym__shortcode_open] = ACTIONS(4267), + [sym__unclosed_span] = ACTIONS(4267), + [sym__strong_emphasis_open_star] = ACTIONS(4267), + [sym__strong_emphasis_open_underscore] = ACTIONS(4267), }, [STATE(521)] = { - [sym__qmd_attribute] = STATE(1273), - [sym_raw_attribute] = STATE(1273), - [sym_commonmark_attribute] = STATE(1273), - [sym_language_attribute] = STATE(1273), + [sym__qmd_attribute] = STATE(1251), + [sym_raw_attribute] = STATE(1251), + [sym_commonmark_attribute] = STATE(1251), + [sym_language_attribute] = STATE(1251), + [sym__backslash_escape] = ACTIONS(4275), + [sym_entity_reference] = ACTIONS(4275), + [sym_numeric_character_reference] = ACTIONS(4275), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + [anon_sym_SQUOTE] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_COMMA] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4277), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_COLON] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_QMARK] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_BSLASH] = ACTIONS(4277), + [anon_sym_CARET] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_PIPE] = ACTIONS(4275), + [anon_sym_TILDE] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4275), + [anon_sym_RPAREN] = ACTIONS(4275), + [sym__newline_token] = ACTIONS(4275), + [aux_sym_insert_token1] = ACTIONS(4275), + [aux_sym_delete_token1] = ACTIONS(4275), + [aux_sym_highlight_token1] = ACTIONS(4275), + [aux_sym_edit_comment_token1] = ACTIONS(4275), + [anon_sym_CARET_LBRACK] = ACTIONS(4275), + [anon_sym_LBRACK_CARET] = ACTIONS(4275), + [sym_uri_autolink] = ACTIONS(4275), + [sym_email_autolink] = ACTIONS(4275), + [sym__whitespace_ge_2] = ACTIONS(4275), + [aux_sym__whitespace_token1] = ACTIONS(4277), + [sym__word_no_digit] = ACTIONS(4275), + [sym__digits] = ACTIONS(4275), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), + [sym__code_span_start] = ACTIONS(4275), + [sym__emphasis_open_star] = ACTIONS(4275), + [sym__emphasis_open_underscore] = ACTIONS(4275), + [sym__emphasis_close_star] = ACTIONS(4275), + [sym__strikeout_open] = ACTIONS(4275), + [sym__latex_span_start] = ACTIONS(4275), + [sym__single_quote_open] = ACTIONS(4275), + [sym__double_quote_open] = ACTIONS(4275), + [sym__superscript_open] = ACTIONS(4275), + [sym__subscript_open] = ACTIONS(4275), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), + [sym__cite_author_in_text] = ACTIONS(4275), + [sym__cite_suppress_author] = ACTIONS(4275), + [sym__shortcode_open_escaped] = ACTIONS(4275), + [sym__shortcode_open] = ACTIONS(4275), + [sym__unclosed_span] = ACTIONS(4275), + [sym__strong_emphasis_open_star] = ACTIONS(4275), + [sym__strong_emphasis_open_underscore] = ACTIONS(4275), + }, + [STATE(522)] = { + [sym__qmd_attribute] = STATE(1259), + [sym_raw_attribute] = STATE(1259), + [sym_commonmark_attribute] = STATE(1259), + [sym_language_attribute] = STATE(1259), [sym__backslash_escape] = ACTIONS(4287), [sym_entity_reference] = ACTIONS(4287), [sym_numeric_character_reference] = ACTIONS(4287), @@ -82330,153 +82400,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4287), [sym__strong_emphasis_open_underscore] = ACTIONS(4287), }, - [STATE(522)] = { - [sym__qmd_attribute] = STATE(1276), - [sym_raw_attribute] = STATE(1276), - [sym_commonmark_attribute] = STATE(1276), - [sym_language_attribute] = STATE(1276), - [sym__backslash_escape] = ACTIONS(4291), - [sym_entity_reference] = ACTIONS(4291), - [sym_numeric_character_reference] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4291), - [anon_sym_POUND] = ACTIONS(4291), - [anon_sym_DOLLAR] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_AMP] = ACTIONS(4293), - [anon_sym_SQUOTE] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4293), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_BSLASH] = ACTIONS(4293), - [anon_sym_CARET] = ACTIONS(4293), - [anon_sym_BQUOTE] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4279), - [anon_sym_PIPE] = ACTIONS(4291), - [anon_sym_TILDE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [sym__newline_token] = ACTIONS(4291), - [aux_sym_insert_token1] = ACTIONS(4291), - [aux_sym_delete_token1] = ACTIONS(4291), - [aux_sym_highlight_token1] = ACTIONS(4291), - [aux_sym_edit_comment_token1] = ACTIONS(4291), - [anon_sym_CARET_LBRACK] = ACTIONS(4291), - [anon_sym_LBRACK_CARET] = ACTIONS(4291), - [sym_uri_autolink] = ACTIONS(4291), - [sym_email_autolink] = ACTIONS(4291), - [sym__whitespace_ge_2] = ACTIONS(4291), - [aux_sym__whitespace_token1] = ACTIONS(4293), - [sym__word_no_digit] = ACTIONS(4291), - [sym__digits] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), - [sym__code_span_start] = ACTIONS(4291), - [sym__emphasis_open_star] = ACTIONS(4291), - [sym__emphasis_open_underscore] = ACTIONS(4291), - [sym__emphasis_close_star] = ACTIONS(4291), - [sym__strikeout_open] = ACTIONS(4291), - [sym__latex_span_start] = ACTIONS(4291), - [sym__single_quote_open] = ACTIONS(4291), - [sym__double_quote_open] = ACTIONS(4291), - [sym__superscript_open] = ACTIONS(4291), - [sym__subscript_open] = ACTIONS(4291), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4291), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4291), - [sym__cite_author_in_text] = ACTIONS(4291), - [sym__cite_suppress_author] = ACTIONS(4291), - [sym__shortcode_open_escaped] = ACTIONS(4291), - [sym__shortcode_open] = ACTIONS(4291), - [sym__unclosed_span] = ACTIONS(4291), - [sym__strong_emphasis_open_star] = ACTIONS(4291), - [sym__strong_emphasis_open_underscore] = ACTIONS(4291), - }, [STATE(523)] = { - [sym__qmd_attribute] = STATE(1544), - [sym_raw_attribute] = STATE(1544), - [sym_commonmark_attribute] = STATE(1544), - [sym_language_attribute] = STATE(1544), - [ts_builtin_sym_end] = ACTIONS(4287), - [sym__backslash_escape] = ACTIONS(4287), - [sym_entity_reference] = ACTIONS(4287), - [sym_numeric_character_reference] = ACTIONS(4287), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4287), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_DQUOTE] = ACTIONS(4287), - [anon_sym_POUND] = ACTIONS(4287), - [anon_sym_DOLLAR] = ACTIONS(4287), - [anon_sym_PERCENT] = ACTIONS(4287), - [anon_sym_AMP] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4287), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_COMMA] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4287), - [anon_sym_COLON] = ACTIONS(4287), - [anon_sym_SEMI] = ACTIONS(4287), - [anon_sym_EQ] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4287), - [anon_sym_LBRACK] = ACTIONS(4289), - [anon_sym_BSLASH] = ACTIONS(4289), - [anon_sym_CARET] = ACTIONS(4289), - [anon_sym_BQUOTE] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(4253), - [anon_sym_PIPE] = ACTIONS(4287), - [anon_sym_TILDE] = ACTIONS(4287), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym_RPAREN] = ACTIONS(4287), - [sym__newline_token] = ACTIONS(4287), - [aux_sym_insert_token1] = ACTIONS(4287), - [aux_sym_delete_token1] = ACTIONS(4287), - [aux_sym_highlight_token1] = ACTIONS(4287), - [aux_sym_edit_comment_token1] = ACTIONS(4287), - [anon_sym_CARET_LBRACK] = ACTIONS(4287), - [anon_sym_LBRACK_CARET] = ACTIONS(4287), - [sym_uri_autolink] = ACTIONS(4287), - [sym_email_autolink] = ACTIONS(4287), - [sym__whitespace_ge_2] = ACTIONS(4287), - [aux_sym__whitespace_token1] = ACTIONS(4289), - [sym__word_no_digit] = ACTIONS(4287), - [sym__digits] = ACTIONS(4287), - [anon_sym_DASH_DASH] = ACTIONS(4289), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4287), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4287), - [sym__code_span_start] = ACTIONS(4287), - [sym__emphasis_open_star] = ACTIONS(4287), - [sym__emphasis_open_underscore] = ACTIONS(4287), - [sym__strikeout_open] = ACTIONS(4287), - [sym__latex_span_start] = ACTIONS(4287), - [sym__single_quote_open] = ACTIONS(4287), - [sym__double_quote_open] = ACTIONS(4287), - [sym__superscript_open] = ACTIONS(4287), - [sym__subscript_open] = ACTIONS(4287), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4287), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4287), - [sym__cite_author_in_text] = ACTIONS(4287), - [sym__cite_suppress_author] = ACTIONS(4287), - [sym__shortcode_open_escaped] = ACTIONS(4287), - [sym__shortcode_open] = ACTIONS(4287), - [sym__unclosed_span] = ACTIONS(4287), - [sym__strong_emphasis_open_star] = ACTIONS(4287), - [sym__strong_emphasis_open_underscore] = ACTIONS(4287), - }, - [STATE(524)] = { - [sym__qmd_attribute] = STATE(1256), - [sym_raw_attribute] = STATE(1256), - [sym_commonmark_attribute] = STATE(1256), - [sym_language_attribute] = STATE(1256), + [sym__qmd_attribute] = STATE(1257), + [sym_raw_attribute] = STATE(1257), + [sym_commonmark_attribute] = STATE(1257), + [sym_language_attribute] = STATE(1257), [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), [sym_numeric_character_reference] = ACTIONS(4209), @@ -82502,7 +82430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4211), [anon_sym_CARET] = ACTIONS(4211), [anon_sym_BQUOTE] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4249), [anon_sym_PIPE] = ACTIONS(4209), [anon_sym_TILDE] = ACTIONS(4209), [anon_sym_LPAREN] = ACTIONS(4209), @@ -82543,78 +82471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4209), [sym__strong_emphasis_close_underscore] = ACTIONS(4209), }, - [STATE(525)] = { - [sym__qmd_attribute] = STATE(1287), - [sym_raw_attribute] = STATE(1287), - [sym_commonmark_attribute] = STATE(1287), - [sym_language_attribute] = STATE(1287), - [sym__backslash_escape] = ACTIONS(4249), - [sym_entity_reference] = ACTIONS(4249), - [sym_numeric_character_reference] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(4251), - [anon_sym_GT] = ACTIONS(4249), - [anon_sym_BANG] = ACTIONS(4249), - [anon_sym_DQUOTE] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(4249), - [anon_sym_PERCENT] = ACTIONS(4249), - [anon_sym_AMP] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4249), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_COMMA] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4251), - [anon_sym_DOT] = ACTIONS(4251), - [anon_sym_SLASH] = ACTIONS(4249), - [anon_sym_COLON] = ACTIONS(4249), - [anon_sym_SEMI] = ACTIONS(4249), - [anon_sym_EQ] = ACTIONS(4249), - [anon_sym_QMARK] = ACTIONS(4249), - [anon_sym_LBRACK] = ACTIONS(4251), - [anon_sym_BSLASH] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4251), - [anon_sym_BQUOTE] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4279), - [anon_sym_PIPE] = ACTIONS(4249), - [anon_sym_TILDE] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4249), - [anon_sym_RPAREN] = ACTIONS(4249), - [sym__newline_token] = ACTIONS(4249), - [aux_sym_insert_token1] = ACTIONS(4249), - [aux_sym_delete_token1] = ACTIONS(4249), - [aux_sym_highlight_token1] = ACTIONS(4249), - [aux_sym_edit_comment_token1] = ACTIONS(4249), - [anon_sym_CARET_LBRACK] = ACTIONS(4249), - [anon_sym_LBRACK_CARET] = ACTIONS(4249), - [sym_uri_autolink] = ACTIONS(4249), - [sym_email_autolink] = ACTIONS(4249), - [sym__whitespace_ge_2] = ACTIONS(4249), - [aux_sym__whitespace_token1] = ACTIONS(4251), - [sym__word_no_digit] = ACTIONS(4249), - [sym__digits] = ACTIONS(4249), - [anon_sym_DASH_DASH] = ACTIONS(4251), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4249), - [sym__code_span_start] = ACTIONS(4249), - [sym__emphasis_open_star] = ACTIONS(4249), - [sym__emphasis_open_underscore] = ACTIONS(4249), - [sym__emphasis_close_star] = ACTIONS(4249), - [sym__strikeout_open] = ACTIONS(4249), - [sym__latex_span_start] = ACTIONS(4249), - [sym__single_quote_open] = ACTIONS(4249), - [sym__double_quote_open] = ACTIONS(4249), - [sym__superscript_open] = ACTIONS(4249), - [sym__subscript_open] = ACTIONS(4249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4249), - [sym__cite_author_in_text] = ACTIONS(4249), - [sym__cite_suppress_author] = ACTIONS(4249), - [sym__shortcode_open_escaped] = ACTIONS(4249), - [sym__shortcode_open] = ACTIONS(4249), - [sym__unclosed_span] = ACTIONS(4249), - [sym__strong_emphasis_open_star] = ACTIONS(4249), - [sym__strong_emphasis_open_underscore] = ACTIONS(4249), - }, - [STATE(526)] = { + [STATE(524)] = { [sym__qmd_attribute] = STATE(1258), [sym_raw_attribute] = STATE(1258), [sym_commonmark_attribute] = STATE(1258), @@ -82644,7 +82501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4215), [anon_sym_CARET] = ACTIONS(4215), [anon_sym_BQUOTE] = ACTIONS(4213), - [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4249), [anon_sym_PIPE] = ACTIONS(4213), [anon_sym_TILDE] = ACTIONS(4213), [anon_sym_LPAREN] = ACTIONS(4213), @@ -82685,12 +82542,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4213), [sym__strong_emphasis_close_underscore] = ACTIONS(4213), }, - [STATE(527)] = { - [sym__qmd_attribute] = STATE(1552), - [sym_raw_attribute] = STATE(1552), - [sym_commonmark_attribute] = STATE(1552), - [sym_language_attribute] = STATE(1552), - [ts_builtin_sym_end] = ACTIONS(4291), + [STATE(525)] = { + [sym__qmd_attribute] = STATE(1279), + [sym_raw_attribute] = STATE(1279), + [sym_commonmark_attribute] = STATE(1279), + [sym_language_attribute] = STATE(1279), [sym__backslash_escape] = ACTIONS(4291), [sym_entity_reference] = ACTIONS(4291), [sym_numeric_character_reference] = ACTIONS(4291), @@ -82716,7 +82572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4293), [anon_sym_CARET] = ACTIONS(4293), [anon_sym_BQUOTE] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4279), [anon_sym_PIPE] = ACTIONS(4291), [anon_sym_TILDE] = ACTIONS(4291), [anon_sym_LPAREN] = ACTIONS(4291), @@ -82740,6 +82596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4291), [sym__emphasis_open_star] = ACTIONS(4291), [sym__emphasis_open_underscore] = ACTIONS(4291), + [sym__emphasis_close_star] = ACTIONS(4291), [sym__strikeout_open] = ACTIONS(4291), [sym__latex_span_start] = ACTIONS(4291), [sym__single_quote_open] = ACTIONS(4291), @@ -82756,11 +82613,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4291), [sym__strong_emphasis_open_underscore] = ACTIONS(4291), }, - [STATE(528)] = { - [sym__qmd_attribute] = STATE(1282), - [sym_raw_attribute] = STATE(1282), - [sym_commonmark_attribute] = STATE(1282), - [sym_language_attribute] = STATE(1282), + [STATE(526)] = { + [sym__qmd_attribute] = STATE(1547), + [sym_raw_attribute] = STATE(1547), + [sym_commonmark_attribute] = STATE(1547), + [sym_language_attribute] = STATE(1547), + [ts_builtin_sym_end] = ACTIONS(4287), + [sym__backslash_escape] = ACTIONS(4287), + [sym_entity_reference] = ACTIONS(4287), + [sym_numeric_character_reference] = ACTIONS(4287), + [anon_sym_LT] = ACTIONS(4289), + [anon_sym_GT] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4287), + [anon_sym_POUND] = ACTIONS(4287), + [anon_sym_DOLLAR] = ACTIONS(4287), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4287), + [anon_sym_COMMA] = ACTIONS(4287), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_SLASH] = ACTIONS(4287), + [anon_sym_COLON] = ACTIONS(4287), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_EQ] = ACTIONS(4287), + [anon_sym_QMARK] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_BSLASH] = ACTIONS(4289), + [anon_sym_CARET] = ACTIONS(4289), + [anon_sym_BQUOTE] = ACTIONS(4287), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4287), + [anon_sym_TILDE] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(4287), + [anon_sym_RPAREN] = ACTIONS(4287), + [sym__newline_token] = ACTIONS(4287), + [aux_sym_insert_token1] = ACTIONS(4287), + [aux_sym_delete_token1] = ACTIONS(4287), + [aux_sym_highlight_token1] = ACTIONS(4287), + [aux_sym_edit_comment_token1] = ACTIONS(4287), + [anon_sym_CARET_LBRACK] = ACTIONS(4287), + [anon_sym_LBRACK_CARET] = ACTIONS(4287), + [sym_uri_autolink] = ACTIONS(4287), + [sym_email_autolink] = ACTIONS(4287), + [sym__whitespace_ge_2] = ACTIONS(4287), + [aux_sym__whitespace_token1] = ACTIONS(4289), + [sym__word_no_digit] = ACTIONS(4287), + [sym__digits] = ACTIONS(4287), + [anon_sym_DASH_DASH] = ACTIONS(4289), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4287), + [sym__code_span_start] = ACTIONS(4287), + [sym__emphasis_open_star] = ACTIONS(4287), + [sym__emphasis_open_underscore] = ACTIONS(4287), + [sym__strikeout_open] = ACTIONS(4287), + [sym__latex_span_start] = ACTIONS(4287), + [sym__single_quote_open] = ACTIONS(4287), + [sym__double_quote_open] = ACTIONS(4287), + [sym__superscript_open] = ACTIONS(4287), + [sym__subscript_open] = ACTIONS(4287), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4287), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4287), + [sym__cite_author_in_text] = ACTIONS(4287), + [sym__cite_suppress_author] = ACTIONS(4287), + [sym__shortcode_open_escaped] = ACTIONS(4287), + [sym__shortcode_open] = ACTIONS(4287), + [sym__unclosed_span] = ACTIONS(4287), + [sym__strong_emphasis_open_star] = ACTIONS(4287), + [sym__strong_emphasis_open_underscore] = ACTIONS(4287), + }, + [STATE(527)] = { + [sym__qmd_attribute] = STATE(1272), + [sym_raw_attribute] = STATE(1272), + [sym_commonmark_attribute] = STATE(1272), + [sym_language_attribute] = STATE(1272), [ts_builtin_sym_end] = ACTIONS(4283), [sym__backslash_escape] = ACTIONS(4283), [sym_entity_reference] = ACTIONS(4283), @@ -82787,7 +82715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4285), [anon_sym_CARET] = ACTIONS(4285), [anon_sym_BQUOTE] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4255), [anon_sym_PIPE] = ACTIONS(4283), [anon_sym_TILDE] = ACTIONS(4283), [anon_sym_LPAREN] = ACTIONS(4283), @@ -82827,82 +82755,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4283), [sym__strong_emphasis_open_underscore] = ACTIONS(4283), }, + [STATE(528)] = { + [sym__qmd_attribute] = STATE(1264), + [sym_raw_attribute] = STATE(1264), + [sym_commonmark_attribute] = STATE(1264), + [sym_language_attribute] = STATE(1264), + [sym__backslash_escape] = ACTIONS(4217), + [sym_entity_reference] = ACTIONS(4217), + [sym_numeric_character_reference] = ACTIONS(4217), + [anon_sym_LT] = ACTIONS(4219), + [anon_sym_GT] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4217), + [anon_sym_DQUOTE] = ACTIONS(4217), + [anon_sym_POUND] = ACTIONS(4217), + [anon_sym_DOLLAR] = ACTIONS(4217), + [anon_sym_PERCENT] = ACTIONS(4217), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_SQUOTE] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4217), + [anon_sym_COMMA] = ACTIONS(4217), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_DOT] = ACTIONS(4219), + [anon_sym_SLASH] = ACTIONS(4217), + [anon_sym_COLON] = ACTIONS(4217), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_EQ] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_BSLASH] = ACTIONS(4219), + [anon_sym_CARET] = ACTIONS(4219), + [anon_sym_BQUOTE] = ACTIONS(4217), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4217), + [anon_sym_TILDE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_RPAREN] = ACTIONS(4217), + [sym__newline_token] = ACTIONS(4217), + [aux_sym_insert_token1] = ACTIONS(4217), + [aux_sym_delete_token1] = ACTIONS(4217), + [aux_sym_highlight_token1] = ACTIONS(4217), + [aux_sym_edit_comment_token1] = ACTIONS(4217), + [anon_sym_CARET_LBRACK] = ACTIONS(4217), + [anon_sym_LBRACK_CARET] = ACTIONS(4217), + [sym_uri_autolink] = ACTIONS(4217), + [sym_email_autolink] = ACTIONS(4217), + [sym__whitespace_ge_2] = ACTIONS(4217), + [aux_sym__whitespace_token1] = ACTIONS(4219), + [sym__word_no_digit] = ACTIONS(4217), + [sym__digits] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4219), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4217), + [sym__code_span_start] = ACTIONS(4217), + [sym__emphasis_open_star] = ACTIONS(4217), + [sym__emphasis_open_underscore] = ACTIONS(4217), + [sym__strikeout_open] = ACTIONS(4217), + [sym__latex_span_start] = ACTIONS(4217), + [sym__single_quote_open] = ACTIONS(4217), + [sym__double_quote_open] = ACTIONS(4217), + [sym__superscript_open] = ACTIONS(4217), + [sym__subscript_open] = ACTIONS(4217), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4217), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4217), + [sym__cite_author_in_text] = ACTIONS(4217), + [sym__cite_suppress_author] = ACTIONS(4217), + [sym__shortcode_open_escaped] = ACTIONS(4217), + [sym__shortcode_open] = ACTIONS(4217), + [sym__unclosed_span] = ACTIONS(4217), + [sym__strong_emphasis_open_star] = ACTIONS(4217), + [sym__strong_emphasis_open_underscore] = ACTIONS(4217), + [sym__strong_emphasis_close_underscore] = ACTIONS(4217), + }, [STATE(529)] = { - [sym__qmd_attribute] = STATE(1302), - [sym_raw_attribute] = STATE(1302), - [sym_commonmark_attribute] = STATE(1302), - [sym_language_attribute] = STATE(1302), - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), + [sym__qmd_attribute] = STATE(1284), + [sym_raw_attribute] = STATE(1284), + [sym_commonmark_attribute] = STATE(1284), + [sym_language_attribute] = STATE(1284), + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), [anon_sym_LBRACE] = ACTIONS(4279), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__emphasis_close_star] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__emphasis_close_star] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), }, [STATE(530)] = { - [sym__qmd_attribute] = STATE(1303), - [sym_raw_attribute] = STATE(1303), - [sym_commonmark_attribute] = STATE(1303), - [sym_language_attribute] = STATE(1303), + [sym__qmd_attribute] = STATE(1285), + [sym_raw_attribute] = STATE(1285), + [sym_commonmark_attribute] = STATE(1285), + [sym_language_attribute] = STATE(1285), [sym__backslash_escape] = ACTIONS(4187), [sym_entity_reference] = ACTIONS(4187), [sym_numeric_character_reference] = ACTIONS(4187), @@ -82970,10 +82969,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(531)] = { - [sym__qmd_attribute] = STATE(1304), - [sym_raw_attribute] = STATE(1304), - [sym_commonmark_attribute] = STATE(1304), - [sym_language_attribute] = STATE(1304), + [sym__qmd_attribute] = STATE(1288), + [sym_raw_attribute] = STATE(1288), + [sym_commonmark_attribute] = STATE(1288), + [sym_language_attribute] = STATE(1288), [sym__backslash_escape] = ACTIONS(4193), [sym_entity_reference] = ACTIONS(4193), [sym_numeric_character_reference] = ACTIONS(4193), @@ -83041,10 +83040,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(532)] = { - [sym__qmd_attribute] = STATE(1305), - [sym_raw_attribute] = STATE(1305), - [sym_commonmark_attribute] = STATE(1305), - [sym_language_attribute] = STATE(1305), + [sym__qmd_attribute] = STATE(1289), + [sym_raw_attribute] = STATE(1289), + [sym_commonmark_attribute] = STATE(1289), + [sym_language_attribute] = STATE(1289), [sym__backslash_escape] = ACTIONS(4197), [sym_entity_reference] = ACTIONS(4197), [sym_numeric_character_reference] = ACTIONS(4197), @@ -83112,10 +83111,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(533)] = { - [sym__qmd_attribute] = STATE(1332), - [sym_raw_attribute] = STATE(1332), - [sym_commonmark_attribute] = STATE(1332), - [sym_language_attribute] = STATE(1332), + [sym__qmd_attribute] = STATE(1305), + [sym_raw_attribute] = STATE(1305), + [sym_commonmark_attribute] = STATE(1305), + [sym_language_attribute] = STATE(1305), [sym__backslash_escape] = ACTIONS(4201), [sym_entity_reference] = ACTIONS(4201), [sym_numeric_character_reference] = ACTIONS(4201), @@ -83183,10 +83182,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(534)] = { - [sym__qmd_attribute] = STATE(1335), - [sym_raw_attribute] = STATE(1335), - [sym_commonmark_attribute] = STATE(1335), - [sym_language_attribute] = STATE(1335), + [sym__qmd_attribute] = STATE(1310), + [sym_raw_attribute] = STATE(1310), + [sym_commonmark_attribute] = STATE(1310), + [sym_language_attribute] = STATE(1310), [sym__backslash_escape] = ACTIONS(4205), [sym_entity_reference] = ACTIONS(4205), [sym_numeric_character_reference] = ACTIONS(4205), @@ -83254,10 +83253,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4205), }, [STATE(535)] = { - [sym__qmd_attribute] = STATE(1364), - [sym_raw_attribute] = STATE(1364), - [sym_commonmark_attribute] = STATE(1364), - [sym_language_attribute] = STATE(1364), + [sym__qmd_attribute] = STATE(1337), + [sym_raw_attribute] = STATE(1337), + [sym_commonmark_attribute] = STATE(1337), + [sym_language_attribute] = STATE(1337), [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), [sym_numeric_character_reference] = ACTIONS(4209), @@ -83325,10 +83324,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, [STATE(536)] = { - [sym__qmd_attribute] = STATE(1371), - [sym_raw_attribute] = STATE(1371), - [sym_commonmark_attribute] = STATE(1371), - [sym_language_attribute] = STATE(1371), + [sym__qmd_attribute] = STATE(1348), + [sym_raw_attribute] = STATE(1348), + [sym_commonmark_attribute] = STATE(1348), + [sym_language_attribute] = STATE(1348), [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), [sym_numeric_character_reference] = ACTIONS(4213), @@ -83396,10 +83395,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, [STATE(537)] = { - [sym__qmd_attribute] = STATE(1385), - [sym_raw_attribute] = STATE(1385), - [sym_commonmark_attribute] = STATE(1385), - [sym_language_attribute] = STATE(1385), + [sym__qmd_attribute] = STATE(1372), + [sym_raw_attribute] = STATE(1372), + [sym_commonmark_attribute] = STATE(1372), + [sym_language_attribute] = STATE(1372), [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -83467,10 +83466,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, [STATE(538)] = { - [sym__qmd_attribute] = STATE(1387), - [sym_raw_attribute] = STATE(1387), - [sym_commonmark_attribute] = STATE(1387), - [sym_language_attribute] = STATE(1387), + [sym__qmd_attribute] = STATE(1378), + [sym_raw_attribute] = STATE(1378), + [sym_commonmark_attribute] = STATE(1378), + [sym_language_attribute] = STATE(1378), [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -83538,10 +83537,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, [STATE(539)] = { - [sym__qmd_attribute] = STATE(1392), - [sym_raw_attribute] = STATE(1392), - [sym_commonmark_attribute] = STATE(1392), - [sym_language_attribute] = STATE(1392), + [sym__qmd_attribute] = STATE(1386), + [sym_raw_attribute] = STATE(1386), + [sym_commonmark_attribute] = STATE(1386), + [sym_language_attribute] = STATE(1386), [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -83609,10 +83608,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, [STATE(540)] = { - [sym__qmd_attribute] = STATE(1396), - [sym_raw_attribute] = STATE(1396), - [sym_commonmark_attribute] = STATE(1396), - [sym_language_attribute] = STATE(1396), + [sym__qmd_attribute] = STATE(1388), + [sym_raw_attribute] = STATE(1388), + [sym_commonmark_attribute] = STATE(1388), + [sym_language_attribute] = STATE(1388), [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -83680,10 +83679,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, [STATE(541)] = { - [sym__qmd_attribute] = STATE(1408), - [sym_raw_attribute] = STATE(1408), - [sym_commonmark_attribute] = STATE(1408), - [sym_language_attribute] = STATE(1408), + [sym__qmd_attribute] = STATE(1390), + [sym_raw_attribute] = STATE(1390), + [sym_commonmark_attribute] = STATE(1390), + [sym_language_attribute] = STATE(1390), [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -83751,10 +83750,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, [STATE(542)] = { - [sym__qmd_attribute] = STATE(1410), - [sym_raw_attribute] = STATE(1410), - [sym_commonmark_attribute] = STATE(1410), - [sym_language_attribute] = STATE(1410), + [sym__qmd_attribute] = STATE(1393), + [sym_raw_attribute] = STATE(1393), + [sym_commonmark_attribute] = STATE(1393), + [sym_language_attribute] = STATE(1393), [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -83822,10 +83821,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, [STATE(543)] = { - [sym__qmd_attribute] = STATE(1411), - [sym_raw_attribute] = STATE(1411), - [sym_commonmark_attribute] = STATE(1411), - [sym_language_attribute] = STATE(1411), + [sym__qmd_attribute] = STATE(1396), + [sym_raw_attribute] = STATE(1396), + [sym_commonmark_attribute] = STATE(1396), + [sym_language_attribute] = STATE(1396), [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -83893,10 +83892,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, [STATE(544)] = { - [sym__qmd_attribute] = STATE(1415), - [sym_raw_attribute] = STATE(1415), - [sym_commonmark_attribute] = STATE(1415), - [sym_language_attribute] = STATE(1415), + [sym__qmd_attribute] = STATE(1405), + [sym_raw_attribute] = STATE(1405), + [sym_commonmark_attribute] = STATE(1405), + [sym_language_attribute] = STATE(1405), [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -83964,223 +83963,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, [STATE(545)] = { - [sym__qmd_attribute] = STATE(1504), - [sym_raw_attribute] = STATE(1504), - [sym_commonmark_attribute] = STATE(1504), - [sym_language_attribute] = STATE(1504), - [sym__backslash_escape] = ACTIONS(4257), - [sym_entity_reference] = ACTIONS(4257), - [sym_numeric_character_reference] = ACTIONS(4257), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4257), - [anon_sym_BANG] = ACTIONS(4257), - [anon_sym_DQUOTE] = ACTIONS(4257), - [anon_sym_POUND] = ACTIONS(4257), - [anon_sym_DOLLAR] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4257), - [anon_sym_AMP] = ACTIONS(4259), - [anon_sym_SQUOTE] = ACTIONS(4257), - [anon_sym_PLUS] = ACTIONS(4257), - [anon_sym_COMMA] = ACTIONS(4257), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_DOT] = ACTIONS(4259), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_COLON] = ACTIONS(4257), - [anon_sym_SEMI] = ACTIONS(4257), - [anon_sym_EQ] = ACTIONS(4257), - [anon_sym_QMARK] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_BSLASH] = ACTIONS(4259), - [anon_sym_CARET] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4257), + [sym__qmd_attribute] = STATE(1499), + [sym_raw_attribute] = STATE(1499), + [sym_commonmark_attribute] = STATE(1499), + [sym_language_attribute] = STATE(1499), + [sym__backslash_escape] = ACTIONS(4251), + [sym_entity_reference] = ACTIONS(4251), + [sym_numeric_character_reference] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_DQUOTE] = ACTIONS(4251), + [anon_sym_POUND] = ACTIONS(4251), + [anon_sym_DOLLAR] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_COMMA] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_COLON] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4251), + [anon_sym_QMARK] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_BSLASH] = ACTIONS(4253), + [anon_sym_CARET] = ACTIONS(4253), + [anon_sym_BQUOTE] = ACTIONS(4251), [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_PIPE] = ACTIONS(4257), - [anon_sym_TILDE] = ACTIONS(4257), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), [anon_sym_LPAREN] = ACTIONS(4297), - [anon_sym_RPAREN] = ACTIONS(4257), - [sym__newline_token] = ACTIONS(4257), - [aux_sym_insert_token1] = ACTIONS(4257), - [aux_sym_delete_token1] = ACTIONS(4257), - [aux_sym_highlight_token1] = ACTIONS(4257), - [aux_sym_edit_comment_token1] = ACTIONS(4257), - [anon_sym_CARET_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_CARET] = ACTIONS(4257), - [sym_uri_autolink] = ACTIONS(4257), - [sym_email_autolink] = ACTIONS(4257), - [sym__whitespace_ge_2] = ACTIONS(4257), - [aux_sym__whitespace_token1] = ACTIONS(4259), - [sym__word_no_digit] = ACTIONS(4257), - [sym__digits] = ACTIONS(4257), - [anon_sym_DASH_DASH] = ACTIONS(4259), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4257), - [sym__code_span_start] = ACTIONS(4257), - [sym__emphasis_open_star] = ACTIONS(4257), - [sym__emphasis_open_underscore] = ACTIONS(4257), - [sym__emphasis_close_underscore] = ACTIONS(4257), - [sym__strikeout_open] = ACTIONS(4257), - [sym__latex_span_start] = ACTIONS(4257), - [sym__single_quote_open] = ACTIONS(4257), - [sym__double_quote_open] = ACTIONS(4257), - [sym__superscript_open] = ACTIONS(4257), - [sym__subscript_open] = ACTIONS(4257), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4257), - [sym__cite_author_in_text] = ACTIONS(4257), - [sym__cite_suppress_author] = ACTIONS(4257), - [sym__shortcode_open_escaped] = ACTIONS(4257), - [sym__shortcode_open] = ACTIONS(4257), - [sym__unclosed_span] = ACTIONS(4257), - [sym__strong_emphasis_open_star] = ACTIONS(4257), - [sym__strong_emphasis_open_underscore] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4251), + [sym__newline_token] = ACTIONS(4251), + [aux_sym_insert_token1] = ACTIONS(4251), + [aux_sym_delete_token1] = ACTIONS(4251), + [aux_sym_highlight_token1] = ACTIONS(4251), + [aux_sym_edit_comment_token1] = ACTIONS(4251), + [anon_sym_CARET_LBRACK] = ACTIONS(4251), + [anon_sym_LBRACK_CARET] = ACTIONS(4251), + [sym_uri_autolink] = ACTIONS(4251), + [sym_email_autolink] = ACTIONS(4251), + [sym__whitespace_ge_2] = ACTIONS(4251), + [aux_sym__whitespace_token1] = ACTIONS(4253), + [sym__word_no_digit] = ACTIONS(4251), + [sym__digits] = ACTIONS(4251), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4251), + [sym__code_span_start] = ACTIONS(4251), + [sym__emphasis_open_star] = ACTIONS(4251), + [sym__emphasis_open_underscore] = ACTIONS(4251), + [sym__emphasis_close_underscore] = ACTIONS(4251), + [sym__strikeout_open] = ACTIONS(4251), + [sym__latex_span_start] = ACTIONS(4251), + [sym__single_quote_open] = ACTIONS(4251), + [sym__double_quote_open] = ACTIONS(4251), + [sym__superscript_open] = ACTIONS(4251), + [sym__subscript_open] = ACTIONS(4251), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4251), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4251), + [sym__cite_author_in_text] = ACTIONS(4251), + [sym__cite_suppress_author] = ACTIONS(4251), + [sym__shortcode_open_escaped] = ACTIONS(4251), + [sym__shortcode_open] = ACTIONS(4251), + [sym__unclosed_span] = ACTIONS(4251), + [sym__strong_emphasis_open_star] = ACTIONS(4251), + [sym__strong_emphasis_open_underscore] = ACTIONS(4251), }, [STATE(546)] = { - [sym__qmd_attribute] = STATE(1505), - [sym_raw_attribute] = STATE(1505), - [sym_commonmark_attribute] = STATE(1505), - [sym_language_attribute] = STATE(1505), - [sym__backslash_escape] = ACTIONS(4267), - [sym_entity_reference] = ACTIONS(4267), - [sym_numeric_character_reference] = ACTIONS(4267), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4267), - [anon_sym_BANG] = ACTIONS(4267), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_POUND] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_PERCENT] = ACTIONS(4267), - [anon_sym_AMP] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4267), - [anon_sym_PLUS] = ACTIONS(4267), - [anon_sym_COMMA] = ACTIONS(4267), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4267), - [anon_sym_COLON] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4267), - [anon_sym_EQ] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4267), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_BSLASH] = ACTIONS(4269), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4267), + [sym__qmd_attribute] = STATE(1500), + [sym_raw_attribute] = STATE(1500), + [sym_commonmark_attribute] = STATE(1500), + [sym_language_attribute] = STATE(1500), + [sym__backslash_escape] = ACTIONS(4263), + [sym_entity_reference] = ACTIONS(4263), + [sym_numeric_character_reference] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4265), + [anon_sym_GT] = ACTIONS(4263), + [anon_sym_BANG] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(4263), + [anon_sym_DOLLAR] = ACTIONS(4263), + [anon_sym_PERCENT] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4265), + [anon_sym_SQUOTE] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_COMMA] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_COLON] = ACTIONS(4263), + [anon_sym_SEMI] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_BSLASH] = ACTIONS(4265), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_BQUOTE] = ACTIONS(4263), [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_PIPE] = ACTIONS(4267), - [anon_sym_TILDE] = ACTIONS(4267), - [anon_sym_LPAREN] = ACTIONS(4267), - [anon_sym_RPAREN] = ACTIONS(4267), - [sym__newline_token] = ACTIONS(4267), - [aux_sym_insert_token1] = ACTIONS(4267), - [aux_sym_delete_token1] = ACTIONS(4267), - [aux_sym_highlight_token1] = ACTIONS(4267), - [aux_sym_edit_comment_token1] = ACTIONS(4267), - [anon_sym_CARET_LBRACK] = ACTIONS(4267), - [anon_sym_LBRACK_CARET] = ACTIONS(4267), - [sym_uri_autolink] = ACTIONS(4267), - [sym_email_autolink] = ACTIONS(4267), - [sym__whitespace_ge_2] = ACTIONS(4267), - [aux_sym__whitespace_token1] = ACTIONS(4269), - [sym__word_no_digit] = ACTIONS(4267), - [sym__digits] = ACTIONS(4267), - [anon_sym_DASH_DASH] = ACTIONS(4269), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), - [sym__code_span_start] = ACTIONS(4267), - [sym__emphasis_open_star] = ACTIONS(4267), - [sym__emphasis_open_underscore] = ACTIONS(4267), - [sym__emphasis_close_underscore] = ACTIONS(4267), - [sym__strikeout_open] = ACTIONS(4267), - [sym__latex_span_start] = ACTIONS(4267), - [sym__single_quote_open] = ACTIONS(4267), - [sym__double_quote_open] = ACTIONS(4267), - [sym__superscript_open] = ACTIONS(4267), - [sym__subscript_open] = ACTIONS(4267), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), - [sym__cite_author_in_text] = ACTIONS(4267), - [sym__cite_suppress_author] = ACTIONS(4267), - [sym__shortcode_open_escaped] = ACTIONS(4267), - [sym__shortcode_open] = ACTIONS(4267), - [sym__unclosed_span] = ACTIONS(4267), - [sym__strong_emphasis_open_star] = ACTIONS(4267), - [sym__strong_emphasis_open_underscore] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4263), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym_RPAREN] = ACTIONS(4263), + [sym__newline_token] = ACTIONS(4263), + [aux_sym_insert_token1] = ACTIONS(4263), + [aux_sym_delete_token1] = ACTIONS(4263), + [aux_sym_highlight_token1] = ACTIONS(4263), + [aux_sym_edit_comment_token1] = ACTIONS(4263), + [anon_sym_CARET_LBRACK] = ACTIONS(4263), + [anon_sym_LBRACK_CARET] = ACTIONS(4263), + [sym_uri_autolink] = ACTIONS(4263), + [sym_email_autolink] = ACTIONS(4263), + [sym__whitespace_ge_2] = ACTIONS(4263), + [aux_sym__whitespace_token1] = ACTIONS(4265), + [sym__word_no_digit] = ACTIONS(4263), + [sym__digits] = ACTIONS(4263), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), + [sym__code_span_start] = ACTIONS(4263), + [sym__emphasis_open_star] = ACTIONS(4263), + [sym__emphasis_open_underscore] = ACTIONS(4263), + [sym__emphasis_close_underscore] = ACTIONS(4263), + [sym__strikeout_open] = ACTIONS(4263), + [sym__latex_span_start] = ACTIONS(4263), + [sym__single_quote_open] = ACTIONS(4263), + [sym__double_quote_open] = ACTIONS(4263), + [sym__superscript_open] = ACTIONS(4263), + [sym__subscript_open] = ACTIONS(4263), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), + [sym__cite_author_in_text] = ACTIONS(4263), + [sym__cite_suppress_author] = ACTIONS(4263), + [sym__shortcode_open_escaped] = ACTIONS(4263), + [sym__shortcode_open] = ACTIONS(4263), + [sym__unclosed_span] = ACTIONS(4263), + [sym__strong_emphasis_open_star] = ACTIONS(4263), + [sym__strong_emphasis_open_underscore] = ACTIONS(4263), }, [STATE(547)] = { - [sym__qmd_attribute] = STATE(1264), - [sym_raw_attribute] = STATE(1264), - [sym_commonmark_attribute] = STATE(1264), - [sym_language_attribute] = STATE(1264), - [sym__backslash_escape] = ACTIONS(4217), - [sym_entity_reference] = ACTIONS(4217), - [sym_numeric_character_reference] = ACTIONS(4217), - [anon_sym_LT] = ACTIONS(4219), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(4217), - [anon_sym_POUND] = ACTIONS(4217), - [anon_sym_DOLLAR] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_AMP] = ACTIONS(4219), - [anon_sym_SQUOTE] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_COMMA] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4219), - [anon_sym_DOT] = ACTIONS(4219), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_COLON] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4217), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_BSLASH] = ACTIONS(4219), - [anon_sym_CARET] = ACTIONS(4219), - [anon_sym_BQUOTE] = ACTIONS(4217), - [anon_sym_LBRACE] = ACTIONS(4255), - [anon_sym_PIPE] = ACTIONS(4217), - [anon_sym_TILDE] = ACTIONS(4217), - [anon_sym_LPAREN] = ACTIONS(4217), - [anon_sym_RPAREN] = ACTIONS(4217), - [sym__newline_token] = ACTIONS(4217), - [aux_sym_insert_token1] = ACTIONS(4217), - [aux_sym_delete_token1] = ACTIONS(4217), - [aux_sym_highlight_token1] = ACTIONS(4217), - [aux_sym_edit_comment_token1] = ACTIONS(4217), - [anon_sym_CARET_LBRACK] = ACTIONS(4217), - [anon_sym_LBRACK_CARET] = ACTIONS(4217), - [sym_uri_autolink] = ACTIONS(4217), - [sym_email_autolink] = ACTIONS(4217), - [sym__whitespace_ge_2] = ACTIONS(4217), - [aux_sym__whitespace_token1] = ACTIONS(4219), - [sym__word_no_digit] = ACTIONS(4217), - [sym__digits] = ACTIONS(4217), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4217), - [sym__code_span_start] = ACTIONS(4217), - [sym__emphasis_open_star] = ACTIONS(4217), - [sym__emphasis_open_underscore] = ACTIONS(4217), - [sym__strikeout_open] = ACTIONS(4217), - [sym__latex_span_start] = ACTIONS(4217), - [sym__single_quote_open] = ACTIONS(4217), - [sym__double_quote_open] = ACTIONS(4217), - [sym__superscript_open] = ACTIONS(4217), - [sym__subscript_open] = ACTIONS(4217), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4217), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4217), - [sym__cite_author_in_text] = ACTIONS(4217), - [sym__cite_suppress_author] = ACTIONS(4217), - [sym__shortcode_open_escaped] = ACTIONS(4217), - [sym__shortcode_open] = ACTIONS(4217), - [sym__unclosed_span] = ACTIONS(4217), - [sym__strong_emphasis_open_star] = ACTIONS(4217), - [sym__strong_emphasis_open_underscore] = ACTIONS(4217), - [sym__strong_emphasis_close_underscore] = ACTIONS(4217), + [sym__qmd_attribute] = STATE(1265), + [sym_raw_attribute] = STATE(1265), + [sym_commonmark_attribute] = STATE(1265), + [sym_language_attribute] = STATE(1265), + [sym__backslash_escape] = ACTIONS(4221), + [sym_entity_reference] = ACTIONS(4221), + [sym_numeric_character_reference] = ACTIONS(4221), + [anon_sym_LT] = ACTIONS(4223), + [anon_sym_GT] = ACTIONS(4221), + [anon_sym_BANG] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4221), + [anon_sym_POUND] = ACTIONS(4221), + [anon_sym_DOLLAR] = ACTIONS(4221), + [anon_sym_PERCENT] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_SQUOTE] = ACTIONS(4221), + [anon_sym_PLUS] = ACTIONS(4221), + [anon_sym_COMMA] = ACTIONS(4221), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_DOT] = ACTIONS(4223), + [anon_sym_SLASH] = ACTIONS(4221), + [anon_sym_COLON] = ACTIONS(4221), + [anon_sym_SEMI] = ACTIONS(4221), + [anon_sym_EQ] = ACTIONS(4221), + [anon_sym_QMARK] = ACTIONS(4221), + [anon_sym_LBRACK] = ACTIONS(4223), + [anon_sym_BSLASH] = ACTIONS(4223), + [anon_sym_CARET] = ACTIONS(4223), + [anon_sym_BQUOTE] = ACTIONS(4221), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4221), + [anon_sym_TILDE] = ACTIONS(4221), + [anon_sym_LPAREN] = ACTIONS(4221), + [anon_sym_RPAREN] = ACTIONS(4221), + [sym__newline_token] = ACTIONS(4221), + [aux_sym_insert_token1] = ACTIONS(4221), + [aux_sym_delete_token1] = ACTIONS(4221), + [aux_sym_highlight_token1] = ACTIONS(4221), + [aux_sym_edit_comment_token1] = ACTIONS(4221), + [anon_sym_CARET_LBRACK] = ACTIONS(4221), + [anon_sym_LBRACK_CARET] = ACTIONS(4221), + [sym_uri_autolink] = ACTIONS(4221), + [sym_email_autolink] = ACTIONS(4221), + [sym__whitespace_ge_2] = ACTIONS(4221), + [aux_sym__whitespace_token1] = ACTIONS(4223), + [sym__word_no_digit] = ACTIONS(4221), + [sym__digits] = ACTIONS(4221), + [anon_sym_DASH_DASH] = ACTIONS(4223), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4221), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4221), + [sym__code_span_start] = ACTIONS(4221), + [sym__emphasis_open_star] = ACTIONS(4221), + [sym__emphasis_open_underscore] = ACTIONS(4221), + [sym__strikeout_open] = ACTIONS(4221), + [sym__latex_span_start] = ACTIONS(4221), + [sym__single_quote_open] = ACTIONS(4221), + [sym__double_quote_open] = ACTIONS(4221), + [sym__superscript_open] = ACTIONS(4221), + [sym__subscript_open] = ACTIONS(4221), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4221), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4221), + [sym__cite_author_in_text] = ACTIONS(4221), + [sym__cite_suppress_author] = ACTIONS(4221), + [sym__shortcode_open_escaped] = ACTIONS(4221), + [sym__shortcode_open] = ACTIONS(4221), + [sym__unclosed_span] = ACTIONS(4221), + [sym__strong_emphasis_open_star] = ACTIONS(4221), + [sym__strong_emphasis_open_underscore] = ACTIONS(4221), + [sym__strong_emphasis_close_underscore] = ACTIONS(4221), }, [STATE(548)] = { - [sym__qmd_attribute] = STATE(1506), - [sym_raw_attribute] = STATE(1506), - [sym_commonmark_attribute] = STATE(1506), - [sym_language_attribute] = STATE(1506), + [sym__qmd_attribute] = STATE(1501), + [sym_raw_attribute] = STATE(1501), + [sym_commonmark_attribute] = STATE(1501), + [sym_language_attribute] = STATE(1501), [sym__backslash_escape] = ACTIONS(4283), [sym_entity_reference] = ACTIONS(4283), [sym_numeric_character_reference] = ACTIONS(4283), @@ -84248,10 +84247,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4283), }, [STATE(549)] = { - [sym__qmd_attribute] = STATE(1518), - [sym_raw_attribute] = STATE(1518), - [sym_commonmark_attribute] = STATE(1518), - [sym_language_attribute] = STATE(1518), + [sym__qmd_attribute] = STATE(1513), + [sym_raw_attribute] = STATE(1513), + [sym_commonmark_attribute] = STATE(1513), + [sym_language_attribute] = STATE(1513), [sym__backslash_escape] = ACTIONS(4181), [sym_entity_reference] = ACTIONS(4181), [sym_numeric_character_reference] = ACTIONS(4181), @@ -84319,152 +84318,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, [STATE(550)] = { - [sym__qmd_attribute] = STATE(1521), - [sym_raw_attribute] = STATE(1521), - [sym_commonmark_attribute] = STATE(1521), - [sym_language_attribute] = STATE(1521), - [sym__backslash_escape] = ACTIONS(4263), - [sym_entity_reference] = ACTIONS(4263), - [sym_numeric_character_reference] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(4265), - [anon_sym_GT] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4263), - [anon_sym_POUND] = ACTIONS(4263), - [anon_sym_DOLLAR] = ACTIONS(4263), - [anon_sym_PERCENT] = ACTIONS(4263), - [anon_sym_AMP] = ACTIONS(4265), - [anon_sym_SQUOTE] = ACTIONS(4263), - [anon_sym_PLUS] = ACTIONS(4263), - [anon_sym_COMMA] = ACTIONS(4263), - [anon_sym_DASH] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4265), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_COLON] = ACTIONS(4263), - [anon_sym_SEMI] = ACTIONS(4263), - [anon_sym_EQ] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4263), - [anon_sym_LBRACK] = ACTIONS(4265), - [anon_sym_BSLASH] = ACTIONS(4265), - [anon_sym_CARET] = ACTIONS(4265), - [anon_sym_BQUOTE] = ACTIONS(4263), + [sym__qmd_attribute] = STATE(1516), + [sym_raw_attribute] = STATE(1516), + [sym_commonmark_attribute] = STATE(1516), + [sym_language_attribute] = STATE(1516), + [sym__backslash_escape] = ACTIONS(4259), + [sym_entity_reference] = ACTIONS(4259), + [sym_numeric_character_reference] = ACTIONS(4259), + [anon_sym_LT] = ACTIONS(4261), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + [anon_sym_SQUOTE] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_COMMA] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_DOT] = ACTIONS(4261), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_QMARK] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_BSLASH] = ACTIONS(4261), + [anon_sym_CARET] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4259), [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_PIPE] = ACTIONS(4263), - [anon_sym_TILDE] = ACTIONS(4263), - [anon_sym_LPAREN] = ACTIONS(4263), - [anon_sym_RPAREN] = ACTIONS(4263), - [sym__newline_token] = ACTIONS(4263), - [aux_sym_insert_token1] = ACTIONS(4263), - [aux_sym_delete_token1] = ACTIONS(4263), - [aux_sym_highlight_token1] = ACTIONS(4263), - [aux_sym_edit_comment_token1] = ACTIONS(4263), - [anon_sym_CARET_LBRACK] = ACTIONS(4263), - [anon_sym_LBRACK_CARET] = ACTIONS(4263), - [sym_uri_autolink] = ACTIONS(4263), - [sym_email_autolink] = ACTIONS(4263), - [sym__whitespace_ge_2] = ACTIONS(4263), - [aux_sym__whitespace_token1] = ACTIONS(4265), - [sym__word_no_digit] = ACTIONS(4263), - [sym__digits] = ACTIONS(4263), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), - [sym__code_span_start] = ACTIONS(4263), - [sym__emphasis_open_star] = ACTIONS(4263), - [sym__emphasis_open_underscore] = ACTIONS(4263), - [sym__emphasis_close_underscore] = ACTIONS(4263), - [sym__strikeout_open] = ACTIONS(4263), - [sym__latex_span_start] = ACTIONS(4263), - [sym__single_quote_open] = ACTIONS(4263), - [sym__double_quote_open] = ACTIONS(4263), - [sym__superscript_open] = ACTIONS(4263), - [sym__subscript_open] = ACTIONS(4263), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), - [sym__cite_author_in_text] = ACTIONS(4263), - [sym__cite_suppress_author] = ACTIONS(4263), - [sym__shortcode_open_escaped] = ACTIONS(4263), - [sym__shortcode_open] = ACTIONS(4263), - [sym__unclosed_span] = ACTIONS(4263), - [sym__strong_emphasis_open_star] = ACTIONS(4263), - [sym__strong_emphasis_open_underscore] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym_RPAREN] = ACTIONS(4259), + [sym__newline_token] = ACTIONS(4259), + [aux_sym_insert_token1] = ACTIONS(4259), + [aux_sym_delete_token1] = ACTIONS(4259), + [aux_sym_highlight_token1] = ACTIONS(4259), + [aux_sym_edit_comment_token1] = ACTIONS(4259), + [anon_sym_CARET_LBRACK] = ACTIONS(4259), + [anon_sym_LBRACK_CARET] = ACTIONS(4259), + [sym_uri_autolink] = ACTIONS(4259), + [sym_email_autolink] = ACTIONS(4259), + [sym__whitespace_ge_2] = ACTIONS(4259), + [aux_sym__whitespace_token1] = ACTIONS(4261), + [sym__word_no_digit] = ACTIONS(4259), + [sym__digits] = ACTIONS(4259), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4259), + [sym__code_span_start] = ACTIONS(4259), + [sym__emphasis_open_star] = ACTIONS(4259), + [sym__emphasis_open_underscore] = ACTIONS(4259), + [sym__emphasis_close_underscore] = ACTIONS(4259), + [sym__strikeout_open] = ACTIONS(4259), + [sym__latex_span_start] = ACTIONS(4259), + [sym__single_quote_open] = ACTIONS(4259), + [sym__double_quote_open] = ACTIONS(4259), + [sym__superscript_open] = ACTIONS(4259), + [sym__subscript_open] = ACTIONS(4259), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4259), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4259), + [sym__cite_author_in_text] = ACTIONS(4259), + [sym__cite_suppress_author] = ACTIONS(4259), + [sym__shortcode_open_escaped] = ACTIONS(4259), + [sym__shortcode_open] = ACTIONS(4259), + [sym__unclosed_span] = ACTIONS(4259), + [sym__strong_emphasis_open_star] = ACTIONS(4259), + [sym__strong_emphasis_open_underscore] = ACTIONS(4259), }, [STATE(551)] = { - [sym__qmd_attribute] = STATE(1522), - [sym_raw_attribute] = STATE(1522), - [sym_commonmark_attribute] = STATE(1522), - [sym_language_attribute] = STATE(1522), - [sym__backslash_escape] = ACTIONS(4271), - [sym_entity_reference] = ACTIONS(4271), - [sym_numeric_character_reference] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4273), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_POUND] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4273), - [anon_sym_SQUOTE] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4273), - [anon_sym_SLASH] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_EQ] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(4271), - [anon_sym_LBRACK] = ACTIONS(4273), - [anon_sym_BSLASH] = ACTIONS(4273), - [anon_sym_CARET] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4271), + [sym__qmd_attribute] = STATE(1517), + [sym_raw_attribute] = STATE(1517), + [sym_commonmark_attribute] = STATE(1517), + [sym_language_attribute] = STATE(1517), + [sym__backslash_escape] = ACTIONS(4267), + [sym_entity_reference] = ACTIONS(4267), + [sym_numeric_character_reference] = ACTIONS(4267), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_DQUOTE] = ACTIONS(4267), + [anon_sym_POUND] = ACTIONS(4267), + [anon_sym_DOLLAR] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_SQUOTE] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_COMMA] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4269), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_COLON] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_QMARK] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_BSLASH] = ACTIONS(4269), + [anon_sym_CARET] = ACTIONS(4269), + [anon_sym_BQUOTE] = ACTIONS(4267), [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_TILDE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [sym__newline_token] = ACTIONS(4271), - [aux_sym_insert_token1] = ACTIONS(4271), - [aux_sym_delete_token1] = ACTIONS(4271), - [aux_sym_highlight_token1] = ACTIONS(4271), - [aux_sym_edit_comment_token1] = ACTIONS(4271), - [anon_sym_CARET_LBRACK] = ACTIONS(4271), - [anon_sym_LBRACK_CARET] = ACTIONS(4271), - [sym_uri_autolink] = ACTIONS(4271), - [sym_email_autolink] = ACTIONS(4271), - [sym__whitespace_ge_2] = ACTIONS(4271), - [aux_sym__whitespace_token1] = ACTIONS(4273), - [sym__word_no_digit] = ACTIONS(4271), - [sym__digits] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4273), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), - [sym__code_span_start] = ACTIONS(4271), - [sym__emphasis_open_star] = ACTIONS(4271), - [sym__emphasis_open_underscore] = ACTIONS(4271), - [sym__emphasis_close_underscore] = ACTIONS(4271), - [sym__strikeout_open] = ACTIONS(4271), - [sym__latex_span_start] = ACTIONS(4271), - [sym__single_quote_open] = ACTIONS(4271), - [sym__double_quote_open] = ACTIONS(4271), - [sym__superscript_open] = ACTIONS(4271), - [sym__subscript_open] = ACTIONS(4271), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), - [sym__cite_author_in_text] = ACTIONS(4271), - [sym__cite_suppress_author] = ACTIONS(4271), - [sym__shortcode_open_escaped] = ACTIONS(4271), - [sym__shortcode_open] = ACTIONS(4271), - [sym__unclosed_span] = ACTIONS(4271), - [sym__strong_emphasis_open_star] = ACTIONS(4271), - [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4267), + [anon_sym_TILDE] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_RPAREN] = ACTIONS(4267), + [sym__newline_token] = ACTIONS(4267), + [aux_sym_insert_token1] = ACTIONS(4267), + [aux_sym_delete_token1] = ACTIONS(4267), + [aux_sym_highlight_token1] = ACTIONS(4267), + [aux_sym_edit_comment_token1] = ACTIONS(4267), + [anon_sym_CARET_LBRACK] = ACTIONS(4267), + [anon_sym_LBRACK_CARET] = ACTIONS(4267), + [sym_uri_autolink] = ACTIONS(4267), + [sym_email_autolink] = ACTIONS(4267), + [sym__whitespace_ge_2] = ACTIONS(4267), + [aux_sym__whitespace_token1] = ACTIONS(4269), + [sym__word_no_digit] = ACTIONS(4267), + [sym__digits] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), + [sym__code_span_start] = ACTIONS(4267), + [sym__emphasis_open_star] = ACTIONS(4267), + [sym__emphasis_open_underscore] = ACTIONS(4267), + [sym__emphasis_close_underscore] = ACTIONS(4267), + [sym__strikeout_open] = ACTIONS(4267), + [sym__latex_span_start] = ACTIONS(4267), + [sym__single_quote_open] = ACTIONS(4267), + [sym__double_quote_open] = ACTIONS(4267), + [sym__superscript_open] = ACTIONS(4267), + [sym__subscript_open] = ACTIONS(4267), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), + [sym__cite_author_in_text] = ACTIONS(4267), + [sym__cite_suppress_author] = ACTIONS(4267), + [sym__shortcode_open_escaped] = ACTIONS(4267), + [sym__shortcode_open] = ACTIONS(4267), + [sym__unclosed_span] = ACTIONS(4267), + [sym__strong_emphasis_open_star] = ACTIONS(4267), + [sym__strong_emphasis_open_underscore] = ACTIONS(4267), }, [STATE(552)] = { - [sym__qmd_attribute] = STATE(1523), - [sym_raw_attribute] = STATE(1523), - [sym_commonmark_attribute] = STATE(1523), - [sym_language_attribute] = STATE(1523), + [sym__qmd_attribute] = STATE(1518), + [sym_raw_attribute] = STATE(1518), + [sym_commonmark_attribute] = STATE(1518), + [sym_language_attribute] = STATE(1518), + [sym__backslash_escape] = ACTIONS(4275), + [sym_entity_reference] = ACTIONS(4275), + [sym_numeric_character_reference] = ACTIONS(4275), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + [anon_sym_SQUOTE] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_COMMA] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4277), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_COLON] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_QMARK] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_BSLASH] = ACTIONS(4277), + [anon_sym_CARET] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_PIPE] = ACTIONS(4275), + [anon_sym_TILDE] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4275), + [anon_sym_RPAREN] = ACTIONS(4275), + [sym__newline_token] = ACTIONS(4275), + [aux_sym_insert_token1] = ACTIONS(4275), + [aux_sym_delete_token1] = ACTIONS(4275), + [aux_sym_highlight_token1] = ACTIONS(4275), + [aux_sym_edit_comment_token1] = ACTIONS(4275), + [anon_sym_CARET_LBRACK] = ACTIONS(4275), + [anon_sym_LBRACK_CARET] = ACTIONS(4275), + [sym_uri_autolink] = ACTIONS(4275), + [sym_email_autolink] = ACTIONS(4275), + [sym__whitespace_ge_2] = ACTIONS(4275), + [aux_sym__whitespace_token1] = ACTIONS(4277), + [sym__word_no_digit] = ACTIONS(4275), + [sym__digits] = ACTIONS(4275), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), + [sym__code_span_start] = ACTIONS(4275), + [sym__emphasis_open_star] = ACTIONS(4275), + [sym__emphasis_open_underscore] = ACTIONS(4275), + [sym__emphasis_close_underscore] = ACTIONS(4275), + [sym__strikeout_open] = ACTIONS(4275), + [sym__latex_span_start] = ACTIONS(4275), + [sym__single_quote_open] = ACTIONS(4275), + [sym__double_quote_open] = ACTIONS(4275), + [sym__superscript_open] = ACTIONS(4275), + [sym__subscript_open] = ACTIONS(4275), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), + [sym__cite_author_in_text] = ACTIONS(4275), + [sym__cite_suppress_author] = ACTIONS(4275), + [sym__shortcode_open_escaped] = ACTIONS(4275), + [sym__shortcode_open] = ACTIONS(4275), + [sym__unclosed_span] = ACTIONS(4275), + [sym__strong_emphasis_open_star] = ACTIONS(4275), + [sym__strong_emphasis_open_underscore] = ACTIONS(4275), + }, + [STATE(553)] = { + [sym__qmd_attribute] = STATE(1519), + [sym_raw_attribute] = STATE(1519), + [sym_commonmark_attribute] = STATE(1519), + [sym_language_attribute] = STATE(1519), [sym__backslash_escape] = ACTIONS(4287), [sym_entity_reference] = ACTIONS(4287), [sym_numeric_character_reference] = ACTIONS(4287), @@ -84531,7 +84601,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4287), [sym__strong_emphasis_open_underscore] = ACTIONS(4287), }, - [STATE(553)] = { + [STATE(554)] = { + [sym__qmd_attribute] = STATE(1269), + [sym_raw_attribute] = STATE(1269), + [sym_commonmark_attribute] = STATE(1269), + [sym_language_attribute] = STATE(1269), + [sym__backslash_escape] = ACTIONS(4225), + [sym_entity_reference] = ACTIONS(4225), + [sym_numeric_character_reference] = ACTIONS(4225), + [anon_sym_LT] = ACTIONS(4227), + [anon_sym_GT] = ACTIONS(4225), + [anon_sym_BANG] = ACTIONS(4225), + [anon_sym_DQUOTE] = ACTIONS(4225), + [anon_sym_POUND] = ACTIONS(4225), + [anon_sym_DOLLAR] = ACTIONS(4225), + [anon_sym_PERCENT] = ACTIONS(4225), + [anon_sym_AMP] = ACTIONS(4227), + [anon_sym_SQUOTE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_DOT] = ACTIONS(4227), + [anon_sym_SLASH] = ACTIONS(4225), + [anon_sym_COLON] = ACTIONS(4225), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_EQ] = ACTIONS(4225), + [anon_sym_QMARK] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4227), + [anon_sym_BSLASH] = ACTIONS(4227), + [anon_sym_CARET] = ACTIONS(4227), + [anon_sym_BQUOTE] = ACTIONS(4225), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_TILDE] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_RPAREN] = ACTIONS(4225), + [sym__newline_token] = ACTIONS(4225), + [aux_sym_insert_token1] = ACTIONS(4225), + [aux_sym_delete_token1] = ACTIONS(4225), + [aux_sym_highlight_token1] = ACTIONS(4225), + [aux_sym_edit_comment_token1] = ACTIONS(4225), + [anon_sym_CARET_LBRACK] = ACTIONS(4225), + [anon_sym_LBRACK_CARET] = ACTIONS(4225), + [sym_uri_autolink] = ACTIONS(4225), + [sym_email_autolink] = ACTIONS(4225), + [sym__whitespace_ge_2] = ACTIONS(4225), + [aux_sym__whitespace_token1] = ACTIONS(4227), + [sym__word_no_digit] = ACTIONS(4225), + [sym__digits] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4227), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4225), + [sym__code_span_start] = ACTIONS(4225), + [sym__emphasis_open_star] = ACTIONS(4225), + [sym__emphasis_open_underscore] = ACTIONS(4225), + [sym__strikeout_open] = ACTIONS(4225), + [sym__latex_span_start] = ACTIONS(4225), + [sym__single_quote_open] = ACTIONS(4225), + [sym__double_quote_open] = ACTIONS(4225), + [sym__superscript_open] = ACTIONS(4225), + [sym__subscript_open] = ACTIONS(4225), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4225), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4225), + [sym__cite_author_in_text] = ACTIONS(4225), + [sym__cite_suppress_author] = ACTIONS(4225), + [sym__shortcode_open_escaped] = ACTIONS(4225), + [sym__shortcode_open] = ACTIONS(4225), + [sym__unclosed_span] = ACTIONS(4225), + [sym__strong_emphasis_open_star] = ACTIONS(4225), + [sym__strong_emphasis_open_underscore] = ACTIONS(4225), + [sym__strong_emphasis_close_underscore] = ACTIONS(4225), + }, + [STATE(555)] = { [sym__qmd_attribute] = STATE(1524), [sym_raw_attribute] = STATE(1524), [sym_commonmark_attribute] = STATE(1524), @@ -84602,295 +84743,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4291), [sym__strong_emphasis_open_underscore] = ACTIONS(4291), }, - [STATE(554)] = { - [sym__qmd_attribute] = STATE(1266), - [sym_raw_attribute] = STATE(1266), - [sym_commonmark_attribute] = STATE(1266), - [sym_language_attribute] = STATE(1266), - [sym__backslash_escape] = ACTIONS(4221), - [sym_entity_reference] = ACTIONS(4221), - [sym_numeric_character_reference] = ACTIONS(4221), - [anon_sym_LT] = ACTIONS(4223), - [anon_sym_GT] = ACTIONS(4221), - [anon_sym_BANG] = ACTIONS(4221), - [anon_sym_DQUOTE] = ACTIONS(4221), - [anon_sym_POUND] = ACTIONS(4221), - [anon_sym_DOLLAR] = ACTIONS(4221), - [anon_sym_PERCENT] = ACTIONS(4221), - [anon_sym_AMP] = ACTIONS(4223), - [anon_sym_SQUOTE] = ACTIONS(4221), - [anon_sym_PLUS] = ACTIONS(4221), - [anon_sym_COMMA] = ACTIONS(4221), - [anon_sym_DASH] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4223), - [anon_sym_SLASH] = ACTIONS(4221), - [anon_sym_COLON] = ACTIONS(4221), - [anon_sym_SEMI] = ACTIONS(4221), - [anon_sym_EQ] = ACTIONS(4221), - [anon_sym_QMARK] = ACTIONS(4221), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_BSLASH] = ACTIONS(4223), - [anon_sym_CARET] = ACTIONS(4223), - [anon_sym_BQUOTE] = ACTIONS(4221), - [anon_sym_LBRACE] = ACTIONS(4255), - [anon_sym_PIPE] = ACTIONS(4221), - [anon_sym_TILDE] = ACTIONS(4221), - [anon_sym_LPAREN] = ACTIONS(4221), - [anon_sym_RPAREN] = ACTIONS(4221), - [sym__newline_token] = ACTIONS(4221), - [aux_sym_insert_token1] = ACTIONS(4221), - [aux_sym_delete_token1] = ACTIONS(4221), - [aux_sym_highlight_token1] = ACTIONS(4221), - [aux_sym_edit_comment_token1] = ACTIONS(4221), - [anon_sym_CARET_LBRACK] = ACTIONS(4221), - [anon_sym_LBRACK_CARET] = ACTIONS(4221), - [sym_uri_autolink] = ACTIONS(4221), - [sym_email_autolink] = ACTIONS(4221), - [sym__whitespace_ge_2] = ACTIONS(4221), - [aux_sym__whitespace_token1] = ACTIONS(4223), - [sym__word_no_digit] = ACTIONS(4221), - [sym__digits] = ACTIONS(4221), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4221), - [sym__code_span_start] = ACTIONS(4221), - [sym__emphasis_open_star] = ACTIONS(4221), - [sym__emphasis_open_underscore] = ACTIONS(4221), - [sym__strikeout_open] = ACTIONS(4221), - [sym__latex_span_start] = ACTIONS(4221), - [sym__single_quote_open] = ACTIONS(4221), - [sym__double_quote_open] = ACTIONS(4221), - [sym__superscript_open] = ACTIONS(4221), - [sym__subscript_open] = ACTIONS(4221), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4221), - [sym__cite_author_in_text] = ACTIONS(4221), - [sym__cite_suppress_author] = ACTIONS(4221), - [sym__shortcode_open_escaped] = ACTIONS(4221), - [sym__shortcode_open] = ACTIONS(4221), - [sym__unclosed_span] = ACTIONS(4221), - [sym__strong_emphasis_open_star] = ACTIONS(4221), - [sym__strong_emphasis_open_underscore] = ACTIONS(4221), - [sym__strong_emphasis_close_underscore] = ACTIONS(4221), + [STATE(556)] = { + [sym__qmd_attribute] = STATE(1528), + [sym_raw_attribute] = STATE(1528), + [sym_commonmark_attribute] = STATE(1528), + [sym_language_attribute] = STATE(1528), + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__emphasis_close_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), }, - [STATE(555)] = { + [STATE(557)] = { [sym__qmd_attribute] = STATE(1529), [sym_raw_attribute] = STATE(1529), [sym_commonmark_attribute] = STATE(1529), [sym_language_attribute] = STATE(1529), - [sym__backslash_escape] = ACTIONS(4249), - [sym_entity_reference] = ACTIONS(4249), - [sym_numeric_character_reference] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(4251), - [anon_sym_GT] = ACTIONS(4249), - [anon_sym_BANG] = ACTIONS(4249), - [anon_sym_DQUOTE] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(4249), - [anon_sym_PERCENT] = ACTIONS(4249), - [anon_sym_AMP] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4249), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_COMMA] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4251), - [anon_sym_DOT] = ACTIONS(4251), - [anon_sym_SLASH] = ACTIONS(4249), - [anon_sym_COLON] = ACTIONS(4249), - [anon_sym_SEMI] = ACTIONS(4249), - [anon_sym_EQ] = ACTIONS(4249), - [anon_sym_QMARK] = ACTIONS(4249), - [anon_sym_LBRACK] = ACTIONS(4251), - [anon_sym_BSLASH] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4251), - [anon_sym_BQUOTE] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_PIPE] = ACTIONS(4249), - [anon_sym_TILDE] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4249), - [anon_sym_RPAREN] = ACTIONS(4249), - [sym__newline_token] = ACTIONS(4249), - [aux_sym_insert_token1] = ACTIONS(4249), - [aux_sym_delete_token1] = ACTIONS(4249), - [aux_sym_highlight_token1] = ACTIONS(4249), - [aux_sym_edit_comment_token1] = ACTIONS(4249), - [anon_sym_CARET_LBRACK] = ACTIONS(4249), - [anon_sym_LBRACK_CARET] = ACTIONS(4249), - [sym_uri_autolink] = ACTIONS(4249), - [sym_email_autolink] = ACTIONS(4249), - [sym__whitespace_ge_2] = ACTIONS(4249), - [aux_sym__whitespace_token1] = ACTIONS(4251), - [sym__word_no_digit] = ACTIONS(4249), - [sym__digits] = ACTIONS(4249), - [anon_sym_DASH_DASH] = ACTIONS(4251), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4249), - [sym__code_span_start] = ACTIONS(4249), - [sym__emphasis_open_star] = ACTIONS(4249), - [sym__emphasis_open_underscore] = ACTIONS(4249), - [sym__emphasis_close_underscore] = ACTIONS(4249), - [sym__strikeout_open] = ACTIONS(4249), - [sym__latex_span_start] = ACTIONS(4249), - [sym__single_quote_open] = ACTIONS(4249), - [sym__double_quote_open] = ACTIONS(4249), - [sym__superscript_open] = ACTIONS(4249), - [sym__subscript_open] = ACTIONS(4249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4249), - [sym__cite_author_in_text] = ACTIONS(4249), - [sym__cite_suppress_author] = ACTIONS(4249), - [sym__shortcode_open_escaped] = ACTIONS(4249), - [sym__shortcode_open] = ACTIONS(4249), - [sym__unclosed_span] = ACTIONS(4249), - [sym__strong_emphasis_open_star] = ACTIONS(4249), - [sym__strong_emphasis_open_underscore] = ACTIONS(4249), - }, - [STATE(556)] = { - [sym__qmd_attribute] = STATE(1270), - [sym_raw_attribute] = STATE(1270), - [sym_commonmark_attribute] = STATE(1270), - [sym_language_attribute] = STATE(1270), - [sym__backslash_escape] = ACTIONS(4225), - [sym_entity_reference] = ACTIONS(4225), - [sym_numeric_character_reference] = ACTIONS(4225), - [anon_sym_LT] = ACTIONS(4227), - [anon_sym_GT] = ACTIONS(4225), - [anon_sym_BANG] = ACTIONS(4225), - [anon_sym_DQUOTE] = ACTIONS(4225), - [anon_sym_POUND] = ACTIONS(4225), - [anon_sym_DOLLAR] = ACTIONS(4225), - [anon_sym_PERCENT] = ACTIONS(4225), - [anon_sym_AMP] = ACTIONS(4227), - [anon_sym_SQUOTE] = ACTIONS(4225), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_COMMA] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4227), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_SLASH] = ACTIONS(4225), - [anon_sym_COLON] = ACTIONS(4225), - [anon_sym_SEMI] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_QMARK] = ACTIONS(4225), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_BSLASH] = ACTIONS(4227), - [anon_sym_CARET] = ACTIONS(4227), - [anon_sym_BQUOTE] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4255), - [anon_sym_PIPE] = ACTIONS(4225), - [anon_sym_TILDE] = ACTIONS(4225), - [anon_sym_LPAREN] = ACTIONS(4225), - [anon_sym_RPAREN] = ACTIONS(4225), - [sym__newline_token] = ACTIONS(4225), - [aux_sym_insert_token1] = ACTIONS(4225), - [aux_sym_delete_token1] = ACTIONS(4225), - [aux_sym_highlight_token1] = ACTIONS(4225), - [aux_sym_edit_comment_token1] = ACTIONS(4225), - [anon_sym_CARET_LBRACK] = ACTIONS(4225), - [anon_sym_LBRACK_CARET] = ACTIONS(4225), - [sym_uri_autolink] = ACTIONS(4225), - [sym_email_autolink] = ACTIONS(4225), - [sym__whitespace_ge_2] = ACTIONS(4225), - [aux_sym__whitespace_token1] = ACTIONS(4227), - [sym__word_no_digit] = ACTIONS(4225), - [sym__digits] = ACTIONS(4225), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4225), - [sym__code_span_start] = ACTIONS(4225), - [sym__emphasis_open_star] = ACTIONS(4225), - [sym__emphasis_open_underscore] = ACTIONS(4225), - [sym__strikeout_open] = ACTIONS(4225), - [sym__latex_span_start] = ACTIONS(4225), - [sym__single_quote_open] = ACTIONS(4225), - [sym__double_quote_open] = ACTIONS(4225), - [sym__superscript_open] = ACTIONS(4225), - [sym__subscript_open] = ACTIONS(4225), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4225), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4225), - [sym__cite_author_in_text] = ACTIONS(4225), - [sym__cite_suppress_author] = ACTIONS(4225), - [sym__shortcode_open_escaped] = ACTIONS(4225), - [sym__shortcode_open] = ACTIONS(4225), - [sym__unclosed_span] = ACTIONS(4225), - [sym__strong_emphasis_open_star] = ACTIONS(4225), - [sym__strong_emphasis_open_underscore] = ACTIONS(4225), - [sym__strong_emphasis_close_underscore] = ACTIONS(4225), - }, - [STATE(557)] = { - [sym__qmd_attribute] = STATE(1533), - [sym_raw_attribute] = STATE(1533), - [sym_commonmark_attribute] = STATE(1533), - [sym_language_attribute] = STATE(1533), - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__emphasis_close_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - }, - [STATE(558)] = { - [sym__qmd_attribute] = STATE(1534), - [sym_raw_attribute] = STATE(1534), - [sym_commonmark_attribute] = STATE(1534), - [sym_language_attribute] = STATE(1534), [sym__backslash_escape] = ACTIONS(4187), [sym_entity_reference] = ACTIONS(4187), [sym_numeric_character_reference] = ACTIONS(4187), @@ -84957,11 +84885,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4187), [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, - [STATE(559)] = { - [sym__qmd_attribute] = STATE(1535), - [sym_raw_attribute] = STATE(1535), - [sym_commonmark_attribute] = STATE(1535), - [sym_language_attribute] = STATE(1535), + [STATE(558)] = { + [sym__qmd_attribute] = STATE(1530), + [sym_raw_attribute] = STATE(1530), + [sym_commonmark_attribute] = STATE(1530), + [sym_language_attribute] = STATE(1530), [sym__backslash_escape] = ACTIONS(4193), [sym_entity_reference] = ACTIONS(4193), [sym_numeric_character_reference] = ACTIONS(4193), @@ -85028,11 +84956,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4193), [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, - [STATE(560)] = { - [sym__qmd_attribute] = STATE(1536), - [sym_raw_attribute] = STATE(1536), - [sym_commonmark_attribute] = STATE(1536), - [sym_language_attribute] = STATE(1536), + [STATE(559)] = { + [sym__qmd_attribute] = STATE(1531), + [sym_raw_attribute] = STATE(1531), + [sym_commonmark_attribute] = STATE(1531), + [sym_language_attribute] = STATE(1531), [sym__backslash_escape] = ACTIONS(4197), [sym_entity_reference] = ACTIONS(4197), [sym_numeric_character_reference] = ACTIONS(4197), @@ -85099,11 +85027,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4197), [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, - [STATE(561)] = { - [sym__qmd_attribute] = STATE(1542), - [sym_raw_attribute] = STATE(1542), - [sym_commonmark_attribute] = STATE(1542), - [sym_language_attribute] = STATE(1542), + [STATE(560)] = { + [sym__qmd_attribute] = STATE(1537), + [sym_raw_attribute] = STATE(1537), + [sym_commonmark_attribute] = STATE(1537), + [sym_language_attribute] = STATE(1537), [sym__backslash_escape] = ACTIONS(4201), [sym_entity_reference] = ACTIONS(4201), [sym_numeric_character_reference] = ACTIONS(4201), @@ -85170,11 +85098,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4201), [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, - [STATE(562)] = { - [sym__qmd_attribute] = STATE(1543), - [sym_raw_attribute] = STATE(1543), - [sym_commonmark_attribute] = STATE(1543), - [sym_language_attribute] = STATE(1543), + [STATE(561)] = { + [sym__qmd_attribute] = STATE(1538), + [sym_raw_attribute] = STATE(1538), + [sym_commonmark_attribute] = STATE(1538), + [sym_language_attribute] = STATE(1538), [sym__backslash_escape] = ACTIONS(4205), [sym_entity_reference] = ACTIONS(4205), [sym_numeric_character_reference] = ACTIONS(4205), @@ -85241,11 +85169,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4205), [sym__strong_emphasis_open_underscore] = ACTIONS(4205), }, - [STATE(563)] = { - [sym__qmd_attribute] = STATE(1550), - [sym_raw_attribute] = STATE(1550), - [sym_commonmark_attribute] = STATE(1550), - [sym_language_attribute] = STATE(1550), + [STATE(562)] = { + [sym__qmd_attribute] = STATE(1545), + [sym_raw_attribute] = STATE(1545), + [sym_commonmark_attribute] = STATE(1545), + [sym_language_attribute] = STATE(1545), [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), [sym_numeric_character_reference] = ACTIONS(4209), @@ -85312,11 +85240,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4209), [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, - [STATE(564)] = { - [sym__qmd_attribute] = STATE(1551), - [sym_raw_attribute] = STATE(1551), - [sym_commonmark_attribute] = STATE(1551), - [sym_language_attribute] = STATE(1551), + [STATE(563)] = { + [sym__qmd_attribute] = STATE(1546), + [sym_raw_attribute] = STATE(1546), + [sym_commonmark_attribute] = STATE(1546), + [sym_language_attribute] = STATE(1546), [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), [sym_numeric_character_reference] = ACTIONS(4213), @@ -85383,11 +85311,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4213), [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, - [STATE(565)] = { - [sym__qmd_attribute] = STATE(1557), - [sym_raw_attribute] = STATE(1557), - [sym_commonmark_attribute] = STATE(1557), - [sym_language_attribute] = STATE(1557), + [STATE(564)] = { + [sym__qmd_attribute] = STATE(1552), + [sym_raw_attribute] = STATE(1552), + [sym_commonmark_attribute] = STATE(1552), + [sym_language_attribute] = STATE(1552), [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -85454,11 +85382,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4217), [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, - [STATE(566)] = { - [sym__qmd_attribute] = STATE(1559), - [sym_raw_attribute] = STATE(1559), - [sym_commonmark_attribute] = STATE(1559), - [sym_language_attribute] = STATE(1559), + [STATE(565)] = { + [sym__qmd_attribute] = STATE(1553), + [sym_raw_attribute] = STATE(1553), + [sym_commonmark_attribute] = STATE(1553), + [sym_language_attribute] = STATE(1553), [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -85525,11 +85453,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4221), [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, - [STATE(567)] = { - [sym__qmd_attribute] = STATE(1563), - [sym_raw_attribute] = STATE(1563), - [sym_commonmark_attribute] = STATE(1563), - [sym_language_attribute] = STATE(1563), + [STATE(566)] = { + [sym__qmd_attribute] = STATE(1557), + [sym_raw_attribute] = STATE(1557), + [sym_commonmark_attribute] = STATE(1557), + [sym_language_attribute] = STATE(1557), [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -85596,11 +85524,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4225), [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, - [STATE(568)] = { - [sym__qmd_attribute] = STATE(1564), - [sym_raw_attribute] = STATE(1564), - [sym_commonmark_attribute] = STATE(1564), - [sym_language_attribute] = STATE(1564), + [STATE(567)] = { + [sym__qmd_attribute] = STATE(1559), + [sym_raw_attribute] = STATE(1559), + [sym_commonmark_attribute] = STATE(1559), + [sym_language_attribute] = STATE(1559), [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -85667,11 +85595,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4229), [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, - [STATE(569)] = { - [sym__qmd_attribute] = STATE(1566), - [sym_raw_attribute] = STATE(1566), - [sym_commonmark_attribute] = STATE(1566), - [sym_language_attribute] = STATE(1566), + [STATE(568)] = { + [sym__qmd_attribute] = STATE(1561), + [sym_raw_attribute] = STATE(1561), + [sym_commonmark_attribute] = STATE(1561), + [sym_language_attribute] = STATE(1561), [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -85738,11 +85666,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4233), [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, - [STATE(570)] = { - [sym__qmd_attribute] = STATE(1567), - [sym_raw_attribute] = STATE(1567), - [sym_commonmark_attribute] = STATE(1567), - [sym_language_attribute] = STATE(1567), + [STATE(569)] = { + [sym__qmd_attribute] = STATE(1562), + [sym_raw_attribute] = STATE(1562), + [sym_commonmark_attribute] = STATE(1562), + [sym_language_attribute] = STATE(1562), [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -85809,11 +85737,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4237), [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, - [STATE(571)] = { - [sym__qmd_attribute] = STATE(1569), - [sym_raw_attribute] = STATE(1569), - [sym_commonmark_attribute] = STATE(1569), - [sym_language_attribute] = STATE(1569), + [STATE(570)] = { + [sym__qmd_attribute] = STATE(1564), + [sym_raw_attribute] = STATE(1564), + [sym_commonmark_attribute] = STATE(1564), + [sym_language_attribute] = STATE(1564), [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -85880,11 +85808,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4241), [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, - [STATE(572)] = { - [sym__qmd_attribute] = STATE(1570), - [sym_raw_attribute] = STATE(1570), - [sym_commonmark_attribute] = STATE(1570), - [sym_language_attribute] = STATE(1570), + [STATE(571)] = { + [sym__qmd_attribute] = STATE(1565), + [sym_raw_attribute] = STATE(1565), + [sym_commonmark_attribute] = STATE(1565), + [sym_language_attribute] = STATE(1565), [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -85951,153 +85879,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4245), [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, - [STATE(573)] = { - [sym__qmd_attribute] = STATE(1588), - [sym_raw_attribute] = STATE(1588), - [sym_commonmark_attribute] = STATE(1588), - [sym_language_attribute] = STATE(1588), - [sym__backslash_escape] = ACTIONS(4257), - [sym_entity_reference] = ACTIONS(4257), - [sym_numeric_character_reference] = ACTIONS(4257), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4257), - [anon_sym_BANG] = ACTIONS(4257), - [anon_sym_DQUOTE] = ACTIONS(4257), - [anon_sym_POUND] = ACTIONS(4257), - [anon_sym_DOLLAR] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4257), - [anon_sym_AMP] = ACTIONS(4259), - [anon_sym_SQUOTE] = ACTIONS(4257), - [anon_sym_PLUS] = ACTIONS(4257), - [anon_sym_COMMA] = ACTIONS(4257), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_DOT] = ACTIONS(4259), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_COLON] = ACTIONS(4257), - [anon_sym_SEMI] = ACTIONS(4257), - [anon_sym_EQ] = ACTIONS(4257), - [anon_sym_QMARK] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_BSLASH] = ACTIONS(4259), - [anon_sym_CARET] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4257), + [STATE(572)] = { + [sym__qmd_attribute] = STATE(1583), + [sym_raw_attribute] = STATE(1583), + [sym_commonmark_attribute] = STATE(1583), + [sym_language_attribute] = STATE(1583), + [sym__backslash_escape] = ACTIONS(4251), + [sym_entity_reference] = ACTIONS(4251), + [sym_numeric_character_reference] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_DQUOTE] = ACTIONS(4251), + [anon_sym_POUND] = ACTIONS(4251), + [anon_sym_DOLLAR] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_COMMA] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_COLON] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4251), + [anon_sym_QMARK] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_BSLASH] = ACTIONS(4253), + [anon_sym_CARET] = ACTIONS(4253), + [anon_sym_BQUOTE] = ACTIONS(4251), [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_PIPE] = ACTIONS(4257), - [anon_sym_TILDE] = ACTIONS(4257), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_RPAREN] = ACTIONS(4257), - [sym__newline_token] = ACTIONS(4257), - [aux_sym_insert_token1] = ACTIONS(4257), - [aux_sym_delete_token1] = ACTIONS(4257), - [aux_sym_highlight_token1] = ACTIONS(4257), - [aux_sym_edit_comment_token1] = ACTIONS(4257), - [anon_sym_CARET_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_CARET] = ACTIONS(4257), - [sym_uri_autolink] = ACTIONS(4257), - [sym_email_autolink] = ACTIONS(4257), - [sym__whitespace_ge_2] = ACTIONS(4257), - [aux_sym__whitespace_token1] = ACTIONS(4259), - [sym__word_no_digit] = ACTIONS(4257), - [sym__digits] = ACTIONS(4257), - [anon_sym_DASH_DASH] = ACTIONS(4259), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4257), - [sym__code_span_start] = ACTIONS(4257), - [sym__emphasis_open_star] = ACTIONS(4257), - [sym__emphasis_open_underscore] = ACTIONS(4257), - [sym__strikeout_open] = ACTIONS(4257), - [sym__strikeout_close] = ACTIONS(4257), - [sym__latex_span_start] = ACTIONS(4257), - [sym__single_quote_open] = ACTIONS(4257), - [sym__double_quote_open] = ACTIONS(4257), - [sym__superscript_open] = ACTIONS(4257), - [sym__subscript_open] = ACTIONS(4257), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4257), - [sym__cite_author_in_text] = ACTIONS(4257), - [sym__cite_suppress_author] = ACTIONS(4257), - [sym__shortcode_open_escaped] = ACTIONS(4257), - [sym__shortcode_open] = ACTIONS(4257), - [sym__unclosed_span] = ACTIONS(4257), - [sym__strong_emphasis_open_star] = ACTIONS(4257), - [sym__strong_emphasis_open_underscore] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4251), + [sym__newline_token] = ACTIONS(4251), + [aux_sym_insert_token1] = ACTIONS(4251), + [aux_sym_delete_token1] = ACTIONS(4251), + [aux_sym_highlight_token1] = ACTIONS(4251), + [aux_sym_edit_comment_token1] = ACTIONS(4251), + [anon_sym_CARET_LBRACK] = ACTIONS(4251), + [anon_sym_LBRACK_CARET] = ACTIONS(4251), + [sym_uri_autolink] = ACTIONS(4251), + [sym_email_autolink] = ACTIONS(4251), + [sym__whitespace_ge_2] = ACTIONS(4251), + [aux_sym__whitespace_token1] = ACTIONS(4253), + [sym__word_no_digit] = ACTIONS(4251), + [sym__digits] = ACTIONS(4251), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4251), + [sym__code_span_start] = ACTIONS(4251), + [sym__emphasis_open_star] = ACTIONS(4251), + [sym__emphasis_open_underscore] = ACTIONS(4251), + [sym__strikeout_open] = ACTIONS(4251), + [sym__strikeout_close] = ACTIONS(4251), + [sym__latex_span_start] = ACTIONS(4251), + [sym__single_quote_open] = ACTIONS(4251), + [sym__double_quote_open] = ACTIONS(4251), + [sym__superscript_open] = ACTIONS(4251), + [sym__subscript_open] = ACTIONS(4251), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4251), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4251), + [sym__cite_author_in_text] = ACTIONS(4251), + [sym__cite_suppress_author] = ACTIONS(4251), + [sym__shortcode_open_escaped] = ACTIONS(4251), + [sym__shortcode_open] = ACTIONS(4251), + [sym__unclosed_span] = ACTIONS(4251), + [sym__strong_emphasis_open_star] = ACTIONS(4251), + [sym__strong_emphasis_open_underscore] = ACTIONS(4251), }, - [STATE(574)] = { - [sym__qmd_attribute] = STATE(1589), - [sym_raw_attribute] = STATE(1589), - [sym_commonmark_attribute] = STATE(1589), - [sym_language_attribute] = STATE(1589), - [sym__backslash_escape] = ACTIONS(4267), - [sym_entity_reference] = ACTIONS(4267), - [sym_numeric_character_reference] = ACTIONS(4267), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4267), - [anon_sym_BANG] = ACTIONS(4267), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_POUND] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_PERCENT] = ACTIONS(4267), - [anon_sym_AMP] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4267), - [anon_sym_PLUS] = ACTIONS(4267), - [anon_sym_COMMA] = ACTIONS(4267), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4267), - [anon_sym_COLON] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4267), - [anon_sym_EQ] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4267), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_BSLASH] = ACTIONS(4269), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4267), + [STATE(573)] = { + [sym__qmd_attribute] = STATE(1584), + [sym_raw_attribute] = STATE(1584), + [sym_commonmark_attribute] = STATE(1584), + [sym_language_attribute] = STATE(1584), + [sym__backslash_escape] = ACTIONS(4263), + [sym_entity_reference] = ACTIONS(4263), + [sym_numeric_character_reference] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4265), + [anon_sym_GT] = ACTIONS(4263), + [anon_sym_BANG] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(4263), + [anon_sym_DOLLAR] = ACTIONS(4263), + [anon_sym_PERCENT] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4265), + [anon_sym_SQUOTE] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_COMMA] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_COLON] = ACTIONS(4263), + [anon_sym_SEMI] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_BSLASH] = ACTIONS(4265), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_BQUOTE] = ACTIONS(4263), [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_PIPE] = ACTIONS(4267), - [anon_sym_TILDE] = ACTIONS(4267), - [anon_sym_LPAREN] = ACTIONS(4267), - [anon_sym_RPAREN] = ACTIONS(4267), - [sym__newline_token] = ACTIONS(4267), - [aux_sym_insert_token1] = ACTIONS(4267), - [aux_sym_delete_token1] = ACTIONS(4267), - [aux_sym_highlight_token1] = ACTIONS(4267), - [aux_sym_edit_comment_token1] = ACTIONS(4267), - [anon_sym_CARET_LBRACK] = ACTIONS(4267), - [anon_sym_LBRACK_CARET] = ACTIONS(4267), - [sym_uri_autolink] = ACTIONS(4267), - [sym_email_autolink] = ACTIONS(4267), - [sym__whitespace_ge_2] = ACTIONS(4267), - [aux_sym__whitespace_token1] = ACTIONS(4269), - [sym__word_no_digit] = ACTIONS(4267), - [sym__digits] = ACTIONS(4267), - [anon_sym_DASH_DASH] = ACTIONS(4269), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), - [sym__code_span_start] = ACTIONS(4267), - [sym__emphasis_open_star] = ACTIONS(4267), - [sym__emphasis_open_underscore] = ACTIONS(4267), - [sym__strikeout_open] = ACTIONS(4267), - [sym__strikeout_close] = ACTIONS(4267), - [sym__latex_span_start] = ACTIONS(4267), - [sym__single_quote_open] = ACTIONS(4267), - [sym__double_quote_open] = ACTIONS(4267), - [sym__superscript_open] = ACTIONS(4267), - [sym__subscript_open] = ACTIONS(4267), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), - [sym__cite_author_in_text] = ACTIONS(4267), - [sym__cite_suppress_author] = ACTIONS(4267), - [sym__shortcode_open_escaped] = ACTIONS(4267), - [sym__shortcode_open] = ACTIONS(4267), - [sym__unclosed_span] = ACTIONS(4267), - [sym__strong_emphasis_open_star] = ACTIONS(4267), - [sym__strong_emphasis_open_underscore] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4263), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym_RPAREN] = ACTIONS(4263), + [sym__newline_token] = ACTIONS(4263), + [aux_sym_insert_token1] = ACTIONS(4263), + [aux_sym_delete_token1] = ACTIONS(4263), + [aux_sym_highlight_token1] = ACTIONS(4263), + [aux_sym_edit_comment_token1] = ACTIONS(4263), + [anon_sym_CARET_LBRACK] = ACTIONS(4263), + [anon_sym_LBRACK_CARET] = ACTIONS(4263), + [sym_uri_autolink] = ACTIONS(4263), + [sym_email_autolink] = ACTIONS(4263), + [sym__whitespace_ge_2] = ACTIONS(4263), + [aux_sym__whitespace_token1] = ACTIONS(4265), + [sym__word_no_digit] = ACTIONS(4263), + [sym__digits] = ACTIONS(4263), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), + [sym__code_span_start] = ACTIONS(4263), + [sym__emphasis_open_star] = ACTIONS(4263), + [sym__emphasis_open_underscore] = ACTIONS(4263), + [sym__strikeout_open] = ACTIONS(4263), + [sym__strikeout_close] = ACTIONS(4263), + [sym__latex_span_start] = ACTIONS(4263), + [sym__single_quote_open] = ACTIONS(4263), + [sym__double_quote_open] = ACTIONS(4263), + [sym__superscript_open] = ACTIONS(4263), + [sym__subscript_open] = ACTIONS(4263), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), + [sym__cite_author_in_text] = ACTIONS(4263), + [sym__cite_suppress_author] = ACTIONS(4263), + [sym__shortcode_open_escaped] = ACTIONS(4263), + [sym__shortcode_open] = ACTIONS(4263), + [sym__unclosed_span] = ACTIONS(4263), + [sym__strong_emphasis_open_star] = ACTIONS(4263), + [sym__strong_emphasis_open_underscore] = ACTIONS(4263), }, - [STATE(575)] = { - [sym__qmd_attribute] = STATE(1272), - [sym_raw_attribute] = STATE(1272), - [sym_commonmark_attribute] = STATE(1272), - [sym_language_attribute] = STATE(1272), + [STATE(574)] = { + [sym__qmd_attribute] = STATE(1271), + [sym_raw_attribute] = STATE(1271), + [sym_commonmark_attribute] = STATE(1271), + [sym_language_attribute] = STATE(1271), [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -86123,7 +86051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4231), [anon_sym_CARET] = ACTIONS(4231), [anon_sym_BQUOTE] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4249), [anon_sym_PIPE] = ACTIONS(4229), [anon_sym_TILDE] = ACTIONS(4229), [anon_sym_LPAREN] = ACTIONS(4229), @@ -86164,11 +86092,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4229), [sym__strong_emphasis_close_underscore] = ACTIONS(4229), }, - [STATE(576)] = { - [sym__qmd_attribute] = STATE(1590), - [sym_raw_attribute] = STATE(1590), - [sym_commonmark_attribute] = STATE(1590), - [sym_language_attribute] = STATE(1590), + [STATE(575)] = { + [sym__qmd_attribute] = STATE(1585), + [sym_raw_attribute] = STATE(1585), + [sym_commonmark_attribute] = STATE(1585), + [sym_language_attribute] = STATE(1585), [sym__backslash_escape] = ACTIONS(4283), [sym_entity_reference] = ACTIONS(4283), [sym_numeric_character_reference] = ACTIONS(4283), @@ -86235,11 +86163,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4283), [sym__strong_emphasis_open_underscore] = ACTIONS(4283), }, - [STATE(577)] = { - [sym__qmd_attribute] = STATE(1604), - [sym_raw_attribute] = STATE(1604), - [sym_commonmark_attribute] = STATE(1604), - [sym_language_attribute] = STATE(1604), + [STATE(576)] = { + [sym__qmd_attribute] = STATE(1598), + [sym_raw_attribute] = STATE(1598), + [sym_commonmark_attribute] = STATE(1598), + [sym_language_attribute] = STATE(1598), [sym__backslash_escape] = ACTIONS(4181), [sym_entity_reference] = ACTIONS(4181), [sym_numeric_character_reference] = ACTIONS(4181), @@ -86306,153 +86234,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4181), [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, + [STATE(577)] = { + [sym__qmd_attribute] = STATE(1601), + [sym_raw_attribute] = STATE(1601), + [sym_commonmark_attribute] = STATE(1601), + [sym_language_attribute] = STATE(1601), + [sym__backslash_escape] = ACTIONS(4259), + [sym_entity_reference] = ACTIONS(4259), + [sym_numeric_character_reference] = ACTIONS(4259), + [anon_sym_LT] = ACTIONS(4261), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + [anon_sym_SQUOTE] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_COMMA] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_DOT] = ACTIONS(4261), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_QMARK] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_BSLASH] = ACTIONS(4261), + [anon_sym_CARET] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4299), + [anon_sym_PIPE] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym_RPAREN] = ACTIONS(4259), + [sym__newline_token] = ACTIONS(4259), + [aux_sym_insert_token1] = ACTIONS(4259), + [aux_sym_delete_token1] = ACTIONS(4259), + [aux_sym_highlight_token1] = ACTIONS(4259), + [aux_sym_edit_comment_token1] = ACTIONS(4259), + [anon_sym_CARET_LBRACK] = ACTIONS(4259), + [anon_sym_LBRACK_CARET] = ACTIONS(4259), + [sym_uri_autolink] = ACTIONS(4259), + [sym_email_autolink] = ACTIONS(4259), + [sym__whitespace_ge_2] = ACTIONS(4259), + [aux_sym__whitespace_token1] = ACTIONS(4261), + [sym__word_no_digit] = ACTIONS(4259), + [sym__digits] = ACTIONS(4259), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4259), + [sym__code_span_start] = ACTIONS(4259), + [sym__emphasis_open_star] = ACTIONS(4259), + [sym__emphasis_open_underscore] = ACTIONS(4259), + [sym__strikeout_open] = ACTIONS(4259), + [sym__strikeout_close] = ACTIONS(4259), + [sym__latex_span_start] = ACTIONS(4259), + [sym__single_quote_open] = ACTIONS(4259), + [sym__double_quote_open] = ACTIONS(4259), + [sym__superscript_open] = ACTIONS(4259), + [sym__subscript_open] = ACTIONS(4259), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4259), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4259), + [sym__cite_author_in_text] = ACTIONS(4259), + [sym__cite_suppress_author] = ACTIONS(4259), + [sym__shortcode_open_escaped] = ACTIONS(4259), + [sym__shortcode_open] = ACTIONS(4259), + [sym__unclosed_span] = ACTIONS(4259), + [sym__strong_emphasis_open_star] = ACTIONS(4259), + [sym__strong_emphasis_open_underscore] = ACTIONS(4259), + }, [STATE(578)] = { - [sym__qmd_attribute] = STATE(1607), - [sym_raw_attribute] = STATE(1607), - [sym_commonmark_attribute] = STATE(1607), - [sym_language_attribute] = STATE(1607), - [sym__backslash_escape] = ACTIONS(4263), - [sym_entity_reference] = ACTIONS(4263), - [sym_numeric_character_reference] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(4265), - [anon_sym_GT] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4263), - [anon_sym_POUND] = ACTIONS(4263), - [anon_sym_DOLLAR] = ACTIONS(4263), - [anon_sym_PERCENT] = ACTIONS(4263), - [anon_sym_AMP] = ACTIONS(4265), - [anon_sym_SQUOTE] = ACTIONS(4263), - [anon_sym_PLUS] = ACTIONS(4263), - [anon_sym_COMMA] = ACTIONS(4263), - [anon_sym_DASH] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4265), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_COLON] = ACTIONS(4263), - [anon_sym_SEMI] = ACTIONS(4263), - [anon_sym_EQ] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4263), - [anon_sym_LBRACK] = ACTIONS(4265), - [anon_sym_BSLASH] = ACTIONS(4265), - [anon_sym_CARET] = ACTIONS(4265), - [anon_sym_BQUOTE] = ACTIONS(4263), + [sym__qmd_attribute] = STATE(1603), + [sym_raw_attribute] = STATE(1603), + [sym_commonmark_attribute] = STATE(1603), + [sym_language_attribute] = STATE(1603), + [sym__backslash_escape] = ACTIONS(4267), + [sym_entity_reference] = ACTIONS(4267), + [sym_numeric_character_reference] = ACTIONS(4267), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_DQUOTE] = ACTIONS(4267), + [anon_sym_POUND] = ACTIONS(4267), + [anon_sym_DOLLAR] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_SQUOTE] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_COMMA] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4269), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_COLON] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_QMARK] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_BSLASH] = ACTIONS(4269), + [anon_sym_CARET] = ACTIONS(4269), + [anon_sym_BQUOTE] = ACTIONS(4267), [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_PIPE] = ACTIONS(4263), - [anon_sym_TILDE] = ACTIONS(4263), - [anon_sym_LPAREN] = ACTIONS(4263), - [anon_sym_RPAREN] = ACTIONS(4263), - [sym__newline_token] = ACTIONS(4263), - [aux_sym_insert_token1] = ACTIONS(4263), - [aux_sym_delete_token1] = ACTIONS(4263), - [aux_sym_highlight_token1] = ACTIONS(4263), - [aux_sym_edit_comment_token1] = ACTIONS(4263), - [anon_sym_CARET_LBRACK] = ACTIONS(4263), - [anon_sym_LBRACK_CARET] = ACTIONS(4263), - [sym_uri_autolink] = ACTIONS(4263), - [sym_email_autolink] = ACTIONS(4263), - [sym__whitespace_ge_2] = ACTIONS(4263), - [aux_sym__whitespace_token1] = ACTIONS(4265), - [sym__word_no_digit] = ACTIONS(4263), - [sym__digits] = ACTIONS(4263), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), - [sym__code_span_start] = ACTIONS(4263), - [sym__emphasis_open_star] = ACTIONS(4263), - [sym__emphasis_open_underscore] = ACTIONS(4263), - [sym__strikeout_open] = ACTIONS(4263), - [sym__strikeout_close] = ACTIONS(4263), - [sym__latex_span_start] = ACTIONS(4263), - [sym__single_quote_open] = ACTIONS(4263), - [sym__double_quote_open] = ACTIONS(4263), - [sym__superscript_open] = ACTIONS(4263), - [sym__subscript_open] = ACTIONS(4263), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), - [sym__cite_author_in_text] = ACTIONS(4263), - [sym__cite_suppress_author] = ACTIONS(4263), - [sym__shortcode_open_escaped] = ACTIONS(4263), - [sym__shortcode_open] = ACTIONS(4263), - [sym__unclosed_span] = ACTIONS(4263), - [sym__strong_emphasis_open_star] = ACTIONS(4263), - [sym__strong_emphasis_open_underscore] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4267), + [anon_sym_TILDE] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_RPAREN] = ACTIONS(4267), + [sym__newline_token] = ACTIONS(4267), + [aux_sym_insert_token1] = ACTIONS(4267), + [aux_sym_delete_token1] = ACTIONS(4267), + [aux_sym_highlight_token1] = ACTIONS(4267), + [aux_sym_edit_comment_token1] = ACTIONS(4267), + [anon_sym_CARET_LBRACK] = ACTIONS(4267), + [anon_sym_LBRACK_CARET] = ACTIONS(4267), + [sym_uri_autolink] = ACTIONS(4267), + [sym_email_autolink] = ACTIONS(4267), + [sym__whitespace_ge_2] = ACTIONS(4267), + [aux_sym__whitespace_token1] = ACTIONS(4269), + [sym__word_no_digit] = ACTIONS(4267), + [sym__digits] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), + [sym__code_span_start] = ACTIONS(4267), + [sym__emphasis_open_star] = ACTIONS(4267), + [sym__emphasis_open_underscore] = ACTIONS(4267), + [sym__strikeout_open] = ACTIONS(4267), + [sym__strikeout_close] = ACTIONS(4267), + [sym__latex_span_start] = ACTIONS(4267), + [sym__single_quote_open] = ACTIONS(4267), + [sym__double_quote_open] = ACTIONS(4267), + [sym__superscript_open] = ACTIONS(4267), + [sym__subscript_open] = ACTIONS(4267), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), + [sym__cite_author_in_text] = ACTIONS(4267), + [sym__cite_suppress_author] = ACTIONS(4267), + [sym__shortcode_open_escaped] = ACTIONS(4267), + [sym__shortcode_open] = ACTIONS(4267), + [sym__unclosed_span] = ACTIONS(4267), + [sym__strong_emphasis_open_star] = ACTIONS(4267), + [sym__strong_emphasis_open_underscore] = ACTIONS(4267), }, [STATE(579)] = { - [sym__qmd_attribute] = STATE(1609), - [sym_raw_attribute] = STATE(1609), - [sym_commonmark_attribute] = STATE(1609), - [sym_language_attribute] = STATE(1609), - [sym__backslash_escape] = ACTIONS(4271), - [sym_entity_reference] = ACTIONS(4271), - [sym_numeric_character_reference] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4273), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_POUND] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4273), - [anon_sym_SQUOTE] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4273), - [anon_sym_SLASH] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_EQ] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(4271), - [anon_sym_LBRACK] = ACTIONS(4273), - [anon_sym_BSLASH] = ACTIONS(4273), - [anon_sym_CARET] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4271), + [sym__qmd_attribute] = STATE(1604), + [sym_raw_attribute] = STATE(1604), + [sym_commonmark_attribute] = STATE(1604), + [sym_language_attribute] = STATE(1604), + [sym__backslash_escape] = ACTIONS(4275), + [sym_entity_reference] = ACTIONS(4275), + [sym_numeric_character_reference] = ACTIONS(4275), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + [anon_sym_SQUOTE] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_COMMA] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4277), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_COLON] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_QMARK] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_BSLASH] = ACTIONS(4277), + [anon_sym_CARET] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4275), [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_TILDE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [sym__newline_token] = ACTIONS(4271), - [aux_sym_insert_token1] = ACTIONS(4271), - [aux_sym_delete_token1] = ACTIONS(4271), - [aux_sym_highlight_token1] = ACTIONS(4271), - [aux_sym_edit_comment_token1] = ACTIONS(4271), - [anon_sym_CARET_LBRACK] = ACTIONS(4271), - [anon_sym_LBRACK_CARET] = ACTIONS(4271), - [sym_uri_autolink] = ACTIONS(4271), - [sym_email_autolink] = ACTIONS(4271), - [sym__whitespace_ge_2] = ACTIONS(4271), - [aux_sym__whitespace_token1] = ACTIONS(4273), - [sym__word_no_digit] = ACTIONS(4271), - [sym__digits] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4273), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), - [sym__code_span_start] = ACTIONS(4271), - [sym__emphasis_open_star] = ACTIONS(4271), - [sym__emphasis_open_underscore] = ACTIONS(4271), - [sym__strikeout_open] = ACTIONS(4271), - [sym__strikeout_close] = ACTIONS(4271), - [sym__latex_span_start] = ACTIONS(4271), - [sym__single_quote_open] = ACTIONS(4271), - [sym__double_quote_open] = ACTIONS(4271), - [sym__superscript_open] = ACTIONS(4271), - [sym__subscript_open] = ACTIONS(4271), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), - [sym__cite_author_in_text] = ACTIONS(4271), - [sym__cite_suppress_author] = ACTIONS(4271), - [sym__shortcode_open_escaped] = ACTIONS(4271), - [sym__shortcode_open] = ACTIONS(4271), - [sym__unclosed_span] = ACTIONS(4271), - [sym__strong_emphasis_open_star] = ACTIONS(4271), - [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4275), + [anon_sym_TILDE] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4275), + [anon_sym_RPAREN] = ACTIONS(4275), + [sym__newline_token] = ACTIONS(4275), + [aux_sym_insert_token1] = ACTIONS(4275), + [aux_sym_delete_token1] = ACTIONS(4275), + [aux_sym_highlight_token1] = ACTIONS(4275), + [aux_sym_edit_comment_token1] = ACTIONS(4275), + [anon_sym_CARET_LBRACK] = ACTIONS(4275), + [anon_sym_LBRACK_CARET] = ACTIONS(4275), + [sym_uri_autolink] = ACTIONS(4275), + [sym_email_autolink] = ACTIONS(4275), + [sym__whitespace_ge_2] = ACTIONS(4275), + [aux_sym__whitespace_token1] = ACTIONS(4277), + [sym__word_no_digit] = ACTIONS(4275), + [sym__digits] = ACTIONS(4275), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), + [sym__code_span_start] = ACTIONS(4275), + [sym__emphasis_open_star] = ACTIONS(4275), + [sym__emphasis_open_underscore] = ACTIONS(4275), + [sym__strikeout_open] = ACTIONS(4275), + [sym__strikeout_close] = ACTIONS(4275), + [sym__latex_span_start] = ACTIONS(4275), + [sym__single_quote_open] = ACTIONS(4275), + [sym__double_quote_open] = ACTIONS(4275), + [sym__superscript_open] = ACTIONS(4275), + [sym__subscript_open] = ACTIONS(4275), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), + [sym__cite_author_in_text] = ACTIONS(4275), + [sym__cite_suppress_author] = ACTIONS(4275), + [sym__shortcode_open_escaped] = ACTIONS(4275), + [sym__shortcode_open] = ACTIONS(4275), + [sym__unclosed_span] = ACTIONS(4275), + [sym__strong_emphasis_open_star] = ACTIONS(4275), + [sym__strong_emphasis_open_underscore] = ACTIONS(4275), }, [STATE(580)] = { - [sym__qmd_attribute] = STATE(1610), - [sym_raw_attribute] = STATE(1610), - [sym_commonmark_attribute] = STATE(1610), - [sym_language_attribute] = STATE(1610), + [sym__qmd_attribute] = STATE(1605), + [sym_raw_attribute] = STATE(1605), + [sym_commonmark_attribute] = STATE(1605), + [sym_language_attribute] = STATE(1605), [sym__backslash_escape] = ACTIONS(4287), [sym_entity_reference] = ACTIONS(4287), [sym_numeric_character_reference] = ACTIONS(4287), @@ -86520,10 +86519,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4287), }, [STATE(581)] = { - [sym__qmd_attribute] = STATE(1611), - [sym_raw_attribute] = STATE(1611), - [sym_commonmark_attribute] = STATE(1611), - [sym_language_attribute] = STATE(1611), + [sym__qmd_attribute] = STATE(1273), + [sym_raw_attribute] = STATE(1273), + [sym_commonmark_attribute] = STATE(1273), + [sym_language_attribute] = STATE(1273), + [sym__backslash_escape] = ACTIONS(4233), + [sym_entity_reference] = ACTIONS(4233), + [sym_numeric_character_reference] = ACTIONS(4233), + [anon_sym_LT] = ACTIONS(4235), + [anon_sym_GT] = ACTIONS(4233), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_DQUOTE] = ACTIONS(4233), + [anon_sym_POUND] = ACTIONS(4233), + [anon_sym_DOLLAR] = ACTIONS(4233), + [anon_sym_PERCENT] = ACTIONS(4233), + [anon_sym_AMP] = ACTIONS(4235), + [anon_sym_SQUOTE] = ACTIONS(4233), + [anon_sym_PLUS] = ACTIONS(4233), + [anon_sym_COMMA] = ACTIONS(4233), + [anon_sym_DASH] = ACTIONS(4235), + [anon_sym_DOT] = ACTIONS(4235), + [anon_sym_SLASH] = ACTIONS(4233), + [anon_sym_COLON] = ACTIONS(4233), + [anon_sym_SEMI] = ACTIONS(4233), + [anon_sym_EQ] = ACTIONS(4233), + [anon_sym_QMARK] = ACTIONS(4233), + [anon_sym_LBRACK] = ACTIONS(4235), + [anon_sym_BSLASH] = ACTIONS(4235), + [anon_sym_CARET] = ACTIONS(4235), + [anon_sym_BQUOTE] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4233), + [anon_sym_TILDE] = ACTIONS(4233), + [anon_sym_LPAREN] = ACTIONS(4233), + [anon_sym_RPAREN] = ACTIONS(4233), + [sym__newline_token] = ACTIONS(4233), + [aux_sym_insert_token1] = ACTIONS(4233), + [aux_sym_delete_token1] = ACTIONS(4233), + [aux_sym_highlight_token1] = ACTIONS(4233), + [aux_sym_edit_comment_token1] = ACTIONS(4233), + [anon_sym_CARET_LBRACK] = ACTIONS(4233), + [anon_sym_LBRACK_CARET] = ACTIONS(4233), + [sym_uri_autolink] = ACTIONS(4233), + [sym_email_autolink] = ACTIONS(4233), + [sym__whitespace_ge_2] = ACTIONS(4233), + [aux_sym__whitespace_token1] = ACTIONS(4235), + [sym__word_no_digit] = ACTIONS(4233), + [sym__digits] = ACTIONS(4233), + [anon_sym_DASH_DASH] = ACTIONS(4235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4233), + [sym__code_span_start] = ACTIONS(4233), + [sym__emphasis_open_star] = ACTIONS(4233), + [sym__emphasis_open_underscore] = ACTIONS(4233), + [sym__strikeout_open] = ACTIONS(4233), + [sym__latex_span_start] = ACTIONS(4233), + [sym__single_quote_open] = ACTIONS(4233), + [sym__double_quote_open] = ACTIONS(4233), + [sym__superscript_open] = ACTIONS(4233), + [sym__subscript_open] = ACTIONS(4233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4233), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4233), + [sym__cite_author_in_text] = ACTIONS(4233), + [sym__cite_suppress_author] = ACTIONS(4233), + [sym__shortcode_open_escaped] = ACTIONS(4233), + [sym__shortcode_open] = ACTIONS(4233), + [sym__unclosed_span] = ACTIONS(4233), + [sym__strong_emphasis_open_star] = ACTIONS(4233), + [sym__strong_emphasis_open_underscore] = ACTIONS(4233), + [sym__strong_emphasis_close_underscore] = ACTIONS(4233), + }, + [STATE(582)] = { + [sym__qmd_attribute] = STATE(1608), + [sym_raw_attribute] = STATE(1608), + [sym_commonmark_attribute] = STATE(1608), + [sym_language_attribute] = STATE(1608), [sym__backslash_escape] = ACTIONS(4291), [sym_entity_reference] = ACTIONS(4291), [sym_numeric_character_reference] = ACTIONS(4291), @@ -86590,224 +86660,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4291), [sym__strong_emphasis_open_underscore] = ACTIONS(4291), }, - [STATE(582)] = { - [sym__qmd_attribute] = STATE(1274), - [sym_raw_attribute] = STATE(1274), - [sym_commonmark_attribute] = STATE(1274), - [sym_language_attribute] = STATE(1274), - [sym__backslash_escape] = ACTIONS(4233), - [sym_entity_reference] = ACTIONS(4233), - [sym_numeric_character_reference] = ACTIONS(4233), - [anon_sym_LT] = ACTIONS(4235), - [anon_sym_GT] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4233), - [anon_sym_DQUOTE] = ACTIONS(4233), - [anon_sym_POUND] = ACTIONS(4233), - [anon_sym_DOLLAR] = ACTIONS(4233), - [anon_sym_PERCENT] = ACTIONS(4233), - [anon_sym_AMP] = ACTIONS(4235), - [anon_sym_SQUOTE] = ACTIONS(4233), - [anon_sym_PLUS] = ACTIONS(4233), - [anon_sym_COMMA] = ACTIONS(4233), - [anon_sym_DASH] = ACTIONS(4235), - [anon_sym_DOT] = ACTIONS(4235), - [anon_sym_SLASH] = ACTIONS(4233), - [anon_sym_COLON] = ACTIONS(4233), - [anon_sym_SEMI] = ACTIONS(4233), - [anon_sym_EQ] = ACTIONS(4233), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_LBRACK] = ACTIONS(4235), - [anon_sym_BSLASH] = ACTIONS(4235), - [anon_sym_CARET] = ACTIONS(4235), - [anon_sym_BQUOTE] = ACTIONS(4233), - [anon_sym_LBRACE] = ACTIONS(4255), - [anon_sym_PIPE] = ACTIONS(4233), - [anon_sym_TILDE] = ACTIONS(4233), - [anon_sym_LPAREN] = ACTIONS(4233), - [anon_sym_RPAREN] = ACTIONS(4233), - [sym__newline_token] = ACTIONS(4233), - [aux_sym_insert_token1] = ACTIONS(4233), - [aux_sym_delete_token1] = ACTIONS(4233), - [aux_sym_highlight_token1] = ACTIONS(4233), - [aux_sym_edit_comment_token1] = ACTIONS(4233), - [anon_sym_CARET_LBRACK] = ACTIONS(4233), - [anon_sym_LBRACK_CARET] = ACTIONS(4233), - [sym_uri_autolink] = ACTIONS(4233), - [sym_email_autolink] = ACTIONS(4233), - [sym__whitespace_ge_2] = ACTIONS(4233), - [aux_sym__whitespace_token1] = ACTIONS(4235), - [sym__word_no_digit] = ACTIONS(4233), - [sym__digits] = ACTIONS(4233), - [anon_sym_DASH_DASH] = ACTIONS(4235), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4233), - [sym__code_span_start] = ACTIONS(4233), - [sym__emphasis_open_star] = ACTIONS(4233), - [sym__emphasis_open_underscore] = ACTIONS(4233), - [sym__strikeout_open] = ACTIONS(4233), - [sym__latex_span_start] = ACTIONS(4233), - [sym__single_quote_open] = ACTIONS(4233), - [sym__double_quote_open] = ACTIONS(4233), - [sym__superscript_open] = ACTIONS(4233), - [sym__subscript_open] = ACTIONS(4233), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4233), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4233), - [sym__cite_author_in_text] = ACTIONS(4233), - [sym__cite_suppress_author] = ACTIONS(4233), - [sym__shortcode_open_escaped] = ACTIONS(4233), - [sym__shortcode_open] = ACTIONS(4233), - [sym__unclosed_span] = ACTIONS(4233), - [sym__strong_emphasis_open_star] = ACTIONS(4233), - [sym__strong_emphasis_open_underscore] = ACTIONS(4233), - [sym__strong_emphasis_close_underscore] = ACTIONS(4233), - }, [STATE(583)] = { - [sym__qmd_attribute] = STATE(1614), - [sym_raw_attribute] = STATE(1614), - [sym_commonmark_attribute] = STATE(1614), - [sym_language_attribute] = STATE(1614), - [sym__backslash_escape] = ACTIONS(4249), - [sym_entity_reference] = ACTIONS(4249), - [sym_numeric_character_reference] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(4251), - [anon_sym_GT] = ACTIONS(4249), - [anon_sym_BANG] = ACTIONS(4249), - [anon_sym_DQUOTE] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(4249), - [anon_sym_PERCENT] = ACTIONS(4249), - [anon_sym_AMP] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4249), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_COMMA] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4251), - [anon_sym_DOT] = ACTIONS(4251), - [anon_sym_SLASH] = ACTIONS(4249), - [anon_sym_COLON] = ACTIONS(4249), - [anon_sym_SEMI] = ACTIONS(4249), - [anon_sym_EQ] = ACTIONS(4249), - [anon_sym_QMARK] = ACTIONS(4249), - [anon_sym_LBRACK] = ACTIONS(4251), - [anon_sym_BSLASH] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4251), - [anon_sym_BQUOTE] = ACTIONS(4249), + [sym__qmd_attribute] = STATE(1612), + [sym_raw_attribute] = STATE(1612), + [sym_commonmark_attribute] = STATE(1612), + [sym_language_attribute] = STATE(1612), + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_PIPE] = ACTIONS(4249), - [anon_sym_TILDE] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4249), - [anon_sym_RPAREN] = ACTIONS(4249), - [sym__newline_token] = ACTIONS(4249), - [aux_sym_insert_token1] = ACTIONS(4249), - [aux_sym_delete_token1] = ACTIONS(4249), - [aux_sym_highlight_token1] = ACTIONS(4249), - [aux_sym_edit_comment_token1] = ACTIONS(4249), - [anon_sym_CARET_LBRACK] = ACTIONS(4249), - [anon_sym_LBRACK_CARET] = ACTIONS(4249), - [sym_uri_autolink] = ACTIONS(4249), - [sym_email_autolink] = ACTIONS(4249), - [sym__whitespace_ge_2] = ACTIONS(4249), - [aux_sym__whitespace_token1] = ACTIONS(4251), - [sym__word_no_digit] = ACTIONS(4249), - [sym__digits] = ACTIONS(4249), - [anon_sym_DASH_DASH] = ACTIONS(4251), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4249), - [sym__code_span_start] = ACTIONS(4249), - [sym__emphasis_open_star] = ACTIONS(4249), - [sym__emphasis_open_underscore] = ACTIONS(4249), - [sym__strikeout_open] = ACTIONS(4249), - [sym__strikeout_close] = ACTIONS(4249), - [sym__latex_span_start] = ACTIONS(4249), - [sym__single_quote_open] = ACTIONS(4249), - [sym__double_quote_open] = ACTIONS(4249), - [sym__superscript_open] = ACTIONS(4249), - [sym__subscript_open] = ACTIONS(4249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4249), - [sym__cite_author_in_text] = ACTIONS(4249), - [sym__cite_suppress_author] = ACTIONS(4249), - [sym__shortcode_open_escaped] = ACTIONS(4249), - [sym__shortcode_open] = ACTIONS(4249), - [sym__unclosed_span] = ACTIONS(4249), - [sym__strong_emphasis_open_star] = ACTIONS(4249), - [sym__strong_emphasis_open_underscore] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__strikeout_close] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), }, [STATE(584)] = { - [sym__qmd_attribute] = STATE(1618), - [sym_raw_attribute] = STATE(1618), - [sym_commonmark_attribute] = STATE(1618), - [sym_language_attribute] = STATE(1618), - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__strikeout_close] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - }, - [STATE(585)] = { - [sym__qmd_attribute] = STATE(1619), - [sym_raw_attribute] = STATE(1619), - [sym_commonmark_attribute] = STATE(1619), - [sym_language_attribute] = STATE(1619), + [sym__qmd_attribute] = STATE(1613), + [sym_raw_attribute] = STATE(1613), + [sym_commonmark_attribute] = STATE(1613), + [sym_language_attribute] = STATE(1613), [sym__backslash_escape] = ACTIONS(4187), [sym_entity_reference] = ACTIONS(4187), [sym_numeric_character_reference] = ACTIONS(4187), @@ -86874,11 +86802,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4187), [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, - [STATE(586)] = { - [sym__qmd_attribute] = STATE(1620), - [sym_raw_attribute] = STATE(1620), - [sym_commonmark_attribute] = STATE(1620), - [sym_language_attribute] = STATE(1620), + [STATE(585)] = { + [sym__qmd_attribute] = STATE(1614), + [sym_raw_attribute] = STATE(1614), + [sym_commonmark_attribute] = STATE(1614), + [sym_language_attribute] = STATE(1614), [sym__backslash_escape] = ACTIONS(4193), [sym_entity_reference] = ACTIONS(4193), [sym_numeric_character_reference] = ACTIONS(4193), @@ -86945,11 +86873,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4193), [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, - [STATE(587)] = { - [sym__qmd_attribute] = STATE(1621), - [sym_raw_attribute] = STATE(1621), - [sym_commonmark_attribute] = STATE(1621), - [sym_language_attribute] = STATE(1621), + [STATE(586)] = { + [sym__qmd_attribute] = STATE(1615), + [sym_raw_attribute] = STATE(1615), + [sym_commonmark_attribute] = STATE(1615), + [sym_language_attribute] = STATE(1615), [sym__backslash_escape] = ACTIONS(4197), [sym_entity_reference] = ACTIONS(4197), [sym_numeric_character_reference] = ACTIONS(4197), @@ -87016,11 +86944,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4197), [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, - [STATE(588)] = { - [sym__qmd_attribute] = STATE(1627), - [sym_raw_attribute] = STATE(1627), - [sym_commonmark_attribute] = STATE(1627), - [sym_language_attribute] = STATE(1627), + [STATE(587)] = { + [sym__qmd_attribute] = STATE(1621), + [sym_raw_attribute] = STATE(1621), + [sym_commonmark_attribute] = STATE(1621), + [sym_language_attribute] = STATE(1621), [sym__backslash_escape] = ACTIONS(4201), [sym_entity_reference] = ACTIONS(4201), [sym_numeric_character_reference] = ACTIONS(4201), @@ -87087,7 +87015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4201), [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, - [STATE(589)] = { + [STATE(588)] = { [sym__qmd_attribute] = STATE(1275), [sym_raw_attribute] = STATE(1275), [sym_commonmark_attribute] = STATE(1275), @@ -87117,7 +87045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4239), [anon_sym_CARET] = ACTIONS(4239), [anon_sym_BQUOTE] = ACTIONS(4237), - [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4249), [anon_sym_PIPE] = ACTIONS(4237), [anon_sym_TILDE] = ACTIONS(4237), [anon_sym_LPAREN] = ACTIONS(4237), @@ -87158,11 +87086,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4237), [sym__strong_emphasis_close_underscore] = ACTIONS(4237), }, - [STATE(590)] = { - [sym__qmd_attribute] = STATE(1628), - [sym_raw_attribute] = STATE(1628), - [sym_commonmark_attribute] = STATE(1628), - [sym_language_attribute] = STATE(1628), + [STATE(589)] = { + [sym__qmd_attribute] = STATE(1622), + [sym_raw_attribute] = STATE(1622), + [sym_commonmark_attribute] = STATE(1622), + [sym_language_attribute] = STATE(1622), [sym__backslash_escape] = ACTIONS(4205), [sym_entity_reference] = ACTIONS(4205), [sym_numeric_character_reference] = ACTIONS(4205), @@ -87229,11 +87157,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4205), [sym__strong_emphasis_open_underscore] = ACTIONS(4205), }, - [STATE(591)] = { - [sym__qmd_attribute] = STATE(1634), - [sym_raw_attribute] = STATE(1634), - [sym_commonmark_attribute] = STATE(1634), - [sym_language_attribute] = STATE(1634), + [STATE(590)] = { + [sym__qmd_attribute] = STATE(1628), + [sym_raw_attribute] = STATE(1628), + [sym_commonmark_attribute] = STATE(1628), + [sym_language_attribute] = STATE(1628), [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), [sym_numeric_character_reference] = ACTIONS(4209), @@ -87300,11 +87228,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4209), [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, - [STATE(592)] = { - [sym__qmd_attribute] = STATE(1635), - [sym_raw_attribute] = STATE(1635), - [sym_commonmark_attribute] = STATE(1635), - [sym_language_attribute] = STATE(1635), + [STATE(591)] = { + [sym__qmd_attribute] = STATE(1629), + [sym_raw_attribute] = STATE(1629), + [sym_commonmark_attribute] = STATE(1629), + [sym_language_attribute] = STATE(1629), [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), [sym_numeric_character_reference] = ACTIONS(4213), @@ -87371,11 +87299,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4213), [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, - [STATE(593)] = { - [sym__qmd_attribute] = STATE(1640), - [sym_raw_attribute] = STATE(1640), - [sym_commonmark_attribute] = STATE(1640), - [sym_language_attribute] = STATE(1640), + [STATE(592)] = { + [sym__qmd_attribute] = STATE(1634), + [sym_raw_attribute] = STATE(1634), + [sym_commonmark_attribute] = STATE(1634), + [sym_language_attribute] = STATE(1634), [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -87442,11 +87370,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4217), [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, - [STATE(594)] = { - [sym__qmd_attribute] = STATE(1641), - [sym_raw_attribute] = STATE(1641), - [sym_commonmark_attribute] = STATE(1641), - [sym_language_attribute] = STATE(1641), + [STATE(593)] = { + [sym__qmd_attribute] = STATE(1635), + [sym_raw_attribute] = STATE(1635), + [sym_commonmark_attribute] = STATE(1635), + [sym_language_attribute] = STATE(1635), [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -87513,11 +87441,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4221), [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, - [STATE(595)] = { - [sym__qmd_attribute] = STATE(1644), - [sym_raw_attribute] = STATE(1644), - [sym_commonmark_attribute] = STATE(1644), - [sym_language_attribute] = STATE(1644), + [STATE(594)] = { + [sym__qmd_attribute] = STATE(1638), + [sym_raw_attribute] = STATE(1638), + [sym_commonmark_attribute] = STATE(1638), + [sym_language_attribute] = STATE(1638), [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -87584,11 +87512,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4225), [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, - [STATE(596)] = { - [sym__qmd_attribute] = STATE(1645), - [sym_raw_attribute] = STATE(1645), - [sym_commonmark_attribute] = STATE(1645), - [sym_language_attribute] = STATE(1645), + [STATE(595)] = { + [sym__qmd_attribute] = STATE(1639), + [sym_raw_attribute] = STATE(1639), + [sym_commonmark_attribute] = STATE(1639), + [sym_language_attribute] = STATE(1639), [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -87655,11 +87583,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4229), [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, - [STATE(597)] = { - [sym__qmd_attribute] = STATE(1646), - [sym_raw_attribute] = STATE(1646), - [sym_commonmark_attribute] = STATE(1646), - [sym_language_attribute] = STATE(1646), + [STATE(596)] = { + [sym__qmd_attribute] = STATE(1640), + [sym_raw_attribute] = STATE(1640), + [sym_commonmark_attribute] = STATE(1640), + [sym_language_attribute] = STATE(1640), [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -87726,11 +87654,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4233), [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, - [STATE(598)] = { - [sym__qmd_attribute] = STATE(1648), - [sym_raw_attribute] = STATE(1648), - [sym_commonmark_attribute] = STATE(1648), - [sym_language_attribute] = STATE(1648), + [STATE(597)] = { + [sym__qmd_attribute] = STATE(1642), + [sym_raw_attribute] = STATE(1642), + [sym_commonmark_attribute] = STATE(1642), + [sym_language_attribute] = STATE(1642), [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -87797,11 +87725,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4237), [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, - [STATE(599)] = { - [sym__qmd_attribute] = STATE(1650), - [sym_raw_attribute] = STATE(1650), - [sym_commonmark_attribute] = STATE(1650), - [sym_language_attribute] = STATE(1650), + [STATE(598)] = { + [sym__qmd_attribute] = STATE(1644), + [sym_raw_attribute] = STATE(1644), + [sym_commonmark_attribute] = STATE(1644), + [sym_language_attribute] = STATE(1644), [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -87868,11 +87796,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4241), [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, - [STATE(600)] = { - [sym__qmd_attribute] = STATE(1651), - [sym_raw_attribute] = STATE(1651), - [sym_commonmark_attribute] = STATE(1651), - [sym_language_attribute] = STATE(1651), + [STATE(599)] = { + [sym__qmd_attribute] = STATE(1645), + [sym_raw_attribute] = STATE(1645), + [sym_commonmark_attribute] = STATE(1645), + [sym_language_attribute] = STATE(1645), [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -87939,153 +87867,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4245), [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, - [STATE(601)] = { - [sym__qmd_attribute] = STATE(1674), - [sym_raw_attribute] = STATE(1674), - [sym_commonmark_attribute] = STATE(1674), - [sym_language_attribute] = STATE(1674), - [sym__backslash_escape] = ACTIONS(4257), - [sym_entity_reference] = ACTIONS(4257), - [sym_numeric_character_reference] = ACTIONS(4257), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4257), - [anon_sym_BANG] = ACTIONS(4257), - [anon_sym_DQUOTE] = ACTIONS(4257), - [anon_sym_POUND] = ACTIONS(4257), - [anon_sym_DOLLAR] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4257), - [anon_sym_AMP] = ACTIONS(4259), - [anon_sym_SQUOTE] = ACTIONS(4257), - [anon_sym_PLUS] = ACTIONS(4257), - [anon_sym_COMMA] = ACTIONS(4257), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_DOT] = ACTIONS(4259), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_COLON] = ACTIONS(4257), - [anon_sym_SEMI] = ACTIONS(4257), - [anon_sym_EQ] = ACTIONS(4257), - [anon_sym_QMARK] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_BSLASH] = ACTIONS(4259), - [anon_sym_CARET] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4257), + [STATE(600)] = { + [sym__qmd_attribute] = STATE(1668), + [sym_raw_attribute] = STATE(1668), + [sym_commonmark_attribute] = STATE(1668), + [sym_language_attribute] = STATE(1668), + [sym__backslash_escape] = ACTIONS(4251), + [sym_entity_reference] = ACTIONS(4251), + [sym_numeric_character_reference] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_DQUOTE] = ACTIONS(4251), + [anon_sym_POUND] = ACTIONS(4251), + [anon_sym_DOLLAR] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_COMMA] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_COLON] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4251), + [anon_sym_QMARK] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_BSLASH] = ACTIONS(4253), + [anon_sym_CARET] = ACTIONS(4253), + [anon_sym_BQUOTE] = ACTIONS(4251), [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_PIPE] = ACTIONS(4257), - [anon_sym_TILDE] = ACTIONS(4257), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), [anon_sym_LPAREN] = ACTIONS(4305), - [anon_sym_RPAREN] = ACTIONS(4257), - [sym__newline_token] = ACTIONS(4257), - [aux_sym_insert_token1] = ACTIONS(4257), - [aux_sym_delete_token1] = ACTIONS(4257), - [aux_sym_highlight_token1] = ACTIONS(4257), - [aux_sym_edit_comment_token1] = ACTIONS(4257), - [anon_sym_CARET_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_CARET] = ACTIONS(4257), - [sym_uri_autolink] = ACTIONS(4257), - [sym_email_autolink] = ACTIONS(4257), - [sym__whitespace_ge_2] = ACTIONS(4257), - [aux_sym__whitespace_token1] = ACTIONS(4259), - [sym__word_no_digit] = ACTIONS(4257), - [sym__digits] = ACTIONS(4257), - [anon_sym_DASH_DASH] = ACTIONS(4259), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4257), - [sym__code_span_start] = ACTIONS(4257), - [sym__emphasis_open_star] = ACTIONS(4257), - [sym__emphasis_open_underscore] = ACTIONS(4257), - [sym__strikeout_open] = ACTIONS(4257), - [sym__latex_span_start] = ACTIONS(4257), - [sym__single_quote_open] = ACTIONS(4257), - [sym__single_quote_close] = ACTIONS(4257), - [sym__double_quote_open] = ACTIONS(4257), - [sym__superscript_open] = ACTIONS(4257), - [sym__subscript_open] = ACTIONS(4257), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4257), - [sym__cite_author_in_text] = ACTIONS(4257), - [sym__cite_suppress_author] = ACTIONS(4257), - [sym__shortcode_open_escaped] = ACTIONS(4257), - [sym__shortcode_open] = ACTIONS(4257), - [sym__unclosed_span] = ACTIONS(4257), - [sym__strong_emphasis_open_star] = ACTIONS(4257), - [sym__strong_emphasis_open_underscore] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4251), + [sym__newline_token] = ACTIONS(4251), + [aux_sym_insert_token1] = ACTIONS(4251), + [aux_sym_delete_token1] = ACTIONS(4251), + [aux_sym_highlight_token1] = ACTIONS(4251), + [aux_sym_edit_comment_token1] = ACTIONS(4251), + [anon_sym_CARET_LBRACK] = ACTIONS(4251), + [anon_sym_LBRACK_CARET] = ACTIONS(4251), + [sym_uri_autolink] = ACTIONS(4251), + [sym_email_autolink] = ACTIONS(4251), + [sym__whitespace_ge_2] = ACTIONS(4251), + [aux_sym__whitespace_token1] = ACTIONS(4253), + [sym__word_no_digit] = ACTIONS(4251), + [sym__digits] = ACTIONS(4251), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4251), + [sym__code_span_start] = ACTIONS(4251), + [sym__emphasis_open_star] = ACTIONS(4251), + [sym__emphasis_open_underscore] = ACTIONS(4251), + [sym__strikeout_open] = ACTIONS(4251), + [sym__latex_span_start] = ACTIONS(4251), + [sym__single_quote_open] = ACTIONS(4251), + [sym__single_quote_close] = ACTIONS(4251), + [sym__double_quote_open] = ACTIONS(4251), + [sym__superscript_open] = ACTIONS(4251), + [sym__subscript_open] = ACTIONS(4251), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4251), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4251), + [sym__cite_author_in_text] = ACTIONS(4251), + [sym__cite_suppress_author] = ACTIONS(4251), + [sym__shortcode_open_escaped] = ACTIONS(4251), + [sym__shortcode_open] = ACTIONS(4251), + [sym__unclosed_span] = ACTIONS(4251), + [sym__strong_emphasis_open_star] = ACTIONS(4251), + [sym__strong_emphasis_open_underscore] = ACTIONS(4251), }, - [STATE(602)] = { - [sym__qmd_attribute] = STATE(1675), - [sym_raw_attribute] = STATE(1675), - [sym_commonmark_attribute] = STATE(1675), - [sym_language_attribute] = STATE(1675), - [sym__backslash_escape] = ACTIONS(4267), - [sym_entity_reference] = ACTIONS(4267), - [sym_numeric_character_reference] = ACTIONS(4267), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4267), - [anon_sym_BANG] = ACTIONS(4267), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_POUND] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_PERCENT] = ACTIONS(4267), - [anon_sym_AMP] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4267), - [anon_sym_PLUS] = ACTIONS(4267), - [anon_sym_COMMA] = ACTIONS(4267), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4267), - [anon_sym_COLON] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4267), - [anon_sym_EQ] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4267), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_BSLASH] = ACTIONS(4269), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4267), + [STATE(601)] = { + [sym__qmd_attribute] = STATE(1669), + [sym_raw_attribute] = STATE(1669), + [sym_commonmark_attribute] = STATE(1669), + [sym_language_attribute] = STATE(1669), + [sym__backslash_escape] = ACTIONS(4263), + [sym_entity_reference] = ACTIONS(4263), + [sym_numeric_character_reference] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4265), + [anon_sym_GT] = ACTIONS(4263), + [anon_sym_BANG] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(4263), + [anon_sym_DOLLAR] = ACTIONS(4263), + [anon_sym_PERCENT] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4265), + [anon_sym_SQUOTE] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_COMMA] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_COLON] = ACTIONS(4263), + [anon_sym_SEMI] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_BSLASH] = ACTIONS(4265), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_BQUOTE] = ACTIONS(4263), [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_PIPE] = ACTIONS(4267), - [anon_sym_TILDE] = ACTIONS(4267), - [anon_sym_LPAREN] = ACTIONS(4267), - [anon_sym_RPAREN] = ACTIONS(4267), - [sym__newline_token] = ACTIONS(4267), - [aux_sym_insert_token1] = ACTIONS(4267), - [aux_sym_delete_token1] = ACTIONS(4267), - [aux_sym_highlight_token1] = ACTIONS(4267), - [aux_sym_edit_comment_token1] = ACTIONS(4267), - [anon_sym_CARET_LBRACK] = ACTIONS(4267), - [anon_sym_LBRACK_CARET] = ACTIONS(4267), - [sym_uri_autolink] = ACTIONS(4267), - [sym_email_autolink] = ACTIONS(4267), - [sym__whitespace_ge_2] = ACTIONS(4267), - [aux_sym__whitespace_token1] = ACTIONS(4269), - [sym__word_no_digit] = ACTIONS(4267), - [sym__digits] = ACTIONS(4267), - [anon_sym_DASH_DASH] = ACTIONS(4269), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), - [sym__code_span_start] = ACTIONS(4267), - [sym__emphasis_open_star] = ACTIONS(4267), - [sym__emphasis_open_underscore] = ACTIONS(4267), - [sym__strikeout_open] = ACTIONS(4267), - [sym__latex_span_start] = ACTIONS(4267), - [sym__single_quote_open] = ACTIONS(4267), - [sym__single_quote_close] = ACTIONS(4267), - [sym__double_quote_open] = ACTIONS(4267), - [sym__superscript_open] = ACTIONS(4267), - [sym__subscript_open] = ACTIONS(4267), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), - [sym__cite_author_in_text] = ACTIONS(4267), - [sym__cite_suppress_author] = ACTIONS(4267), - [sym__shortcode_open_escaped] = ACTIONS(4267), - [sym__shortcode_open] = ACTIONS(4267), - [sym__unclosed_span] = ACTIONS(4267), - [sym__strong_emphasis_open_star] = ACTIONS(4267), - [sym__strong_emphasis_open_underscore] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4263), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym_RPAREN] = ACTIONS(4263), + [sym__newline_token] = ACTIONS(4263), + [aux_sym_insert_token1] = ACTIONS(4263), + [aux_sym_delete_token1] = ACTIONS(4263), + [aux_sym_highlight_token1] = ACTIONS(4263), + [aux_sym_edit_comment_token1] = ACTIONS(4263), + [anon_sym_CARET_LBRACK] = ACTIONS(4263), + [anon_sym_LBRACK_CARET] = ACTIONS(4263), + [sym_uri_autolink] = ACTIONS(4263), + [sym_email_autolink] = ACTIONS(4263), + [sym__whitespace_ge_2] = ACTIONS(4263), + [aux_sym__whitespace_token1] = ACTIONS(4265), + [sym__word_no_digit] = ACTIONS(4263), + [sym__digits] = ACTIONS(4263), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), + [sym__code_span_start] = ACTIONS(4263), + [sym__emphasis_open_star] = ACTIONS(4263), + [sym__emphasis_open_underscore] = ACTIONS(4263), + [sym__strikeout_open] = ACTIONS(4263), + [sym__latex_span_start] = ACTIONS(4263), + [sym__single_quote_open] = ACTIONS(4263), + [sym__single_quote_close] = ACTIONS(4263), + [sym__double_quote_open] = ACTIONS(4263), + [sym__superscript_open] = ACTIONS(4263), + [sym__subscript_open] = ACTIONS(4263), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), + [sym__cite_author_in_text] = ACTIONS(4263), + [sym__cite_suppress_author] = ACTIONS(4263), + [sym__shortcode_open_escaped] = ACTIONS(4263), + [sym__shortcode_open] = ACTIONS(4263), + [sym__unclosed_span] = ACTIONS(4263), + [sym__strong_emphasis_open_star] = ACTIONS(4263), + [sym__strong_emphasis_open_underscore] = ACTIONS(4263), }, - [STATE(603)] = { - [sym__qmd_attribute] = STATE(1277), - [sym_raw_attribute] = STATE(1277), - [sym_commonmark_attribute] = STATE(1277), - [sym_language_attribute] = STATE(1277), + [STATE(602)] = { + [sym__qmd_attribute] = STATE(1276), + [sym_raw_attribute] = STATE(1276), + [sym_commonmark_attribute] = STATE(1276), + [sym_language_attribute] = STATE(1276), [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -88111,7 +88039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4243), [anon_sym_CARET] = ACTIONS(4243), [anon_sym_BQUOTE] = ACTIONS(4241), - [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4249), [anon_sym_PIPE] = ACTIONS(4241), [anon_sym_TILDE] = ACTIONS(4241), [anon_sym_LPAREN] = ACTIONS(4241), @@ -88152,11 +88080,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4241), [sym__strong_emphasis_close_underscore] = ACTIONS(4241), }, - [STATE(604)] = { - [sym__qmd_attribute] = STATE(1676), - [sym_raw_attribute] = STATE(1676), - [sym_commonmark_attribute] = STATE(1676), - [sym_language_attribute] = STATE(1676), + [STATE(603)] = { + [sym__qmd_attribute] = STATE(1670), + [sym_raw_attribute] = STATE(1670), + [sym_commonmark_attribute] = STATE(1670), + [sym_language_attribute] = STATE(1670), [sym__backslash_escape] = ACTIONS(4283), [sym_entity_reference] = ACTIONS(4283), [sym_numeric_character_reference] = ACTIONS(4283), @@ -88223,11 +88151,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4283), [sym__strong_emphasis_open_underscore] = ACTIONS(4283), }, - [STATE(605)] = { - [sym__qmd_attribute] = STATE(1688), - [sym_raw_attribute] = STATE(1688), - [sym_commonmark_attribute] = STATE(1688), - [sym_language_attribute] = STATE(1688), + [STATE(604)] = { + [sym__qmd_attribute] = STATE(1682), + [sym_raw_attribute] = STATE(1682), + [sym_commonmark_attribute] = STATE(1682), + [sym_language_attribute] = STATE(1682), [sym__backslash_escape] = ACTIONS(4181), [sym_entity_reference] = ACTIONS(4181), [sym_numeric_character_reference] = ACTIONS(4181), @@ -88294,153 +88222,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4181), [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, + [STATE(605)] = { + [sym__qmd_attribute] = STATE(1685), + [sym_raw_attribute] = STATE(1685), + [sym_commonmark_attribute] = STATE(1685), + [sym_language_attribute] = STATE(1685), + [sym__backslash_escape] = ACTIONS(4259), + [sym_entity_reference] = ACTIONS(4259), + [sym_numeric_character_reference] = ACTIONS(4259), + [anon_sym_LT] = ACTIONS(4261), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + [anon_sym_SQUOTE] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_COMMA] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_DOT] = ACTIONS(4261), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_QMARK] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_BSLASH] = ACTIONS(4261), + [anon_sym_CARET] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym_RPAREN] = ACTIONS(4259), + [sym__newline_token] = ACTIONS(4259), + [aux_sym_insert_token1] = ACTIONS(4259), + [aux_sym_delete_token1] = ACTIONS(4259), + [aux_sym_highlight_token1] = ACTIONS(4259), + [aux_sym_edit_comment_token1] = ACTIONS(4259), + [anon_sym_CARET_LBRACK] = ACTIONS(4259), + [anon_sym_LBRACK_CARET] = ACTIONS(4259), + [sym_uri_autolink] = ACTIONS(4259), + [sym_email_autolink] = ACTIONS(4259), + [sym__whitespace_ge_2] = ACTIONS(4259), + [aux_sym__whitespace_token1] = ACTIONS(4261), + [sym__word_no_digit] = ACTIONS(4259), + [sym__digits] = ACTIONS(4259), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4259), + [sym__code_span_start] = ACTIONS(4259), + [sym__emphasis_open_star] = ACTIONS(4259), + [sym__emphasis_open_underscore] = ACTIONS(4259), + [sym__strikeout_open] = ACTIONS(4259), + [sym__latex_span_start] = ACTIONS(4259), + [sym__single_quote_open] = ACTIONS(4259), + [sym__single_quote_close] = ACTIONS(4259), + [sym__double_quote_open] = ACTIONS(4259), + [sym__superscript_open] = ACTIONS(4259), + [sym__subscript_open] = ACTIONS(4259), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4259), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4259), + [sym__cite_author_in_text] = ACTIONS(4259), + [sym__cite_suppress_author] = ACTIONS(4259), + [sym__shortcode_open_escaped] = ACTIONS(4259), + [sym__shortcode_open] = ACTIONS(4259), + [sym__unclosed_span] = ACTIONS(4259), + [sym__strong_emphasis_open_star] = ACTIONS(4259), + [sym__strong_emphasis_open_underscore] = ACTIONS(4259), + }, [STATE(606)] = { - [sym__qmd_attribute] = STATE(1691), - [sym_raw_attribute] = STATE(1691), - [sym_commonmark_attribute] = STATE(1691), - [sym_language_attribute] = STATE(1691), - [sym__backslash_escape] = ACTIONS(4263), - [sym_entity_reference] = ACTIONS(4263), - [sym_numeric_character_reference] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(4265), - [anon_sym_GT] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4263), - [anon_sym_POUND] = ACTIONS(4263), - [anon_sym_DOLLAR] = ACTIONS(4263), - [anon_sym_PERCENT] = ACTIONS(4263), - [anon_sym_AMP] = ACTIONS(4265), - [anon_sym_SQUOTE] = ACTIONS(4263), - [anon_sym_PLUS] = ACTIONS(4263), - [anon_sym_COMMA] = ACTIONS(4263), - [anon_sym_DASH] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4265), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_COLON] = ACTIONS(4263), - [anon_sym_SEMI] = ACTIONS(4263), - [anon_sym_EQ] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4263), - [anon_sym_LBRACK] = ACTIONS(4265), - [anon_sym_BSLASH] = ACTIONS(4265), - [anon_sym_CARET] = ACTIONS(4265), - [anon_sym_BQUOTE] = ACTIONS(4263), + [sym__qmd_attribute] = STATE(1686), + [sym_raw_attribute] = STATE(1686), + [sym_commonmark_attribute] = STATE(1686), + [sym_language_attribute] = STATE(1686), + [sym__backslash_escape] = ACTIONS(4267), + [sym_entity_reference] = ACTIONS(4267), + [sym_numeric_character_reference] = ACTIONS(4267), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_DQUOTE] = ACTIONS(4267), + [anon_sym_POUND] = ACTIONS(4267), + [anon_sym_DOLLAR] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_SQUOTE] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_COMMA] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4269), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_COLON] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_QMARK] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_BSLASH] = ACTIONS(4269), + [anon_sym_CARET] = ACTIONS(4269), + [anon_sym_BQUOTE] = ACTIONS(4267), [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_PIPE] = ACTIONS(4263), - [anon_sym_TILDE] = ACTIONS(4263), - [anon_sym_LPAREN] = ACTIONS(4263), - [anon_sym_RPAREN] = ACTIONS(4263), - [sym__newline_token] = ACTIONS(4263), - [aux_sym_insert_token1] = ACTIONS(4263), - [aux_sym_delete_token1] = ACTIONS(4263), - [aux_sym_highlight_token1] = ACTIONS(4263), - [aux_sym_edit_comment_token1] = ACTIONS(4263), - [anon_sym_CARET_LBRACK] = ACTIONS(4263), - [anon_sym_LBRACK_CARET] = ACTIONS(4263), - [sym_uri_autolink] = ACTIONS(4263), - [sym_email_autolink] = ACTIONS(4263), - [sym__whitespace_ge_2] = ACTIONS(4263), - [aux_sym__whitespace_token1] = ACTIONS(4265), - [sym__word_no_digit] = ACTIONS(4263), - [sym__digits] = ACTIONS(4263), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), - [sym__code_span_start] = ACTIONS(4263), - [sym__emphasis_open_star] = ACTIONS(4263), - [sym__emphasis_open_underscore] = ACTIONS(4263), - [sym__strikeout_open] = ACTIONS(4263), - [sym__latex_span_start] = ACTIONS(4263), - [sym__single_quote_open] = ACTIONS(4263), - [sym__single_quote_close] = ACTIONS(4263), - [sym__double_quote_open] = ACTIONS(4263), - [sym__superscript_open] = ACTIONS(4263), - [sym__subscript_open] = ACTIONS(4263), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), - [sym__cite_author_in_text] = ACTIONS(4263), - [sym__cite_suppress_author] = ACTIONS(4263), - [sym__shortcode_open_escaped] = ACTIONS(4263), - [sym__shortcode_open] = ACTIONS(4263), - [sym__unclosed_span] = ACTIONS(4263), - [sym__strong_emphasis_open_star] = ACTIONS(4263), - [sym__strong_emphasis_open_underscore] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4267), + [anon_sym_TILDE] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_RPAREN] = ACTIONS(4267), + [sym__newline_token] = ACTIONS(4267), + [aux_sym_insert_token1] = ACTIONS(4267), + [aux_sym_delete_token1] = ACTIONS(4267), + [aux_sym_highlight_token1] = ACTIONS(4267), + [aux_sym_edit_comment_token1] = ACTIONS(4267), + [anon_sym_CARET_LBRACK] = ACTIONS(4267), + [anon_sym_LBRACK_CARET] = ACTIONS(4267), + [sym_uri_autolink] = ACTIONS(4267), + [sym_email_autolink] = ACTIONS(4267), + [sym__whitespace_ge_2] = ACTIONS(4267), + [aux_sym__whitespace_token1] = ACTIONS(4269), + [sym__word_no_digit] = ACTIONS(4267), + [sym__digits] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), + [sym__code_span_start] = ACTIONS(4267), + [sym__emphasis_open_star] = ACTIONS(4267), + [sym__emphasis_open_underscore] = ACTIONS(4267), + [sym__strikeout_open] = ACTIONS(4267), + [sym__latex_span_start] = ACTIONS(4267), + [sym__single_quote_open] = ACTIONS(4267), + [sym__single_quote_close] = ACTIONS(4267), + [sym__double_quote_open] = ACTIONS(4267), + [sym__superscript_open] = ACTIONS(4267), + [sym__subscript_open] = ACTIONS(4267), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), + [sym__cite_author_in_text] = ACTIONS(4267), + [sym__cite_suppress_author] = ACTIONS(4267), + [sym__shortcode_open_escaped] = ACTIONS(4267), + [sym__shortcode_open] = ACTIONS(4267), + [sym__unclosed_span] = ACTIONS(4267), + [sym__strong_emphasis_open_star] = ACTIONS(4267), + [sym__strong_emphasis_open_underscore] = ACTIONS(4267), }, [STATE(607)] = { - [sym__qmd_attribute] = STATE(1692), - [sym_raw_attribute] = STATE(1692), - [sym_commonmark_attribute] = STATE(1692), - [sym_language_attribute] = STATE(1692), - [sym__backslash_escape] = ACTIONS(4271), - [sym_entity_reference] = ACTIONS(4271), - [sym_numeric_character_reference] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4273), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_POUND] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4273), - [anon_sym_SQUOTE] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4273), - [anon_sym_SLASH] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_EQ] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(4271), - [anon_sym_LBRACK] = ACTIONS(4273), - [anon_sym_BSLASH] = ACTIONS(4273), - [anon_sym_CARET] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4271), + [sym__qmd_attribute] = STATE(1687), + [sym_raw_attribute] = STATE(1687), + [sym_commonmark_attribute] = STATE(1687), + [sym_language_attribute] = STATE(1687), + [sym__backslash_escape] = ACTIONS(4275), + [sym_entity_reference] = ACTIONS(4275), + [sym_numeric_character_reference] = ACTIONS(4275), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + [anon_sym_SQUOTE] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_COMMA] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4277), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_COLON] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_QMARK] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_BSLASH] = ACTIONS(4277), + [anon_sym_CARET] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4275), [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_TILDE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [sym__newline_token] = ACTIONS(4271), - [aux_sym_insert_token1] = ACTIONS(4271), - [aux_sym_delete_token1] = ACTIONS(4271), - [aux_sym_highlight_token1] = ACTIONS(4271), - [aux_sym_edit_comment_token1] = ACTIONS(4271), - [anon_sym_CARET_LBRACK] = ACTIONS(4271), - [anon_sym_LBRACK_CARET] = ACTIONS(4271), - [sym_uri_autolink] = ACTIONS(4271), - [sym_email_autolink] = ACTIONS(4271), - [sym__whitespace_ge_2] = ACTIONS(4271), - [aux_sym__whitespace_token1] = ACTIONS(4273), - [sym__word_no_digit] = ACTIONS(4271), - [sym__digits] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4273), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), - [sym__code_span_start] = ACTIONS(4271), - [sym__emphasis_open_star] = ACTIONS(4271), - [sym__emphasis_open_underscore] = ACTIONS(4271), - [sym__strikeout_open] = ACTIONS(4271), - [sym__latex_span_start] = ACTIONS(4271), - [sym__single_quote_open] = ACTIONS(4271), - [sym__single_quote_close] = ACTIONS(4271), - [sym__double_quote_open] = ACTIONS(4271), - [sym__superscript_open] = ACTIONS(4271), - [sym__subscript_open] = ACTIONS(4271), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), - [sym__cite_author_in_text] = ACTIONS(4271), - [sym__cite_suppress_author] = ACTIONS(4271), - [sym__shortcode_open_escaped] = ACTIONS(4271), - [sym__shortcode_open] = ACTIONS(4271), - [sym__unclosed_span] = ACTIONS(4271), - [sym__strong_emphasis_open_star] = ACTIONS(4271), - [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4275), + [anon_sym_TILDE] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4275), + [anon_sym_RPAREN] = ACTIONS(4275), + [sym__newline_token] = ACTIONS(4275), + [aux_sym_insert_token1] = ACTIONS(4275), + [aux_sym_delete_token1] = ACTIONS(4275), + [aux_sym_highlight_token1] = ACTIONS(4275), + [aux_sym_edit_comment_token1] = ACTIONS(4275), + [anon_sym_CARET_LBRACK] = ACTIONS(4275), + [anon_sym_LBRACK_CARET] = ACTIONS(4275), + [sym_uri_autolink] = ACTIONS(4275), + [sym_email_autolink] = ACTIONS(4275), + [sym__whitespace_ge_2] = ACTIONS(4275), + [aux_sym__whitespace_token1] = ACTIONS(4277), + [sym__word_no_digit] = ACTIONS(4275), + [sym__digits] = ACTIONS(4275), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), + [sym__code_span_start] = ACTIONS(4275), + [sym__emphasis_open_star] = ACTIONS(4275), + [sym__emphasis_open_underscore] = ACTIONS(4275), + [sym__strikeout_open] = ACTIONS(4275), + [sym__latex_span_start] = ACTIONS(4275), + [sym__single_quote_open] = ACTIONS(4275), + [sym__single_quote_close] = ACTIONS(4275), + [sym__double_quote_open] = ACTIONS(4275), + [sym__superscript_open] = ACTIONS(4275), + [sym__subscript_open] = ACTIONS(4275), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), + [sym__cite_author_in_text] = ACTIONS(4275), + [sym__cite_suppress_author] = ACTIONS(4275), + [sym__shortcode_open_escaped] = ACTIONS(4275), + [sym__shortcode_open] = ACTIONS(4275), + [sym__unclosed_span] = ACTIONS(4275), + [sym__strong_emphasis_open_star] = ACTIONS(4275), + [sym__strong_emphasis_open_underscore] = ACTIONS(4275), }, [STATE(608)] = { - [sym__qmd_attribute] = STATE(1693), - [sym_raw_attribute] = STATE(1693), - [sym_commonmark_attribute] = STATE(1693), - [sym_language_attribute] = STATE(1693), + [sym__qmd_attribute] = STATE(1688), + [sym_raw_attribute] = STATE(1688), + [sym_commonmark_attribute] = STATE(1688), + [sym_language_attribute] = STATE(1688), [sym__backslash_escape] = ACTIONS(4287), [sym_entity_reference] = ACTIONS(4287), [sym_numeric_character_reference] = ACTIONS(4287), @@ -88508,10 +88507,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4287), }, [STATE(609)] = { - [sym__qmd_attribute] = STATE(1694), - [sym_raw_attribute] = STATE(1694), - [sym_commonmark_attribute] = STATE(1694), - [sym_language_attribute] = STATE(1694), + [sym__qmd_attribute] = STATE(1277), + [sym_raw_attribute] = STATE(1277), + [sym_commonmark_attribute] = STATE(1277), + [sym_language_attribute] = STATE(1277), + [sym__backslash_escape] = ACTIONS(4245), + [sym_entity_reference] = ACTIONS(4245), + [sym_numeric_character_reference] = ACTIONS(4245), + [anon_sym_LT] = ACTIONS(4247), + [anon_sym_GT] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(4245), + [anon_sym_DQUOTE] = ACTIONS(4245), + [anon_sym_POUND] = ACTIONS(4245), + [anon_sym_DOLLAR] = ACTIONS(4245), + [anon_sym_PERCENT] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_SQUOTE] = ACTIONS(4245), + [anon_sym_PLUS] = ACTIONS(4245), + [anon_sym_COMMA] = ACTIONS(4245), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_DOT] = ACTIONS(4247), + [anon_sym_SLASH] = ACTIONS(4245), + [anon_sym_COLON] = ACTIONS(4245), + [anon_sym_SEMI] = ACTIONS(4245), + [anon_sym_EQ] = ACTIONS(4245), + [anon_sym_QMARK] = ACTIONS(4245), + [anon_sym_LBRACK] = ACTIONS(4247), + [anon_sym_BSLASH] = ACTIONS(4247), + [anon_sym_CARET] = ACTIONS(4247), + [anon_sym_BQUOTE] = ACTIONS(4245), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4245), + [anon_sym_TILDE] = ACTIONS(4245), + [anon_sym_LPAREN] = ACTIONS(4245), + [anon_sym_RPAREN] = ACTIONS(4245), + [sym__newline_token] = ACTIONS(4245), + [aux_sym_insert_token1] = ACTIONS(4245), + [aux_sym_delete_token1] = ACTIONS(4245), + [aux_sym_highlight_token1] = ACTIONS(4245), + [aux_sym_edit_comment_token1] = ACTIONS(4245), + [anon_sym_CARET_LBRACK] = ACTIONS(4245), + [anon_sym_LBRACK_CARET] = ACTIONS(4245), + [sym_uri_autolink] = ACTIONS(4245), + [sym_email_autolink] = ACTIONS(4245), + [sym__whitespace_ge_2] = ACTIONS(4245), + [aux_sym__whitespace_token1] = ACTIONS(4247), + [sym__word_no_digit] = ACTIONS(4245), + [sym__digits] = ACTIONS(4245), + [anon_sym_DASH_DASH] = ACTIONS(4247), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4245), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4245), + [sym__code_span_start] = ACTIONS(4245), + [sym__emphasis_open_star] = ACTIONS(4245), + [sym__emphasis_open_underscore] = ACTIONS(4245), + [sym__strikeout_open] = ACTIONS(4245), + [sym__latex_span_start] = ACTIONS(4245), + [sym__single_quote_open] = ACTIONS(4245), + [sym__double_quote_open] = ACTIONS(4245), + [sym__superscript_open] = ACTIONS(4245), + [sym__subscript_open] = ACTIONS(4245), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4245), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4245), + [sym__cite_author_in_text] = ACTIONS(4245), + [sym__cite_suppress_author] = ACTIONS(4245), + [sym__shortcode_open_escaped] = ACTIONS(4245), + [sym__shortcode_open] = ACTIONS(4245), + [sym__unclosed_span] = ACTIONS(4245), + [sym__strong_emphasis_open_star] = ACTIONS(4245), + [sym__strong_emphasis_open_underscore] = ACTIONS(4245), + [sym__strong_emphasis_close_underscore] = ACTIONS(4245), + }, + [STATE(610)] = { + [sym__qmd_attribute] = STATE(1691), + [sym_raw_attribute] = STATE(1691), + [sym_commonmark_attribute] = STATE(1691), + [sym_language_attribute] = STATE(1691), [sym__backslash_escape] = ACTIONS(4291), [sym_entity_reference] = ACTIONS(4291), [sym_numeric_character_reference] = ACTIONS(4291), @@ -88578,224 +88648,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4291), [sym__strong_emphasis_open_underscore] = ACTIONS(4291), }, - [STATE(610)] = { - [sym__qmd_attribute] = STATE(1278), - [sym_raw_attribute] = STATE(1278), - [sym_commonmark_attribute] = STATE(1278), - [sym_language_attribute] = STATE(1278), - [sym__backslash_escape] = ACTIONS(4245), - [sym_entity_reference] = ACTIONS(4245), - [sym_numeric_character_reference] = ACTIONS(4245), - [anon_sym_LT] = ACTIONS(4247), - [anon_sym_GT] = ACTIONS(4245), - [anon_sym_BANG] = ACTIONS(4245), - [anon_sym_DQUOTE] = ACTIONS(4245), - [anon_sym_POUND] = ACTIONS(4245), - [anon_sym_DOLLAR] = ACTIONS(4245), - [anon_sym_PERCENT] = ACTIONS(4245), - [anon_sym_AMP] = ACTIONS(4247), - [anon_sym_SQUOTE] = ACTIONS(4245), - [anon_sym_PLUS] = ACTIONS(4245), - [anon_sym_COMMA] = ACTIONS(4245), - [anon_sym_DASH] = ACTIONS(4247), - [anon_sym_DOT] = ACTIONS(4247), - [anon_sym_SLASH] = ACTIONS(4245), - [anon_sym_COLON] = ACTIONS(4245), - [anon_sym_SEMI] = ACTIONS(4245), - [anon_sym_EQ] = ACTIONS(4245), - [anon_sym_QMARK] = ACTIONS(4245), - [anon_sym_LBRACK] = ACTIONS(4247), - [anon_sym_BSLASH] = ACTIONS(4247), - [anon_sym_CARET] = ACTIONS(4247), - [anon_sym_BQUOTE] = ACTIONS(4245), - [anon_sym_LBRACE] = ACTIONS(4255), - [anon_sym_PIPE] = ACTIONS(4245), - [anon_sym_TILDE] = ACTIONS(4245), - [anon_sym_LPAREN] = ACTIONS(4245), - [anon_sym_RPAREN] = ACTIONS(4245), - [sym__newline_token] = ACTIONS(4245), - [aux_sym_insert_token1] = ACTIONS(4245), - [aux_sym_delete_token1] = ACTIONS(4245), - [aux_sym_highlight_token1] = ACTIONS(4245), - [aux_sym_edit_comment_token1] = ACTIONS(4245), - [anon_sym_CARET_LBRACK] = ACTIONS(4245), - [anon_sym_LBRACK_CARET] = ACTIONS(4245), - [sym_uri_autolink] = ACTIONS(4245), - [sym_email_autolink] = ACTIONS(4245), - [sym__whitespace_ge_2] = ACTIONS(4245), - [aux_sym__whitespace_token1] = ACTIONS(4247), - [sym__word_no_digit] = ACTIONS(4245), - [sym__digits] = ACTIONS(4245), - [anon_sym_DASH_DASH] = ACTIONS(4247), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4245), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4245), - [sym__code_span_start] = ACTIONS(4245), - [sym__emphasis_open_star] = ACTIONS(4245), - [sym__emphasis_open_underscore] = ACTIONS(4245), - [sym__strikeout_open] = ACTIONS(4245), - [sym__latex_span_start] = ACTIONS(4245), - [sym__single_quote_open] = ACTIONS(4245), - [sym__double_quote_open] = ACTIONS(4245), - [sym__superscript_open] = ACTIONS(4245), - [sym__subscript_open] = ACTIONS(4245), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4245), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4245), - [sym__cite_author_in_text] = ACTIONS(4245), - [sym__cite_suppress_author] = ACTIONS(4245), - [sym__shortcode_open_escaped] = ACTIONS(4245), - [sym__shortcode_open] = ACTIONS(4245), - [sym__unclosed_span] = ACTIONS(4245), - [sym__strong_emphasis_open_star] = ACTIONS(4245), - [sym__strong_emphasis_open_underscore] = ACTIONS(4245), - [sym__strong_emphasis_close_underscore] = ACTIONS(4245), - }, [STATE(611)] = { - [sym__qmd_attribute] = STATE(1697), - [sym_raw_attribute] = STATE(1697), - [sym_commonmark_attribute] = STATE(1697), - [sym_language_attribute] = STATE(1697), - [sym__backslash_escape] = ACTIONS(4249), - [sym_entity_reference] = ACTIONS(4249), - [sym_numeric_character_reference] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(4251), - [anon_sym_GT] = ACTIONS(4249), - [anon_sym_BANG] = ACTIONS(4249), - [anon_sym_DQUOTE] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(4249), - [anon_sym_PERCENT] = ACTIONS(4249), - [anon_sym_AMP] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4249), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_COMMA] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4251), - [anon_sym_DOT] = ACTIONS(4251), - [anon_sym_SLASH] = ACTIONS(4249), - [anon_sym_COLON] = ACTIONS(4249), - [anon_sym_SEMI] = ACTIONS(4249), - [anon_sym_EQ] = ACTIONS(4249), - [anon_sym_QMARK] = ACTIONS(4249), - [anon_sym_LBRACK] = ACTIONS(4251), - [anon_sym_BSLASH] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4251), - [anon_sym_BQUOTE] = ACTIONS(4249), + [sym__qmd_attribute] = STATE(1695), + [sym_raw_attribute] = STATE(1695), + [sym_commonmark_attribute] = STATE(1695), + [sym_language_attribute] = STATE(1695), + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_PIPE] = ACTIONS(4249), - [anon_sym_TILDE] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4249), - [anon_sym_RPAREN] = ACTIONS(4249), - [sym__newline_token] = ACTIONS(4249), - [aux_sym_insert_token1] = ACTIONS(4249), - [aux_sym_delete_token1] = ACTIONS(4249), - [aux_sym_highlight_token1] = ACTIONS(4249), - [aux_sym_edit_comment_token1] = ACTIONS(4249), - [anon_sym_CARET_LBRACK] = ACTIONS(4249), - [anon_sym_LBRACK_CARET] = ACTIONS(4249), - [sym_uri_autolink] = ACTIONS(4249), - [sym_email_autolink] = ACTIONS(4249), - [sym__whitespace_ge_2] = ACTIONS(4249), - [aux_sym__whitespace_token1] = ACTIONS(4251), - [sym__word_no_digit] = ACTIONS(4249), - [sym__digits] = ACTIONS(4249), - [anon_sym_DASH_DASH] = ACTIONS(4251), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4249), - [sym__code_span_start] = ACTIONS(4249), - [sym__emphasis_open_star] = ACTIONS(4249), - [sym__emphasis_open_underscore] = ACTIONS(4249), - [sym__strikeout_open] = ACTIONS(4249), - [sym__latex_span_start] = ACTIONS(4249), - [sym__single_quote_open] = ACTIONS(4249), - [sym__single_quote_close] = ACTIONS(4249), - [sym__double_quote_open] = ACTIONS(4249), - [sym__superscript_open] = ACTIONS(4249), - [sym__subscript_open] = ACTIONS(4249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4249), - [sym__cite_author_in_text] = ACTIONS(4249), - [sym__cite_suppress_author] = ACTIONS(4249), - [sym__shortcode_open_escaped] = ACTIONS(4249), - [sym__shortcode_open] = ACTIONS(4249), - [sym__unclosed_span] = ACTIONS(4249), - [sym__strong_emphasis_open_star] = ACTIONS(4249), - [sym__strong_emphasis_open_underscore] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__single_quote_close] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), }, [STATE(612)] = { - [sym__qmd_attribute] = STATE(1701), - [sym_raw_attribute] = STATE(1701), - [sym_commonmark_attribute] = STATE(1701), - [sym_language_attribute] = STATE(1701), - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__single_quote_close] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - }, - [STATE(613)] = { - [sym__qmd_attribute] = STATE(1702), - [sym_raw_attribute] = STATE(1702), - [sym_commonmark_attribute] = STATE(1702), - [sym_language_attribute] = STATE(1702), + [sym__qmd_attribute] = STATE(1696), + [sym_raw_attribute] = STATE(1696), + [sym_commonmark_attribute] = STATE(1696), + [sym_language_attribute] = STATE(1696), [sym__backslash_escape] = ACTIONS(4187), [sym_entity_reference] = ACTIONS(4187), [sym_numeric_character_reference] = ACTIONS(4187), @@ -88862,11 +88790,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4187), [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, - [STATE(614)] = { - [sym__qmd_attribute] = STATE(1703), - [sym_raw_attribute] = STATE(1703), - [sym_commonmark_attribute] = STATE(1703), - [sym_language_attribute] = STATE(1703), + [STATE(613)] = { + [sym__qmd_attribute] = STATE(1697), + [sym_raw_attribute] = STATE(1697), + [sym_commonmark_attribute] = STATE(1697), + [sym_language_attribute] = STATE(1697), [sym__backslash_escape] = ACTIONS(4193), [sym_entity_reference] = ACTIONS(4193), [sym_numeric_character_reference] = ACTIONS(4193), @@ -88933,11 +88861,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4193), [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, - [STATE(615)] = { - [sym__qmd_attribute] = STATE(1704), - [sym_raw_attribute] = STATE(1704), - [sym_commonmark_attribute] = STATE(1704), - [sym_language_attribute] = STATE(1704), + [STATE(614)] = { + [sym__qmd_attribute] = STATE(1698), + [sym_raw_attribute] = STATE(1698), + [sym_commonmark_attribute] = STATE(1698), + [sym_language_attribute] = STATE(1698), [sym__backslash_escape] = ACTIONS(4197), [sym_entity_reference] = ACTIONS(4197), [sym_numeric_character_reference] = ACTIONS(4197), @@ -89004,11 +88932,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4197), [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, - [STATE(616)] = { - [sym__qmd_attribute] = STATE(1709), - [sym_raw_attribute] = STATE(1709), - [sym_commonmark_attribute] = STATE(1709), - [sym_language_attribute] = STATE(1709), + [STATE(615)] = { + [sym__qmd_attribute] = STATE(1703), + [sym_raw_attribute] = STATE(1703), + [sym_commonmark_attribute] = STATE(1703), + [sym_language_attribute] = STATE(1703), [sym__backslash_escape] = ACTIONS(4201), [sym_entity_reference] = ACTIONS(4201), [sym_numeric_character_reference] = ACTIONS(4201), @@ -89075,11 +89003,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4201), [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, - [STATE(617)] = { - [sym__qmd_attribute] = STATE(1710), - [sym_raw_attribute] = STATE(1710), - [sym_commonmark_attribute] = STATE(1710), - [sym_language_attribute] = STATE(1710), + [STATE(616)] = { + [sym__qmd_attribute] = STATE(1704), + [sym_raw_attribute] = STATE(1704), + [sym_commonmark_attribute] = STATE(1704), + [sym_language_attribute] = STATE(1704), [sym__backslash_escape] = ACTIONS(4205), [sym_entity_reference] = ACTIONS(4205), [sym_numeric_character_reference] = ACTIONS(4205), @@ -89146,11 +89074,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4205), [sym__strong_emphasis_open_underscore] = ACTIONS(4205), }, - [STATE(618)] = { - [sym__qmd_attribute] = STATE(1716), - [sym_raw_attribute] = STATE(1716), - [sym_commonmark_attribute] = STATE(1716), - [sym_language_attribute] = STATE(1716), + [STATE(617)] = { + [sym__qmd_attribute] = STATE(1710), + [sym_raw_attribute] = STATE(1710), + [sym_commonmark_attribute] = STATE(1710), + [sym_language_attribute] = STATE(1710), [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), [sym_numeric_character_reference] = ACTIONS(4209), @@ -89217,11 +89145,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4209), [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, - [STATE(619)] = { - [sym__qmd_attribute] = STATE(1717), - [sym_raw_attribute] = STATE(1717), - [sym_commonmark_attribute] = STATE(1717), - [sym_language_attribute] = STATE(1717), + [STATE(618)] = { + [sym__qmd_attribute] = STATE(1711), + [sym_raw_attribute] = STATE(1711), + [sym_commonmark_attribute] = STATE(1711), + [sym_language_attribute] = STATE(1711), [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), [sym_numeric_character_reference] = ACTIONS(4213), @@ -89288,11 +89216,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4213), [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, - [STATE(620)] = { - [sym__qmd_attribute] = STATE(1722), - [sym_raw_attribute] = STATE(1722), - [sym_commonmark_attribute] = STATE(1722), - [sym_language_attribute] = STATE(1722), + [STATE(619)] = { + [sym__qmd_attribute] = STATE(1716), + [sym_raw_attribute] = STATE(1716), + [sym_commonmark_attribute] = STATE(1716), + [sym_language_attribute] = STATE(1716), [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -89359,11 +89287,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4217), [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, - [STATE(621)] = { - [sym__qmd_attribute] = STATE(1723), - [sym_raw_attribute] = STATE(1723), - [sym_commonmark_attribute] = STATE(1723), - [sym_language_attribute] = STATE(1723), + [STATE(620)] = { + [sym__qmd_attribute] = STATE(1717), + [sym_raw_attribute] = STATE(1717), + [sym_commonmark_attribute] = STATE(1717), + [sym_language_attribute] = STATE(1717), [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -89430,11 +89358,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4221), [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, - [STATE(622)] = { - [sym__qmd_attribute] = STATE(1726), - [sym_raw_attribute] = STATE(1726), - [sym_commonmark_attribute] = STATE(1726), - [sym_language_attribute] = STATE(1726), + [STATE(621)] = { + [sym__qmd_attribute] = STATE(1720), + [sym_raw_attribute] = STATE(1720), + [sym_commonmark_attribute] = STATE(1720), + [sym_language_attribute] = STATE(1720), [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -89501,11 +89429,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4225), [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, - [STATE(623)] = { - [sym__qmd_attribute] = STATE(1727), - [sym_raw_attribute] = STATE(1727), - [sym_commonmark_attribute] = STATE(1727), - [sym_language_attribute] = STATE(1727), + [STATE(622)] = { + [sym__qmd_attribute] = STATE(1721), + [sym_raw_attribute] = STATE(1721), + [sym_commonmark_attribute] = STATE(1721), + [sym_language_attribute] = STATE(1721), [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -89572,11 +89500,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4229), [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, - [STATE(624)] = { - [sym__qmd_attribute] = STATE(1729), - [sym_raw_attribute] = STATE(1729), - [sym_commonmark_attribute] = STATE(1729), - [sym_language_attribute] = STATE(1729), + [STATE(623)] = { + [sym__qmd_attribute] = STATE(1723), + [sym_raw_attribute] = STATE(1723), + [sym_commonmark_attribute] = STATE(1723), + [sym_language_attribute] = STATE(1723), [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -89643,11 +89571,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4233), [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, - [STATE(625)] = { - [sym__qmd_attribute] = STATE(1731), - [sym_raw_attribute] = STATE(1731), - [sym_commonmark_attribute] = STATE(1731), - [sym_language_attribute] = STATE(1731), + [STATE(624)] = { + [sym__qmd_attribute] = STATE(1725), + [sym_raw_attribute] = STATE(1725), + [sym_commonmark_attribute] = STATE(1725), + [sym_language_attribute] = STATE(1725), [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -89714,11 +89642,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4237), [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, - [STATE(626)] = { - [sym__qmd_attribute] = STATE(1732), - [sym_raw_attribute] = STATE(1732), - [sym_commonmark_attribute] = STATE(1732), - [sym_language_attribute] = STATE(1732), + [STATE(625)] = { + [sym__qmd_attribute] = STATE(1726), + [sym_raw_attribute] = STATE(1726), + [sym_commonmark_attribute] = STATE(1726), + [sym_language_attribute] = STATE(1726), [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -89785,11 +89713,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4241), [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, - [STATE(627)] = { - [sym__qmd_attribute] = STATE(1733), - [sym_raw_attribute] = STATE(1733), - [sym_commonmark_attribute] = STATE(1733), - [sym_language_attribute] = STATE(1733), + [STATE(626)] = { + [sym__qmd_attribute] = STATE(1727), + [sym_raw_attribute] = STATE(1727), + [sym_commonmark_attribute] = STATE(1727), + [sym_language_attribute] = STATE(1727), [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -89856,82 +89784,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4245), [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, - [STATE(628)] = { - [sym__qmd_attribute] = STATE(1751), - [sym_raw_attribute] = STATE(1751), - [sym_commonmark_attribute] = STATE(1751), - [sym_language_attribute] = STATE(1751), - [sym__backslash_escape] = ACTIONS(4257), - [sym_entity_reference] = ACTIONS(4257), - [sym_numeric_character_reference] = ACTIONS(4257), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4257), - [anon_sym_BANG] = ACTIONS(4257), - [anon_sym_DQUOTE] = ACTIONS(4257), - [anon_sym_POUND] = ACTIONS(4257), - [anon_sym_DOLLAR] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4257), - [anon_sym_AMP] = ACTIONS(4259), - [anon_sym_SQUOTE] = ACTIONS(4257), - [anon_sym_PLUS] = ACTIONS(4257), - [anon_sym_COMMA] = ACTIONS(4257), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_DOT] = ACTIONS(4259), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_COLON] = ACTIONS(4257), - [anon_sym_SEMI] = ACTIONS(4257), - [anon_sym_EQ] = ACTIONS(4257), - [anon_sym_QMARK] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_BSLASH] = ACTIONS(4259), - [anon_sym_CARET] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4257), + [STATE(627)] = { + [sym__qmd_attribute] = STATE(1746), + [sym_raw_attribute] = STATE(1746), + [sym_commonmark_attribute] = STATE(1746), + [sym_language_attribute] = STATE(1746), + [sym__backslash_escape] = ACTIONS(4251), + [sym_entity_reference] = ACTIONS(4251), + [sym_numeric_character_reference] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_DQUOTE] = ACTIONS(4251), + [anon_sym_POUND] = ACTIONS(4251), + [anon_sym_DOLLAR] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_COMMA] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_COLON] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4251), + [anon_sym_QMARK] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_BSLASH] = ACTIONS(4253), + [anon_sym_CARET] = ACTIONS(4253), + [anon_sym_BQUOTE] = ACTIONS(4251), [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_PIPE] = ACTIONS(4257), - [anon_sym_TILDE] = ACTIONS(4257), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), [anon_sym_LPAREN] = ACTIONS(4309), - [anon_sym_RPAREN] = ACTIONS(4257), - [sym__newline_token] = ACTIONS(4257), - [aux_sym_insert_token1] = ACTIONS(4257), - [aux_sym_delete_token1] = ACTIONS(4257), - [aux_sym_highlight_token1] = ACTIONS(4257), - [aux_sym_edit_comment_token1] = ACTIONS(4257), - [anon_sym_CARET_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_CARET] = ACTIONS(4257), - [sym_uri_autolink] = ACTIONS(4257), - [sym_email_autolink] = ACTIONS(4257), - [sym__whitespace_ge_2] = ACTIONS(4257), - [aux_sym__whitespace_token1] = ACTIONS(4259), - [sym__word_no_digit] = ACTIONS(4257), - [sym__digits] = ACTIONS(4257), - [anon_sym_DASH_DASH] = ACTIONS(4259), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4257), - [sym__code_span_start] = ACTIONS(4257), - [sym__emphasis_open_star] = ACTIONS(4257), - [sym__emphasis_open_underscore] = ACTIONS(4257), - [sym__strikeout_open] = ACTIONS(4257), - [sym__latex_span_start] = ACTIONS(4257), - [sym__single_quote_open] = ACTIONS(4257), - [sym__double_quote_open] = ACTIONS(4257), - [sym__double_quote_close] = ACTIONS(4257), - [sym__superscript_open] = ACTIONS(4257), - [sym__subscript_open] = ACTIONS(4257), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4257), - [sym__cite_author_in_text] = ACTIONS(4257), - [sym__cite_suppress_author] = ACTIONS(4257), - [sym__shortcode_open_escaped] = ACTIONS(4257), - [sym__shortcode_open] = ACTIONS(4257), - [sym__unclosed_span] = ACTIONS(4257), - [sym__strong_emphasis_open_star] = ACTIONS(4257), - [sym__strong_emphasis_open_underscore] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4251), + [sym__newline_token] = ACTIONS(4251), + [aux_sym_insert_token1] = ACTIONS(4251), + [aux_sym_delete_token1] = ACTIONS(4251), + [aux_sym_highlight_token1] = ACTIONS(4251), + [aux_sym_edit_comment_token1] = ACTIONS(4251), + [anon_sym_CARET_LBRACK] = ACTIONS(4251), + [anon_sym_LBRACK_CARET] = ACTIONS(4251), + [sym_uri_autolink] = ACTIONS(4251), + [sym_email_autolink] = ACTIONS(4251), + [sym__whitespace_ge_2] = ACTIONS(4251), + [aux_sym__whitespace_token1] = ACTIONS(4253), + [sym__word_no_digit] = ACTIONS(4251), + [sym__digits] = ACTIONS(4251), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4251), + [sym__code_span_start] = ACTIONS(4251), + [sym__emphasis_open_star] = ACTIONS(4251), + [sym__emphasis_open_underscore] = ACTIONS(4251), + [sym__strikeout_open] = ACTIONS(4251), + [sym__latex_span_start] = ACTIONS(4251), + [sym__single_quote_open] = ACTIONS(4251), + [sym__double_quote_open] = ACTIONS(4251), + [sym__double_quote_close] = ACTIONS(4251), + [sym__superscript_open] = ACTIONS(4251), + [sym__subscript_open] = ACTIONS(4251), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4251), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4251), + [sym__cite_author_in_text] = ACTIONS(4251), + [sym__cite_suppress_author] = ACTIONS(4251), + [sym__shortcode_open_escaped] = ACTIONS(4251), + [sym__shortcode_open] = ACTIONS(4251), + [sym__unclosed_span] = ACTIONS(4251), + [sym__strong_emphasis_open_star] = ACTIONS(4251), + [sym__strong_emphasis_open_underscore] = ACTIONS(4251), + }, + [STATE(628)] = { + [sym__qmd_attribute] = STATE(1747), + [sym_raw_attribute] = STATE(1747), + [sym_commonmark_attribute] = STATE(1747), + [sym_language_attribute] = STATE(1747), + [sym__backslash_escape] = ACTIONS(4263), + [sym_entity_reference] = ACTIONS(4263), + [sym_numeric_character_reference] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4265), + [anon_sym_GT] = ACTIONS(4263), + [anon_sym_BANG] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(4263), + [anon_sym_DOLLAR] = ACTIONS(4263), + [anon_sym_PERCENT] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4265), + [anon_sym_SQUOTE] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_COMMA] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_COLON] = ACTIONS(4263), + [anon_sym_SEMI] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_BSLASH] = ACTIONS(4265), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_BQUOTE] = ACTIONS(4263), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_PIPE] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4263), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym_RPAREN] = ACTIONS(4263), + [sym__newline_token] = ACTIONS(4263), + [aux_sym_insert_token1] = ACTIONS(4263), + [aux_sym_delete_token1] = ACTIONS(4263), + [aux_sym_highlight_token1] = ACTIONS(4263), + [aux_sym_edit_comment_token1] = ACTIONS(4263), + [anon_sym_CARET_LBRACK] = ACTIONS(4263), + [anon_sym_LBRACK_CARET] = ACTIONS(4263), + [sym_uri_autolink] = ACTIONS(4263), + [sym_email_autolink] = ACTIONS(4263), + [sym__whitespace_ge_2] = ACTIONS(4263), + [aux_sym__whitespace_token1] = ACTIONS(4265), + [sym__word_no_digit] = ACTIONS(4263), + [sym__digits] = ACTIONS(4263), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), + [sym__code_span_start] = ACTIONS(4263), + [sym__emphasis_open_star] = ACTIONS(4263), + [sym__emphasis_open_underscore] = ACTIONS(4263), + [sym__strikeout_open] = ACTIONS(4263), + [sym__latex_span_start] = ACTIONS(4263), + [sym__single_quote_open] = ACTIONS(4263), + [sym__double_quote_open] = ACTIONS(4263), + [sym__double_quote_close] = ACTIONS(4263), + [sym__superscript_open] = ACTIONS(4263), + [sym__subscript_open] = ACTIONS(4263), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), + [sym__cite_author_in_text] = ACTIONS(4263), + [sym__cite_suppress_author] = ACTIONS(4263), + [sym__shortcode_open_escaped] = ACTIONS(4263), + [sym__shortcode_open] = ACTIONS(4263), + [sym__unclosed_span] = ACTIONS(4263), + [sym__strong_emphasis_open_star] = ACTIONS(4263), + [sym__strong_emphasis_open_underscore] = ACTIONS(4263), }, [STATE(629)] = { - [sym__qmd_attribute] = STATE(1752), - [sym_raw_attribute] = STATE(1752), - [sym_commonmark_attribute] = STATE(1752), - [sym_language_attribute] = STATE(1752), + [sym__qmd_attribute] = STATE(1748), + [sym_raw_attribute] = STATE(1748), + [sym_commonmark_attribute] = STATE(1748), + [sym_language_attribute] = STATE(1748), + [sym__backslash_escape] = ACTIONS(4283), + [sym_entity_reference] = ACTIONS(4283), + [sym_numeric_character_reference] = ACTIONS(4283), + [anon_sym_LT] = ACTIONS(4285), + [anon_sym_GT] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_DQUOTE] = ACTIONS(4283), + [anon_sym_POUND] = ACTIONS(4283), + [anon_sym_DOLLAR] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_AMP] = ACTIONS(4285), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_COMMA] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4285), + [anon_sym_DOT] = ACTIONS(4285), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_COLON] = ACTIONS(4283), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym_EQ] = ACTIONS(4283), + [anon_sym_QMARK] = ACTIONS(4283), + [anon_sym_LBRACK] = ACTIONS(4285), + [anon_sym_BSLASH] = ACTIONS(4285), + [anon_sym_CARET] = ACTIONS(4285), + [anon_sym_BQUOTE] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_PIPE] = ACTIONS(4283), + [anon_sym_TILDE] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_RPAREN] = ACTIONS(4283), + [sym__newline_token] = ACTIONS(4283), + [aux_sym_insert_token1] = ACTIONS(4283), + [aux_sym_delete_token1] = ACTIONS(4283), + [aux_sym_highlight_token1] = ACTIONS(4283), + [aux_sym_edit_comment_token1] = ACTIONS(4283), + [anon_sym_CARET_LBRACK] = ACTIONS(4283), + [anon_sym_LBRACK_CARET] = ACTIONS(4283), + [sym_uri_autolink] = ACTIONS(4283), + [sym_email_autolink] = ACTIONS(4283), + [sym__whitespace_ge_2] = ACTIONS(4283), + [aux_sym__whitespace_token1] = ACTIONS(4285), + [sym__word_no_digit] = ACTIONS(4283), + [sym__digits] = ACTIONS(4283), + [anon_sym_DASH_DASH] = ACTIONS(4285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4283), + [sym__code_span_start] = ACTIONS(4283), + [sym__emphasis_open_star] = ACTIONS(4283), + [sym__emphasis_open_underscore] = ACTIONS(4283), + [sym__strikeout_open] = ACTIONS(4283), + [sym__latex_span_start] = ACTIONS(4283), + [sym__single_quote_open] = ACTIONS(4283), + [sym__double_quote_open] = ACTIONS(4283), + [sym__double_quote_close] = ACTIONS(4283), + [sym__superscript_open] = ACTIONS(4283), + [sym__subscript_open] = ACTIONS(4283), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4283), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4283), + [sym__cite_author_in_text] = ACTIONS(4283), + [sym__cite_suppress_author] = ACTIONS(4283), + [sym__shortcode_open_escaped] = ACTIONS(4283), + [sym__shortcode_open] = ACTIONS(4283), + [sym__unclosed_span] = ACTIONS(4283), + [sym__strong_emphasis_open_star] = ACTIONS(4283), + [sym__strong_emphasis_open_underscore] = ACTIONS(4283), + }, + [STATE(630)] = { + [sym__qmd_attribute] = STATE(1760), + [sym_raw_attribute] = STATE(1760), + [sym_commonmark_attribute] = STATE(1760), + [sym_language_attribute] = STATE(1760), + [sym__backslash_escape] = ACTIONS(4181), + [sym_entity_reference] = ACTIONS(4181), + [sym_numeric_character_reference] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4181), + [anon_sym_DQUOTE] = ACTIONS(4181), + [anon_sym_POUND] = ACTIONS(4181), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_PERCENT] = ACTIONS(4181), + [anon_sym_AMP] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_EQ] = ACTIONS(4181), + [anon_sym_QMARK] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(4183), + [anon_sym_BSLASH] = ACTIONS(4183), + [anon_sym_CARET] = ACTIONS(4183), + [anon_sym_BQUOTE] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_TILDE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(4181), + [sym__newline_token] = ACTIONS(4181), + [aux_sym_insert_token1] = ACTIONS(4181), + [aux_sym_delete_token1] = ACTIONS(4181), + [aux_sym_highlight_token1] = ACTIONS(4181), + [aux_sym_edit_comment_token1] = ACTIONS(4181), + [anon_sym_CARET_LBRACK] = ACTIONS(4181), + [anon_sym_LBRACK_CARET] = ACTIONS(4181), + [sym_uri_autolink] = ACTIONS(4181), + [sym_email_autolink] = ACTIONS(4181), + [sym__whitespace_ge_2] = ACTIONS(4181), + [aux_sym__whitespace_token1] = ACTIONS(4183), + [sym__word_no_digit] = ACTIONS(4181), + [sym__digits] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4183), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4181), + [sym__code_span_start] = ACTIONS(4181), + [sym__emphasis_open_star] = ACTIONS(4181), + [sym__emphasis_open_underscore] = ACTIONS(4181), + [sym__strikeout_open] = ACTIONS(4181), + [sym__latex_span_start] = ACTIONS(4181), + [sym__single_quote_open] = ACTIONS(4181), + [sym__double_quote_open] = ACTIONS(4181), + [sym__double_quote_close] = ACTIONS(4181), + [sym__superscript_open] = ACTIONS(4181), + [sym__subscript_open] = ACTIONS(4181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4181), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4181), + [sym__cite_author_in_text] = ACTIONS(4181), + [sym__cite_suppress_author] = ACTIONS(4181), + [sym__shortcode_open_escaped] = ACTIONS(4181), + [sym__shortcode_open] = ACTIONS(4181), + [sym__unclosed_span] = ACTIONS(4181), + [sym__strong_emphasis_open_star] = ACTIONS(4181), + [sym__strong_emphasis_open_underscore] = ACTIONS(4181), + }, + [STATE(631)] = { + [sym__qmd_attribute] = STATE(1763), + [sym_raw_attribute] = STATE(1763), + [sym_commonmark_attribute] = STATE(1763), + [sym_language_attribute] = STATE(1763), + [sym__backslash_escape] = ACTIONS(4259), + [sym_entity_reference] = ACTIONS(4259), + [sym_numeric_character_reference] = ACTIONS(4259), + [anon_sym_LT] = ACTIONS(4261), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + [anon_sym_SQUOTE] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_COMMA] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_DOT] = ACTIONS(4261), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_QMARK] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_BSLASH] = ACTIONS(4261), + [anon_sym_CARET] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_PIPE] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym_RPAREN] = ACTIONS(4259), + [sym__newline_token] = ACTIONS(4259), + [aux_sym_insert_token1] = ACTIONS(4259), + [aux_sym_delete_token1] = ACTIONS(4259), + [aux_sym_highlight_token1] = ACTIONS(4259), + [aux_sym_edit_comment_token1] = ACTIONS(4259), + [anon_sym_CARET_LBRACK] = ACTIONS(4259), + [anon_sym_LBRACK_CARET] = ACTIONS(4259), + [sym_uri_autolink] = ACTIONS(4259), + [sym_email_autolink] = ACTIONS(4259), + [sym__whitespace_ge_2] = ACTIONS(4259), + [aux_sym__whitespace_token1] = ACTIONS(4261), + [sym__word_no_digit] = ACTIONS(4259), + [sym__digits] = ACTIONS(4259), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4259), + [sym__code_span_start] = ACTIONS(4259), + [sym__emphasis_open_star] = ACTIONS(4259), + [sym__emphasis_open_underscore] = ACTIONS(4259), + [sym__strikeout_open] = ACTIONS(4259), + [sym__latex_span_start] = ACTIONS(4259), + [sym__single_quote_open] = ACTIONS(4259), + [sym__double_quote_open] = ACTIONS(4259), + [sym__double_quote_close] = ACTIONS(4259), + [sym__superscript_open] = ACTIONS(4259), + [sym__subscript_open] = ACTIONS(4259), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4259), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4259), + [sym__cite_author_in_text] = ACTIONS(4259), + [sym__cite_suppress_author] = ACTIONS(4259), + [sym__shortcode_open_escaped] = ACTIONS(4259), + [sym__shortcode_open] = ACTIONS(4259), + [sym__unclosed_span] = ACTIONS(4259), + [sym__strong_emphasis_open_star] = ACTIONS(4259), + [sym__strong_emphasis_open_underscore] = ACTIONS(4259), + }, + [STATE(632)] = { + [sym__qmd_attribute] = STATE(1764), + [sym_raw_attribute] = STATE(1764), + [sym_commonmark_attribute] = STATE(1764), + [sym_language_attribute] = STATE(1764), [sym__backslash_escape] = ACTIONS(4267), [sym_entity_reference] = ACTIONS(4267), [sym_numeric_character_reference] = ACTIONS(4267), @@ -89998,295 +90210,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4267), [sym__strong_emphasis_open_underscore] = ACTIONS(4267), }, - [STATE(630)] = { - [sym__qmd_attribute] = STATE(1753), - [sym_raw_attribute] = STATE(1753), - [sym_commonmark_attribute] = STATE(1753), - [sym_language_attribute] = STATE(1753), - [sym__backslash_escape] = ACTIONS(4283), - [sym_entity_reference] = ACTIONS(4283), - [sym_numeric_character_reference] = ACTIONS(4283), - [anon_sym_LT] = ACTIONS(4285), - [anon_sym_GT] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_DQUOTE] = ACTIONS(4283), - [anon_sym_POUND] = ACTIONS(4283), - [anon_sym_DOLLAR] = ACTIONS(4283), - [anon_sym_PERCENT] = ACTIONS(4283), - [anon_sym_AMP] = ACTIONS(4285), - [anon_sym_SQUOTE] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_COMMA] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4285), - [anon_sym_DOT] = ACTIONS(4285), - [anon_sym_SLASH] = ACTIONS(4283), - [anon_sym_COLON] = ACTIONS(4283), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym_EQ] = ACTIONS(4283), - [anon_sym_QMARK] = ACTIONS(4283), - [anon_sym_LBRACK] = ACTIONS(4285), - [anon_sym_BSLASH] = ACTIONS(4285), - [anon_sym_CARET] = ACTIONS(4285), - [anon_sym_BQUOTE] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_PIPE] = ACTIONS(4283), - [anon_sym_TILDE] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym_RPAREN] = ACTIONS(4283), - [sym__newline_token] = ACTIONS(4283), - [aux_sym_insert_token1] = ACTIONS(4283), - [aux_sym_delete_token1] = ACTIONS(4283), - [aux_sym_highlight_token1] = ACTIONS(4283), - [aux_sym_edit_comment_token1] = ACTIONS(4283), - [anon_sym_CARET_LBRACK] = ACTIONS(4283), - [anon_sym_LBRACK_CARET] = ACTIONS(4283), - [sym_uri_autolink] = ACTIONS(4283), - [sym_email_autolink] = ACTIONS(4283), - [sym__whitespace_ge_2] = ACTIONS(4283), - [aux_sym__whitespace_token1] = ACTIONS(4285), - [sym__word_no_digit] = ACTIONS(4283), - [sym__digits] = ACTIONS(4283), - [anon_sym_DASH_DASH] = ACTIONS(4285), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4283), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4283), - [sym__code_span_start] = ACTIONS(4283), - [sym__emphasis_open_star] = ACTIONS(4283), - [sym__emphasis_open_underscore] = ACTIONS(4283), - [sym__strikeout_open] = ACTIONS(4283), - [sym__latex_span_start] = ACTIONS(4283), - [sym__single_quote_open] = ACTIONS(4283), - [sym__double_quote_open] = ACTIONS(4283), - [sym__double_quote_close] = ACTIONS(4283), - [sym__superscript_open] = ACTIONS(4283), - [sym__subscript_open] = ACTIONS(4283), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4283), - [sym__cite_author_in_text] = ACTIONS(4283), - [sym__cite_suppress_author] = ACTIONS(4283), - [sym__shortcode_open_escaped] = ACTIONS(4283), - [sym__shortcode_open] = ACTIONS(4283), - [sym__unclosed_span] = ACTIONS(4283), - [sym__strong_emphasis_open_star] = ACTIONS(4283), - [sym__strong_emphasis_open_underscore] = ACTIONS(4283), - }, - [STATE(631)] = { + [STATE(633)] = { [sym__qmd_attribute] = STATE(1765), [sym_raw_attribute] = STATE(1765), [sym_commonmark_attribute] = STATE(1765), [sym_language_attribute] = STATE(1765), - [sym__backslash_escape] = ACTIONS(4181), - [sym_entity_reference] = ACTIONS(4181), - [sym_numeric_character_reference] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4181), - [anon_sym_POUND] = ACTIONS(4181), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_AMP] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_COLON] = ACTIONS(4181), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_QMARK] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_BSLASH] = ACTIONS(4183), - [anon_sym_CARET] = ACTIONS(4183), - [anon_sym_BQUOTE] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_PIPE] = ACTIONS(4181), - [anon_sym_TILDE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_RPAREN] = ACTIONS(4181), - [sym__newline_token] = ACTIONS(4181), - [aux_sym_insert_token1] = ACTIONS(4181), - [aux_sym_delete_token1] = ACTIONS(4181), - [aux_sym_highlight_token1] = ACTIONS(4181), - [aux_sym_edit_comment_token1] = ACTIONS(4181), - [anon_sym_CARET_LBRACK] = ACTIONS(4181), - [anon_sym_LBRACK_CARET] = ACTIONS(4181), - [sym_uri_autolink] = ACTIONS(4181), - [sym_email_autolink] = ACTIONS(4181), - [sym__whitespace_ge_2] = ACTIONS(4181), - [aux_sym__whitespace_token1] = ACTIONS(4183), - [sym__word_no_digit] = ACTIONS(4181), - [sym__digits] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4183), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4181), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4181), - [sym__code_span_start] = ACTIONS(4181), - [sym__emphasis_open_star] = ACTIONS(4181), - [sym__emphasis_open_underscore] = ACTIONS(4181), - [sym__strikeout_open] = ACTIONS(4181), - [sym__latex_span_start] = ACTIONS(4181), - [sym__single_quote_open] = ACTIONS(4181), - [sym__double_quote_open] = ACTIONS(4181), - [sym__double_quote_close] = ACTIONS(4181), - [sym__superscript_open] = ACTIONS(4181), - [sym__subscript_open] = ACTIONS(4181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4181), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4181), - [sym__cite_author_in_text] = ACTIONS(4181), - [sym__cite_suppress_author] = ACTIONS(4181), - [sym__shortcode_open_escaped] = ACTIONS(4181), - [sym__shortcode_open] = ACTIONS(4181), - [sym__unclosed_span] = ACTIONS(4181), - [sym__strong_emphasis_open_star] = ACTIONS(4181), - [sym__strong_emphasis_open_underscore] = ACTIONS(4181), - }, - [STATE(632)] = { - [sym__qmd_attribute] = STATE(1768), - [sym_raw_attribute] = STATE(1768), - [sym_commonmark_attribute] = STATE(1768), - [sym_language_attribute] = STATE(1768), - [sym__backslash_escape] = ACTIONS(4263), - [sym_entity_reference] = ACTIONS(4263), - [sym_numeric_character_reference] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(4265), - [anon_sym_GT] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4263), - [anon_sym_POUND] = ACTIONS(4263), - [anon_sym_DOLLAR] = ACTIONS(4263), - [anon_sym_PERCENT] = ACTIONS(4263), - [anon_sym_AMP] = ACTIONS(4265), - [anon_sym_SQUOTE] = ACTIONS(4263), - [anon_sym_PLUS] = ACTIONS(4263), - [anon_sym_COMMA] = ACTIONS(4263), - [anon_sym_DASH] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4265), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_COLON] = ACTIONS(4263), - [anon_sym_SEMI] = ACTIONS(4263), - [anon_sym_EQ] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4263), - [anon_sym_LBRACK] = ACTIONS(4265), - [anon_sym_BSLASH] = ACTIONS(4265), - [anon_sym_CARET] = ACTIONS(4265), - [anon_sym_BQUOTE] = ACTIONS(4263), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_PIPE] = ACTIONS(4263), - [anon_sym_TILDE] = ACTIONS(4263), - [anon_sym_LPAREN] = ACTIONS(4263), - [anon_sym_RPAREN] = ACTIONS(4263), - [sym__newline_token] = ACTIONS(4263), - [aux_sym_insert_token1] = ACTIONS(4263), - [aux_sym_delete_token1] = ACTIONS(4263), - [aux_sym_highlight_token1] = ACTIONS(4263), - [aux_sym_edit_comment_token1] = ACTIONS(4263), - [anon_sym_CARET_LBRACK] = ACTIONS(4263), - [anon_sym_LBRACK_CARET] = ACTIONS(4263), - [sym_uri_autolink] = ACTIONS(4263), - [sym_email_autolink] = ACTIONS(4263), - [sym__whitespace_ge_2] = ACTIONS(4263), - [aux_sym__whitespace_token1] = ACTIONS(4265), - [sym__word_no_digit] = ACTIONS(4263), - [sym__digits] = ACTIONS(4263), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), - [sym__code_span_start] = ACTIONS(4263), - [sym__emphasis_open_star] = ACTIONS(4263), - [sym__emphasis_open_underscore] = ACTIONS(4263), - [sym__strikeout_open] = ACTIONS(4263), - [sym__latex_span_start] = ACTIONS(4263), - [sym__single_quote_open] = ACTIONS(4263), - [sym__double_quote_open] = ACTIONS(4263), - [sym__double_quote_close] = ACTIONS(4263), - [sym__superscript_open] = ACTIONS(4263), - [sym__subscript_open] = ACTIONS(4263), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), - [sym__cite_author_in_text] = ACTIONS(4263), - [sym__cite_suppress_author] = ACTIONS(4263), - [sym__shortcode_open_escaped] = ACTIONS(4263), - [sym__shortcode_open] = ACTIONS(4263), - [sym__unclosed_span] = ACTIONS(4263), - [sym__strong_emphasis_open_star] = ACTIONS(4263), - [sym__strong_emphasis_open_underscore] = ACTIONS(4263), - }, - [STATE(633)] = { - [sym__qmd_attribute] = STATE(1769), - [sym_raw_attribute] = STATE(1769), - [sym_commonmark_attribute] = STATE(1769), - [sym_language_attribute] = STATE(1769), - [sym__backslash_escape] = ACTIONS(4271), - [sym_entity_reference] = ACTIONS(4271), - [sym_numeric_character_reference] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4273), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_POUND] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4273), - [anon_sym_SQUOTE] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4273), - [anon_sym_SLASH] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_EQ] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(4271), - [anon_sym_LBRACK] = ACTIONS(4273), - [anon_sym_BSLASH] = ACTIONS(4273), - [anon_sym_CARET] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4271), + [sym__backslash_escape] = ACTIONS(4275), + [sym_entity_reference] = ACTIONS(4275), + [sym_numeric_character_reference] = ACTIONS(4275), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + [anon_sym_SQUOTE] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_COMMA] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4277), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_COLON] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_QMARK] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_BSLASH] = ACTIONS(4277), + [anon_sym_CARET] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4275), [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_TILDE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [sym__newline_token] = ACTIONS(4271), - [aux_sym_insert_token1] = ACTIONS(4271), - [aux_sym_delete_token1] = ACTIONS(4271), - [aux_sym_highlight_token1] = ACTIONS(4271), - [aux_sym_edit_comment_token1] = ACTIONS(4271), - [anon_sym_CARET_LBRACK] = ACTIONS(4271), - [anon_sym_LBRACK_CARET] = ACTIONS(4271), - [sym_uri_autolink] = ACTIONS(4271), - [sym_email_autolink] = ACTIONS(4271), - [sym__whitespace_ge_2] = ACTIONS(4271), - [aux_sym__whitespace_token1] = ACTIONS(4273), - [sym__word_no_digit] = ACTIONS(4271), - [sym__digits] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4273), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), - [sym__code_span_start] = ACTIONS(4271), - [sym__emphasis_open_star] = ACTIONS(4271), - [sym__emphasis_open_underscore] = ACTIONS(4271), - [sym__strikeout_open] = ACTIONS(4271), - [sym__latex_span_start] = ACTIONS(4271), - [sym__single_quote_open] = ACTIONS(4271), - [sym__double_quote_open] = ACTIONS(4271), - [sym__double_quote_close] = ACTIONS(4271), - [sym__superscript_open] = ACTIONS(4271), - [sym__subscript_open] = ACTIONS(4271), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), - [sym__cite_author_in_text] = ACTIONS(4271), - [sym__cite_suppress_author] = ACTIONS(4271), - [sym__shortcode_open_escaped] = ACTIONS(4271), - [sym__shortcode_open] = ACTIONS(4271), - [sym__unclosed_span] = ACTIONS(4271), - [sym__strong_emphasis_open_star] = ACTIONS(4271), - [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4275), + [anon_sym_TILDE] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4275), + [anon_sym_RPAREN] = ACTIONS(4275), + [sym__newline_token] = ACTIONS(4275), + [aux_sym_insert_token1] = ACTIONS(4275), + [aux_sym_delete_token1] = ACTIONS(4275), + [aux_sym_highlight_token1] = ACTIONS(4275), + [aux_sym_edit_comment_token1] = ACTIONS(4275), + [anon_sym_CARET_LBRACK] = ACTIONS(4275), + [anon_sym_LBRACK_CARET] = ACTIONS(4275), + [sym_uri_autolink] = ACTIONS(4275), + [sym_email_autolink] = ACTIONS(4275), + [sym__whitespace_ge_2] = ACTIONS(4275), + [aux_sym__whitespace_token1] = ACTIONS(4277), + [sym__word_no_digit] = ACTIONS(4275), + [sym__digits] = ACTIONS(4275), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), + [sym__code_span_start] = ACTIONS(4275), + [sym__emphasis_open_star] = ACTIONS(4275), + [sym__emphasis_open_underscore] = ACTIONS(4275), + [sym__strikeout_open] = ACTIONS(4275), + [sym__latex_span_start] = ACTIONS(4275), + [sym__single_quote_open] = ACTIONS(4275), + [sym__double_quote_open] = ACTIONS(4275), + [sym__double_quote_close] = ACTIONS(4275), + [sym__superscript_open] = ACTIONS(4275), + [sym__subscript_open] = ACTIONS(4275), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), + [sym__cite_author_in_text] = ACTIONS(4275), + [sym__cite_suppress_author] = ACTIONS(4275), + [sym__shortcode_open_escaped] = ACTIONS(4275), + [sym__shortcode_open] = ACTIONS(4275), + [sym__unclosed_span] = ACTIONS(4275), + [sym__strong_emphasis_open_star] = ACTIONS(4275), + [sym__strong_emphasis_open_underscore] = ACTIONS(4275), }, [STATE(634)] = { - [sym__qmd_attribute] = STATE(1770), - [sym_raw_attribute] = STATE(1770), - [sym_commonmark_attribute] = STATE(1770), - [sym_language_attribute] = STATE(1770), + [sym__qmd_attribute] = STATE(1766), + [sym_raw_attribute] = STATE(1766), + [sym_commonmark_attribute] = STATE(1766), + [sym_language_attribute] = STATE(1766), [sym__backslash_escape] = ACTIONS(4287), [sym_entity_reference] = ACTIONS(4287), [sym_numeric_character_reference] = ACTIONS(4287), @@ -90425,152 +90424,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4291), }, [STATE(636)] = { + [sym__qmd_attribute] = STATE(1775), + [sym_raw_attribute] = STATE(1775), + [sym_commonmark_attribute] = STATE(1775), + [sym_language_attribute] = STATE(1775), + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__double_quote_close] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + }, + [STATE(637)] = { [sym__qmd_attribute] = STATE(1776), [sym_raw_attribute] = STATE(1776), [sym_commonmark_attribute] = STATE(1776), [sym_language_attribute] = STATE(1776), - [sym__backslash_escape] = ACTIONS(4249), - [sym_entity_reference] = ACTIONS(4249), - [sym_numeric_character_reference] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(4251), - [anon_sym_GT] = ACTIONS(4249), - [anon_sym_BANG] = ACTIONS(4249), - [anon_sym_DQUOTE] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(4249), - [anon_sym_PERCENT] = ACTIONS(4249), - [anon_sym_AMP] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4249), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_COMMA] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4251), - [anon_sym_DOT] = ACTIONS(4251), - [anon_sym_SLASH] = ACTIONS(4249), - [anon_sym_COLON] = ACTIONS(4249), - [anon_sym_SEMI] = ACTIONS(4249), - [anon_sym_EQ] = ACTIONS(4249), - [anon_sym_QMARK] = ACTIONS(4249), - [anon_sym_LBRACK] = ACTIONS(4251), - [anon_sym_BSLASH] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4251), - [anon_sym_BQUOTE] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_PIPE] = ACTIONS(4249), - [anon_sym_TILDE] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4249), - [anon_sym_RPAREN] = ACTIONS(4249), - [sym__newline_token] = ACTIONS(4249), - [aux_sym_insert_token1] = ACTIONS(4249), - [aux_sym_delete_token1] = ACTIONS(4249), - [aux_sym_highlight_token1] = ACTIONS(4249), - [aux_sym_edit_comment_token1] = ACTIONS(4249), - [anon_sym_CARET_LBRACK] = ACTIONS(4249), - [anon_sym_LBRACK_CARET] = ACTIONS(4249), - [sym_uri_autolink] = ACTIONS(4249), - [sym_email_autolink] = ACTIONS(4249), - [sym__whitespace_ge_2] = ACTIONS(4249), - [aux_sym__whitespace_token1] = ACTIONS(4251), - [sym__word_no_digit] = ACTIONS(4249), - [sym__digits] = ACTIONS(4249), - [anon_sym_DASH_DASH] = ACTIONS(4251), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4249), - [sym__code_span_start] = ACTIONS(4249), - [sym__emphasis_open_star] = ACTIONS(4249), - [sym__emphasis_open_underscore] = ACTIONS(4249), - [sym__strikeout_open] = ACTIONS(4249), - [sym__latex_span_start] = ACTIONS(4249), - [sym__single_quote_open] = ACTIONS(4249), - [sym__double_quote_open] = ACTIONS(4249), - [sym__double_quote_close] = ACTIONS(4249), - [sym__superscript_open] = ACTIONS(4249), - [sym__subscript_open] = ACTIONS(4249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4249), - [sym__cite_author_in_text] = ACTIONS(4249), - [sym__cite_suppress_author] = ACTIONS(4249), - [sym__shortcode_open_escaped] = ACTIONS(4249), - [sym__shortcode_open] = ACTIONS(4249), - [sym__unclosed_span] = ACTIONS(4249), - [sym__strong_emphasis_open_star] = ACTIONS(4249), - [sym__strong_emphasis_open_underscore] = ACTIONS(4249), - }, - [STATE(637)] = { - [sym__qmd_attribute] = STATE(1780), - [sym_raw_attribute] = STATE(1780), - [sym_commonmark_attribute] = STATE(1780), - [sym_language_attribute] = STATE(1780), - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__double_quote_close] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - }, - [STATE(638)] = { - [sym__qmd_attribute] = STATE(1781), - [sym_raw_attribute] = STATE(1781), - [sym_commonmark_attribute] = STATE(1781), - [sym_language_attribute] = STATE(1781), [sym__backslash_escape] = ACTIONS(4187), [sym_entity_reference] = ACTIONS(4187), [sym_numeric_character_reference] = ACTIONS(4187), @@ -90637,11 +90565,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4187), [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, - [STATE(639)] = { - [sym__qmd_attribute] = STATE(1782), - [sym_raw_attribute] = STATE(1782), - [sym_commonmark_attribute] = STATE(1782), - [sym_language_attribute] = STATE(1782), + [STATE(638)] = { + [sym__qmd_attribute] = STATE(1777), + [sym_raw_attribute] = STATE(1777), + [sym_commonmark_attribute] = STATE(1777), + [sym_language_attribute] = STATE(1777), [sym__backslash_escape] = ACTIONS(4193), [sym_entity_reference] = ACTIONS(4193), [sym_numeric_character_reference] = ACTIONS(4193), @@ -90708,11 +90636,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4193), [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, - [STATE(640)] = { - [sym__qmd_attribute] = STATE(1783), - [sym_raw_attribute] = STATE(1783), - [sym_commonmark_attribute] = STATE(1783), - [sym_language_attribute] = STATE(1783), + [STATE(639)] = { + [sym__qmd_attribute] = STATE(1778), + [sym_raw_attribute] = STATE(1778), + [sym_commonmark_attribute] = STATE(1778), + [sym_language_attribute] = STATE(1778), [sym__backslash_escape] = ACTIONS(4197), [sym_entity_reference] = ACTIONS(4197), [sym_numeric_character_reference] = ACTIONS(4197), @@ -90779,11 +90707,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4197), [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, - [STATE(641)] = { - [sym__qmd_attribute] = STATE(899), - [sym_raw_attribute] = STATE(899), - [sym_commonmark_attribute] = STATE(899), - [sym_language_attribute] = STATE(899), + [STATE(640)] = { + [sym__qmd_attribute] = STATE(1783), + [sym_raw_attribute] = STATE(1783), + [sym_commonmark_attribute] = STATE(1783), + [sym_language_attribute] = STATE(1783), [sym__backslash_escape] = ACTIONS(4201), [sym_entity_reference] = ACTIONS(4201), [sym_numeric_character_reference] = ACTIONS(4201), @@ -90850,11 +90778,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4201), [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, - [STATE(642)] = { - [sym__qmd_attribute] = STATE(900), - [sym_raw_attribute] = STATE(900), - [sym_commonmark_attribute] = STATE(900), - [sym_language_attribute] = STATE(900), + [STATE(641)] = { + [sym__qmd_attribute] = STATE(1784), + [sym_raw_attribute] = STATE(1784), + [sym_commonmark_attribute] = STATE(1784), + [sym_language_attribute] = STATE(1784), [sym__backslash_escape] = ACTIONS(4205), [sym_entity_reference] = ACTIONS(4205), [sym_numeric_character_reference] = ACTIONS(4205), @@ -90921,11 +90849,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4205), [sym__strong_emphasis_open_underscore] = ACTIONS(4205), }, - [STATE(643)] = { - [sym__qmd_attribute] = STATE(906), - [sym_raw_attribute] = STATE(906), - [sym_commonmark_attribute] = STATE(906), - [sym_language_attribute] = STATE(906), + [STATE(642)] = { + [sym__qmd_attribute] = STATE(902), + [sym_raw_attribute] = STATE(902), + [sym_commonmark_attribute] = STATE(902), + [sym_language_attribute] = STATE(902), [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), [sym_numeric_character_reference] = ACTIONS(4209), @@ -90992,11 +90920,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4209), [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, - [STATE(644)] = { - [sym__qmd_attribute] = STATE(907), - [sym_raw_attribute] = STATE(907), - [sym_commonmark_attribute] = STATE(907), - [sym_language_attribute] = STATE(907), + [STATE(643)] = { + [sym__qmd_attribute] = STATE(903), + [sym_raw_attribute] = STATE(903), + [sym_commonmark_attribute] = STATE(903), + [sym_language_attribute] = STATE(903), [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), [sym_numeric_character_reference] = ACTIONS(4213), @@ -91063,11 +90991,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4213), [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, - [STATE(645)] = { - [sym__qmd_attribute] = STATE(912), - [sym_raw_attribute] = STATE(912), - [sym_commonmark_attribute] = STATE(912), - [sym_language_attribute] = STATE(912), + [STATE(644)] = { + [sym__qmd_attribute] = STATE(908), + [sym_raw_attribute] = STATE(908), + [sym_commonmark_attribute] = STATE(908), + [sym_language_attribute] = STATE(908), [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -91134,11 +91062,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4217), [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, - [STATE(646)] = { - [sym__qmd_attribute] = STATE(913), - [sym_raw_attribute] = STATE(913), - [sym_commonmark_attribute] = STATE(913), - [sym_language_attribute] = STATE(913), + [STATE(645)] = { + [sym__qmd_attribute] = STATE(909), + [sym_raw_attribute] = STATE(909), + [sym_commonmark_attribute] = STATE(909), + [sym_language_attribute] = STATE(909), [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -91205,11 +91133,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4221), [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, - [STATE(647)] = { - [sym__qmd_attribute] = STATE(916), - [sym_raw_attribute] = STATE(916), - [sym_commonmark_attribute] = STATE(916), - [sym_language_attribute] = STATE(916), + [STATE(646)] = { + [sym__qmd_attribute] = STATE(912), + [sym_raw_attribute] = STATE(912), + [sym_commonmark_attribute] = STATE(912), + [sym_language_attribute] = STATE(912), [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -91276,11 +91204,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4225), [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, - [STATE(648)] = { - [sym__qmd_attribute] = STATE(917), - [sym_raw_attribute] = STATE(917), - [sym_commonmark_attribute] = STATE(917), - [sym_language_attribute] = STATE(917), + [STATE(647)] = { + [sym__qmd_attribute] = STATE(913), + [sym_raw_attribute] = STATE(913), + [sym_commonmark_attribute] = STATE(913), + [sym_language_attribute] = STATE(913), [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -91347,11 +91275,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4229), [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, - [STATE(649)] = { - [sym__qmd_attribute] = STATE(919), - [sym_raw_attribute] = STATE(919), - [sym_commonmark_attribute] = STATE(919), - [sym_language_attribute] = STATE(919), + [STATE(648)] = { + [sym__qmd_attribute] = STATE(915), + [sym_raw_attribute] = STATE(915), + [sym_commonmark_attribute] = STATE(915), + [sym_language_attribute] = STATE(915), [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -91418,11 +91346,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4233), [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, - [STATE(650)] = { - [sym__qmd_attribute] = STATE(921), - [sym_raw_attribute] = STATE(921), - [sym_commonmark_attribute] = STATE(921), - [sym_language_attribute] = STATE(921), + [STATE(649)] = { + [sym__qmd_attribute] = STATE(917), + [sym_raw_attribute] = STATE(917), + [sym_commonmark_attribute] = STATE(917), + [sym_language_attribute] = STATE(917), [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -91489,11 +91417,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4237), [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, - [STATE(651)] = { - [sym__qmd_attribute] = STATE(922), - [sym_raw_attribute] = STATE(922), - [sym_commonmark_attribute] = STATE(922), - [sym_language_attribute] = STATE(922), + [STATE(650)] = { + [sym__qmd_attribute] = STATE(918), + [sym_raw_attribute] = STATE(918), + [sym_commonmark_attribute] = STATE(918), + [sym_language_attribute] = STATE(918), [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -91560,11 +91488,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4241), [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, - [STATE(652)] = { - [sym__qmd_attribute] = STATE(923), - [sym_raw_attribute] = STATE(923), - [sym_commonmark_attribute] = STATE(923), - [sym_language_attribute] = STATE(923), + [STATE(651)] = { + [sym__qmd_attribute] = STATE(919), + [sym_raw_attribute] = STATE(919), + [sym_commonmark_attribute] = STATE(919), + [sym_language_attribute] = STATE(919), [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -91631,153 +91559,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4245), [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, - [STATE(653)] = { - [sym__qmd_attribute] = STATE(940), - [sym_raw_attribute] = STATE(940), - [sym_commonmark_attribute] = STATE(940), - [sym_language_attribute] = STATE(940), - [sym__backslash_escape] = ACTIONS(4257), - [sym_entity_reference] = ACTIONS(4257), - [sym_numeric_character_reference] = ACTIONS(4257), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4257), - [anon_sym_BANG] = ACTIONS(4257), - [anon_sym_DQUOTE] = ACTIONS(4257), - [anon_sym_POUND] = ACTIONS(4257), - [anon_sym_DOLLAR] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4257), - [anon_sym_AMP] = ACTIONS(4259), - [anon_sym_SQUOTE] = ACTIONS(4257), - [anon_sym_PLUS] = ACTIONS(4257), - [anon_sym_COMMA] = ACTIONS(4257), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_DOT] = ACTIONS(4259), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_COLON] = ACTIONS(4257), - [anon_sym_SEMI] = ACTIONS(4257), - [anon_sym_EQ] = ACTIONS(4257), - [anon_sym_QMARK] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_BSLASH] = ACTIONS(4259), - [anon_sym_CARET] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4257), + [STATE(652)] = { + [sym__qmd_attribute] = STATE(936), + [sym_raw_attribute] = STATE(936), + [sym_commonmark_attribute] = STATE(936), + [sym_language_attribute] = STATE(936), + [sym__backslash_escape] = ACTIONS(4251), + [sym_entity_reference] = ACTIONS(4251), + [sym_numeric_character_reference] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_DQUOTE] = ACTIONS(4251), + [anon_sym_POUND] = ACTIONS(4251), + [anon_sym_DOLLAR] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_COMMA] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_COLON] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4251), + [anon_sym_QMARK] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_BSLASH] = ACTIONS(4253), + [anon_sym_CARET] = ACTIONS(4253), + [anon_sym_BQUOTE] = ACTIONS(4251), [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4257), - [anon_sym_TILDE] = ACTIONS(4257), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), [anon_sym_LPAREN] = ACTIONS(4313), - [anon_sym_RPAREN] = ACTIONS(4257), - [sym__newline_token] = ACTIONS(4257), - [aux_sym_insert_token1] = ACTIONS(4257), - [aux_sym_delete_token1] = ACTIONS(4257), - [aux_sym_highlight_token1] = ACTIONS(4257), - [aux_sym_edit_comment_token1] = ACTIONS(4257), - [anon_sym_CARET_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_CARET] = ACTIONS(4257), - [sym_uri_autolink] = ACTIONS(4257), - [sym_email_autolink] = ACTIONS(4257), - [sym__whitespace_ge_2] = ACTIONS(4257), - [aux_sym__whitespace_token1] = ACTIONS(4259), - [sym__word_no_digit] = ACTIONS(4257), - [sym__digits] = ACTIONS(4257), - [anon_sym_DASH_DASH] = ACTIONS(4259), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4257), - [sym__code_span_start] = ACTIONS(4257), - [sym__emphasis_open_star] = ACTIONS(4257), - [sym__emphasis_open_underscore] = ACTIONS(4257), - [sym__strikeout_open] = ACTIONS(4257), - [sym__latex_span_start] = ACTIONS(4257), - [sym__single_quote_open] = ACTIONS(4257), - [sym__double_quote_open] = ACTIONS(4257), - [sym__superscript_open] = ACTIONS(4257), - [sym__superscript_close] = ACTIONS(4257), - [sym__subscript_open] = ACTIONS(4257), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4257), - [sym__cite_author_in_text] = ACTIONS(4257), - [sym__cite_suppress_author] = ACTIONS(4257), - [sym__shortcode_open_escaped] = ACTIONS(4257), - [sym__shortcode_open] = ACTIONS(4257), - [sym__unclosed_span] = ACTIONS(4257), - [sym__strong_emphasis_open_star] = ACTIONS(4257), - [sym__strong_emphasis_open_underscore] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4251), + [sym__newline_token] = ACTIONS(4251), + [aux_sym_insert_token1] = ACTIONS(4251), + [aux_sym_delete_token1] = ACTIONS(4251), + [aux_sym_highlight_token1] = ACTIONS(4251), + [aux_sym_edit_comment_token1] = ACTIONS(4251), + [anon_sym_CARET_LBRACK] = ACTIONS(4251), + [anon_sym_LBRACK_CARET] = ACTIONS(4251), + [sym_uri_autolink] = ACTIONS(4251), + [sym_email_autolink] = ACTIONS(4251), + [sym__whitespace_ge_2] = ACTIONS(4251), + [aux_sym__whitespace_token1] = ACTIONS(4253), + [sym__word_no_digit] = ACTIONS(4251), + [sym__digits] = ACTIONS(4251), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4251), + [sym__code_span_start] = ACTIONS(4251), + [sym__emphasis_open_star] = ACTIONS(4251), + [sym__emphasis_open_underscore] = ACTIONS(4251), + [sym__strikeout_open] = ACTIONS(4251), + [sym__latex_span_start] = ACTIONS(4251), + [sym__single_quote_open] = ACTIONS(4251), + [sym__double_quote_open] = ACTIONS(4251), + [sym__superscript_open] = ACTIONS(4251), + [sym__superscript_close] = ACTIONS(4251), + [sym__subscript_open] = ACTIONS(4251), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4251), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4251), + [sym__cite_author_in_text] = ACTIONS(4251), + [sym__cite_suppress_author] = ACTIONS(4251), + [sym__shortcode_open_escaped] = ACTIONS(4251), + [sym__shortcode_open] = ACTIONS(4251), + [sym__unclosed_span] = ACTIONS(4251), + [sym__strong_emphasis_open_star] = ACTIONS(4251), + [sym__strong_emphasis_open_underscore] = ACTIONS(4251), }, - [STATE(654)] = { - [sym__qmd_attribute] = STATE(941), - [sym_raw_attribute] = STATE(941), - [sym_commonmark_attribute] = STATE(941), - [sym_language_attribute] = STATE(941), - [sym__backslash_escape] = ACTIONS(4267), - [sym_entity_reference] = ACTIONS(4267), - [sym_numeric_character_reference] = ACTIONS(4267), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4267), - [anon_sym_BANG] = ACTIONS(4267), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_POUND] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_PERCENT] = ACTIONS(4267), - [anon_sym_AMP] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4267), - [anon_sym_PLUS] = ACTIONS(4267), - [anon_sym_COMMA] = ACTIONS(4267), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4267), - [anon_sym_COLON] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4267), - [anon_sym_EQ] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4267), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_BSLASH] = ACTIONS(4269), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4267), + [STATE(653)] = { + [sym__qmd_attribute] = STATE(937), + [sym_raw_attribute] = STATE(937), + [sym_commonmark_attribute] = STATE(937), + [sym_language_attribute] = STATE(937), + [sym__backslash_escape] = ACTIONS(4263), + [sym_entity_reference] = ACTIONS(4263), + [sym_numeric_character_reference] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4265), + [anon_sym_GT] = ACTIONS(4263), + [anon_sym_BANG] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(4263), + [anon_sym_DOLLAR] = ACTIONS(4263), + [anon_sym_PERCENT] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4265), + [anon_sym_SQUOTE] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_COMMA] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_COLON] = ACTIONS(4263), + [anon_sym_SEMI] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_BSLASH] = ACTIONS(4265), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_BQUOTE] = ACTIONS(4263), [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4267), - [anon_sym_TILDE] = ACTIONS(4267), - [anon_sym_LPAREN] = ACTIONS(4267), - [anon_sym_RPAREN] = ACTIONS(4267), - [sym__newline_token] = ACTIONS(4267), - [aux_sym_insert_token1] = ACTIONS(4267), - [aux_sym_delete_token1] = ACTIONS(4267), - [aux_sym_highlight_token1] = ACTIONS(4267), - [aux_sym_edit_comment_token1] = ACTIONS(4267), - [anon_sym_CARET_LBRACK] = ACTIONS(4267), - [anon_sym_LBRACK_CARET] = ACTIONS(4267), - [sym_uri_autolink] = ACTIONS(4267), - [sym_email_autolink] = ACTIONS(4267), - [sym__whitespace_ge_2] = ACTIONS(4267), - [aux_sym__whitespace_token1] = ACTIONS(4269), - [sym__word_no_digit] = ACTIONS(4267), - [sym__digits] = ACTIONS(4267), - [anon_sym_DASH_DASH] = ACTIONS(4269), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), - [sym__code_span_start] = ACTIONS(4267), - [sym__emphasis_open_star] = ACTIONS(4267), - [sym__emphasis_open_underscore] = ACTIONS(4267), - [sym__strikeout_open] = ACTIONS(4267), - [sym__latex_span_start] = ACTIONS(4267), - [sym__single_quote_open] = ACTIONS(4267), - [sym__double_quote_open] = ACTIONS(4267), - [sym__superscript_open] = ACTIONS(4267), - [sym__superscript_close] = ACTIONS(4267), - [sym__subscript_open] = ACTIONS(4267), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), - [sym__cite_author_in_text] = ACTIONS(4267), - [sym__cite_suppress_author] = ACTIONS(4267), - [sym__shortcode_open_escaped] = ACTIONS(4267), - [sym__shortcode_open] = ACTIONS(4267), - [sym__unclosed_span] = ACTIONS(4267), - [sym__strong_emphasis_open_star] = ACTIONS(4267), - [sym__strong_emphasis_open_underscore] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4263), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym_RPAREN] = ACTIONS(4263), + [sym__newline_token] = ACTIONS(4263), + [aux_sym_insert_token1] = ACTIONS(4263), + [aux_sym_delete_token1] = ACTIONS(4263), + [aux_sym_highlight_token1] = ACTIONS(4263), + [aux_sym_edit_comment_token1] = ACTIONS(4263), + [anon_sym_CARET_LBRACK] = ACTIONS(4263), + [anon_sym_LBRACK_CARET] = ACTIONS(4263), + [sym_uri_autolink] = ACTIONS(4263), + [sym_email_autolink] = ACTIONS(4263), + [sym__whitespace_ge_2] = ACTIONS(4263), + [aux_sym__whitespace_token1] = ACTIONS(4265), + [sym__word_no_digit] = ACTIONS(4263), + [sym__digits] = ACTIONS(4263), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), + [sym__code_span_start] = ACTIONS(4263), + [sym__emphasis_open_star] = ACTIONS(4263), + [sym__emphasis_open_underscore] = ACTIONS(4263), + [sym__strikeout_open] = ACTIONS(4263), + [sym__latex_span_start] = ACTIONS(4263), + [sym__single_quote_open] = ACTIONS(4263), + [sym__double_quote_open] = ACTIONS(4263), + [sym__superscript_open] = ACTIONS(4263), + [sym__superscript_close] = ACTIONS(4263), + [sym__subscript_open] = ACTIONS(4263), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), + [sym__cite_author_in_text] = ACTIONS(4263), + [sym__cite_suppress_author] = ACTIONS(4263), + [sym__shortcode_open_escaped] = ACTIONS(4263), + [sym__shortcode_open] = ACTIONS(4263), + [sym__unclosed_span] = ACTIONS(4263), + [sym__strong_emphasis_open_star] = ACTIONS(4263), + [sym__strong_emphasis_open_underscore] = ACTIONS(4263), }, - [STATE(655)] = { - [sym__qmd_attribute] = STATE(942), - [sym_raw_attribute] = STATE(942), - [sym_commonmark_attribute] = STATE(942), - [sym_language_attribute] = STATE(942), + [STATE(654)] = { + [sym__qmd_attribute] = STATE(938), + [sym_raw_attribute] = STATE(938), + [sym_commonmark_attribute] = STATE(938), + [sym_language_attribute] = STATE(938), [sym__backslash_escape] = ACTIONS(4283), [sym_entity_reference] = ACTIONS(4283), [sym_numeric_character_reference] = ACTIONS(4283), @@ -91844,11 +91772,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4283), [sym__strong_emphasis_open_underscore] = ACTIONS(4283), }, - [STATE(656)] = { - [sym__qmd_attribute] = STATE(954), - [sym_raw_attribute] = STATE(954), - [sym_commonmark_attribute] = STATE(954), - [sym_language_attribute] = STATE(954), + [STATE(655)] = { + [sym__qmd_attribute] = STATE(950), + [sym_raw_attribute] = STATE(950), + [sym_commonmark_attribute] = STATE(950), + [sym_language_attribute] = STATE(950), [sym__backslash_escape] = ACTIONS(4181), [sym_entity_reference] = ACTIONS(4181), [sym_numeric_character_reference] = ACTIONS(4181), @@ -91915,153 +91843,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4181), [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, + [STATE(656)] = { + [sym__qmd_attribute] = STATE(953), + [sym_raw_attribute] = STATE(953), + [sym_commonmark_attribute] = STATE(953), + [sym_language_attribute] = STATE(953), + [sym__backslash_escape] = ACTIONS(4259), + [sym_entity_reference] = ACTIONS(4259), + [sym_numeric_character_reference] = ACTIONS(4259), + [anon_sym_LT] = ACTIONS(4261), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + [anon_sym_SQUOTE] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_COMMA] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_DOT] = ACTIONS(4261), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_QMARK] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_BSLASH] = ACTIONS(4261), + [anon_sym_CARET] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4311), + [anon_sym_PIPE] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym_RPAREN] = ACTIONS(4259), + [sym__newline_token] = ACTIONS(4259), + [aux_sym_insert_token1] = ACTIONS(4259), + [aux_sym_delete_token1] = ACTIONS(4259), + [aux_sym_highlight_token1] = ACTIONS(4259), + [aux_sym_edit_comment_token1] = ACTIONS(4259), + [anon_sym_CARET_LBRACK] = ACTIONS(4259), + [anon_sym_LBRACK_CARET] = ACTIONS(4259), + [sym_uri_autolink] = ACTIONS(4259), + [sym_email_autolink] = ACTIONS(4259), + [sym__whitespace_ge_2] = ACTIONS(4259), + [aux_sym__whitespace_token1] = ACTIONS(4261), + [sym__word_no_digit] = ACTIONS(4259), + [sym__digits] = ACTIONS(4259), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4259), + [sym__code_span_start] = ACTIONS(4259), + [sym__emphasis_open_star] = ACTIONS(4259), + [sym__emphasis_open_underscore] = ACTIONS(4259), + [sym__strikeout_open] = ACTIONS(4259), + [sym__latex_span_start] = ACTIONS(4259), + [sym__single_quote_open] = ACTIONS(4259), + [sym__double_quote_open] = ACTIONS(4259), + [sym__superscript_open] = ACTIONS(4259), + [sym__superscript_close] = ACTIONS(4259), + [sym__subscript_open] = ACTIONS(4259), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4259), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4259), + [sym__cite_author_in_text] = ACTIONS(4259), + [sym__cite_suppress_author] = ACTIONS(4259), + [sym__shortcode_open_escaped] = ACTIONS(4259), + [sym__shortcode_open] = ACTIONS(4259), + [sym__unclosed_span] = ACTIONS(4259), + [sym__strong_emphasis_open_star] = ACTIONS(4259), + [sym__strong_emphasis_open_underscore] = ACTIONS(4259), + }, [STATE(657)] = { - [sym__qmd_attribute] = STATE(957), - [sym_raw_attribute] = STATE(957), - [sym_commonmark_attribute] = STATE(957), - [sym_language_attribute] = STATE(957), - [sym__backslash_escape] = ACTIONS(4263), - [sym_entity_reference] = ACTIONS(4263), - [sym_numeric_character_reference] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(4265), - [anon_sym_GT] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4263), - [anon_sym_POUND] = ACTIONS(4263), - [anon_sym_DOLLAR] = ACTIONS(4263), - [anon_sym_PERCENT] = ACTIONS(4263), - [anon_sym_AMP] = ACTIONS(4265), - [anon_sym_SQUOTE] = ACTIONS(4263), - [anon_sym_PLUS] = ACTIONS(4263), - [anon_sym_COMMA] = ACTIONS(4263), - [anon_sym_DASH] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4265), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_COLON] = ACTIONS(4263), - [anon_sym_SEMI] = ACTIONS(4263), - [anon_sym_EQ] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4263), - [anon_sym_LBRACK] = ACTIONS(4265), - [anon_sym_BSLASH] = ACTIONS(4265), - [anon_sym_CARET] = ACTIONS(4265), - [anon_sym_BQUOTE] = ACTIONS(4263), + [sym__qmd_attribute] = STATE(954), + [sym_raw_attribute] = STATE(954), + [sym_commonmark_attribute] = STATE(954), + [sym_language_attribute] = STATE(954), + [sym__backslash_escape] = ACTIONS(4267), + [sym_entity_reference] = ACTIONS(4267), + [sym_numeric_character_reference] = ACTIONS(4267), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_DQUOTE] = ACTIONS(4267), + [anon_sym_POUND] = ACTIONS(4267), + [anon_sym_DOLLAR] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_SQUOTE] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_COMMA] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4269), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_COLON] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_QMARK] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_BSLASH] = ACTIONS(4269), + [anon_sym_CARET] = ACTIONS(4269), + [anon_sym_BQUOTE] = ACTIONS(4267), [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4263), - [anon_sym_TILDE] = ACTIONS(4263), - [anon_sym_LPAREN] = ACTIONS(4263), - [anon_sym_RPAREN] = ACTIONS(4263), - [sym__newline_token] = ACTIONS(4263), - [aux_sym_insert_token1] = ACTIONS(4263), - [aux_sym_delete_token1] = ACTIONS(4263), - [aux_sym_highlight_token1] = ACTIONS(4263), - [aux_sym_edit_comment_token1] = ACTIONS(4263), - [anon_sym_CARET_LBRACK] = ACTIONS(4263), - [anon_sym_LBRACK_CARET] = ACTIONS(4263), - [sym_uri_autolink] = ACTIONS(4263), - [sym_email_autolink] = ACTIONS(4263), - [sym__whitespace_ge_2] = ACTIONS(4263), - [aux_sym__whitespace_token1] = ACTIONS(4265), - [sym__word_no_digit] = ACTIONS(4263), - [sym__digits] = ACTIONS(4263), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), - [sym__code_span_start] = ACTIONS(4263), - [sym__emphasis_open_star] = ACTIONS(4263), - [sym__emphasis_open_underscore] = ACTIONS(4263), - [sym__strikeout_open] = ACTIONS(4263), - [sym__latex_span_start] = ACTIONS(4263), - [sym__single_quote_open] = ACTIONS(4263), - [sym__double_quote_open] = ACTIONS(4263), - [sym__superscript_open] = ACTIONS(4263), - [sym__superscript_close] = ACTIONS(4263), - [sym__subscript_open] = ACTIONS(4263), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), - [sym__cite_author_in_text] = ACTIONS(4263), - [sym__cite_suppress_author] = ACTIONS(4263), - [sym__shortcode_open_escaped] = ACTIONS(4263), - [sym__shortcode_open] = ACTIONS(4263), - [sym__unclosed_span] = ACTIONS(4263), - [sym__strong_emphasis_open_star] = ACTIONS(4263), - [sym__strong_emphasis_open_underscore] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4267), + [anon_sym_TILDE] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_RPAREN] = ACTIONS(4267), + [sym__newline_token] = ACTIONS(4267), + [aux_sym_insert_token1] = ACTIONS(4267), + [aux_sym_delete_token1] = ACTIONS(4267), + [aux_sym_highlight_token1] = ACTIONS(4267), + [aux_sym_edit_comment_token1] = ACTIONS(4267), + [anon_sym_CARET_LBRACK] = ACTIONS(4267), + [anon_sym_LBRACK_CARET] = ACTIONS(4267), + [sym_uri_autolink] = ACTIONS(4267), + [sym_email_autolink] = ACTIONS(4267), + [sym__whitespace_ge_2] = ACTIONS(4267), + [aux_sym__whitespace_token1] = ACTIONS(4269), + [sym__word_no_digit] = ACTIONS(4267), + [sym__digits] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), + [sym__code_span_start] = ACTIONS(4267), + [sym__emphasis_open_star] = ACTIONS(4267), + [sym__emphasis_open_underscore] = ACTIONS(4267), + [sym__strikeout_open] = ACTIONS(4267), + [sym__latex_span_start] = ACTIONS(4267), + [sym__single_quote_open] = ACTIONS(4267), + [sym__double_quote_open] = ACTIONS(4267), + [sym__superscript_open] = ACTIONS(4267), + [sym__superscript_close] = ACTIONS(4267), + [sym__subscript_open] = ACTIONS(4267), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), + [sym__cite_author_in_text] = ACTIONS(4267), + [sym__cite_suppress_author] = ACTIONS(4267), + [sym__shortcode_open_escaped] = ACTIONS(4267), + [sym__shortcode_open] = ACTIONS(4267), + [sym__unclosed_span] = ACTIONS(4267), + [sym__strong_emphasis_open_star] = ACTIONS(4267), + [sym__strong_emphasis_open_underscore] = ACTIONS(4267), }, [STATE(658)] = { - [sym__qmd_attribute] = STATE(958), - [sym_raw_attribute] = STATE(958), - [sym_commonmark_attribute] = STATE(958), - [sym_language_attribute] = STATE(958), - [sym__backslash_escape] = ACTIONS(4271), - [sym_entity_reference] = ACTIONS(4271), - [sym_numeric_character_reference] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4273), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_POUND] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4273), - [anon_sym_SQUOTE] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4273), - [anon_sym_SLASH] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_EQ] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(4271), - [anon_sym_LBRACK] = ACTIONS(4273), - [anon_sym_BSLASH] = ACTIONS(4273), - [anon_sym_CARET] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4271), + [sym__qmd_attribute] = STATE(955), + [sym_raw_attribute] = STATE(955), + [sym_commonmark_attribute] = STATE(955), + [sym_language_attribute] = STATE(955), + [sym__backslash_escape] = ACTIONS(4275), + [sym_entity_reference] = ACTIONS(4275), + [sym_numeric_character_reference] = ACTIONS(4275), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + [anon_sym_SQUOTE] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_COMMA] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4277), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_COLON] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_QMARK] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_BSLASH] = ACTIONS(4277), + [anon_sym_CARET] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4275), [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_TILDE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [sym__newline_token] = ACTIONS(4271), - [aux_sym_insert_token1] = ACTIONS(4271), - [aux_sym_delete_token1] = ACTIONS(4271), - [aux_sym_highlight_token1] = ACTIONS(4271), - [aux_sym_edit_comment_token1] = ACTIONS(4271), - [anon_sym_CARET_LBRACK] = ACTIONS(4271), - [anon_sym_LBRACK_CARET] = ACTIONS(4271), - [sym_uri_autolink] = ACTIONS(4271), - [sym_email_autolink] = ACTIONS(4271), - [sym__whitespace_ge_2] = ACTIONS(4271), - [aux_sym__whitespace_token1] = ACTIONS(4273), - [sym__word_no_digit] = ACTIONS(4271), - [sym__digits] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4273), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), - [sym__code_span_start] = ACTIONS(4271), - [sym__emphasis_open_star] = ACTIONS(4271), - [sym__emphasis_open_underscore] = ACTIONS(4271), - [sym__strikeout_open] = ACTIONS(4271), - [sym__latex_span_start] = ACTIONS(4271), - [sym__single_quote_open] = ACTIONS(4271), - [sym__double_quote_open] = ACTIONS(4271), - [sym__superscript_open] = ACTIONS(4271), - [sym__superscript_close] = ACTIONS(4271), - [sym__subscript_open] = ACTIONS(4271), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), - [sym__cite_author_in_text] = ACTIONS(4271), - [sym__cite_suppress_author] = ACTIONS(4271), - [sym__shortcode_open_escaped] = ACTIONS(4271), - [sym__shortcode_open] = ACTIONS(4271), - [sym__unclosed_span] = ACTIONS(4271), - [sym__strong_emphasis_open_star] = ACTIONS(4271), - [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4275), + [anon_sym_TILDE] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4275), + [anon_sym_RPAREN] = ACTIONS(4275), + [sym__newline_token] = ACTIONS(4275), + [aux_sym_insert_token1] = ACTIONS(4275), + [aux_sym_delete_token1] = ACTIONS(4275), + [aux_sym_highlight_token1] = ACTIONS(4275), + [aux_sym_edit_comment_token1] = ACTIONS(4275), + [anon_sym_CARET_LBRACK] = ACTIONS(4275), + [anon_sym_LBRACK_CARET] = ACTIONS(4275), + [sym_uri_autolink] = ACTIONS(4275), + [sym_email_autolink] = ACTIONS(4275), + [sym__whitespace_ge_2] = ACTIONS(4275), + [aux_sym__whitespace_token1] = ACTIONS(4277), + [sym__word_no_digit] = ACTIONS(4275), + [sym__digits] = ACTIONS(4275), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), + [sym__code_span_start] = ACTIONS(4275), + [sym__emphasis_open_star] = ACTIONS(4275), + [sym__emphasis_open_underscore] = ACTIONS(4275), + [sym__strikeout_open] = ACTIONS(4275), + [sym__latex_span_start] = ACTIONS(4275), + [sym__single_quote_open] = ACTIONS(4275), + [sym__double_quote_open] = ACTIONS(4275), + [sym__superscript_open] = ACTIONS(4275), + [sym__superscript_close] = ACTIONS(4275), + [sym__subscript_open] = ACTIONS(4275), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), + [sym__cite_author_in_text] = ACTIONS(4275), + [sym__cite_suppress_author] = ACTIONS(4275), + [sym__shortcode_open_escaped] = ACTIONS(4275), + [sym__shortcode_open] = ACTIONS(4275), + [sym__unclosed_span] = ACTIONS(4275), + [sym__strong_emphasis_open_star] = ACTIONS(4275), + [sym__strong_emphasis_open_underscore] = ACTIONS(4275), }, [STATE(659)] = { - [sym__qmd_attribute] = STATE(959), - [sym_raw_attribute] = STATE(959), - [sym_commonmark_attribute] = STATE(959), - [sym_language_attribute] = STATE(959), + [sym__qmd_attribute] = STATE(957), + [sym_raw_attribute] = STATE(957), + [sym_commonmark_attribute] = STATE(957), + [sym_language_attribute] = STATE(957), [sym__backslash_escape] = ACTIONS(4287), [sym_entity_reference] = ACTIONS(4287), [sym_numeric_character_reference] = ACTIONS(4287), @@ -92129,10 +92128,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4287), }, [STATE(660)] = { - [sym__qmd_attribute] = STATE(961), - [sym_raw_attribute] = STATE(961), - [sym_commonmark_attribute] = STATE(961), - [sym_language_attribute] = STATE(961), + [sym__qmd_attribute] = STATE(1307), + [sym_raw_attribute] = STATE(1307), + [sym_commonmark_attribute] = STATE(1307), + [sym_language_attribute] = STATE(1307), + [sym__backslash_escape] = ACTIONS(4251), + [sym_entity_reference] = ACTIONS(4251), + [sym_numeric_character_reference] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_DQUOTE] = ACTIONS(4251), + [anon_sym_POUND] = ACTIONS(4251), + [anon_sym_DOLLAR] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_COMMA] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_COLON] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4251), + [anon_sym_QMARK] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_BSLASH] = ACTIONS(4253), + [anon_sym_RBRACK] = ACTIONS(4251), + [anon_sym_CARET] = ACTIONS(4253), + [anon_sym_BQUOTE] = ACTIONS(4251), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_RPAREN] = ACTIONS(4251), + [sym__newline_token] = ACTIONS(4251), + [aux_sym_insert_token1] = ACTIONS(4251), + [aux_sym_delete_token1] = ACTIONS(4251), + [aux_sym_highlight_token1] = ACTIONS(4251), + [aux_sym_edit_comment_token1] = ACTIONS(4251), + [anon_sym_CARET_LBRACK] = ACTIONS(4251), + [anon_sym_LBRACK_CARET] = ACTIONS(4251), + [sym_uri_autolink] = ACTIONS(4251), + [sym_email_autolink] = ACTIONS(4251), + [sym__whitespace_ge_2] = ACTIONS(4251), + [aux_sym__whitespace_token1] = ACTIONS(4253), + [sym__word_no_digit] = ACTIONS(4251), + [sym__digits] = ACTIONS(4251), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4251), + [sym__code_span_start] = ACTIONS(4251), + [sym__emphasis_open_star] = ACTIONS(4251), + [sym__emphasis_open_underscore] = ACTIONS(4251), + [sym__strikeout_open] = ACTIONS(4251), + [sym__latex_span_start] = ACTIONS(4251), + [sym__single_quote_open] = ACTIONS(4251), + [sym__double_quote_open] = ACTIONS(4251), + [sym__superscript_open] = ACTIONS(4251), + [sym__subscript_open] = ACTIONS(4251), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4251), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4251), + [sym__cite_author_in_text] = ACTIONS(4251), + [sym__cite_suppress_author] = ACTIONS(4251), + [sym__shortcode_open_escaped] = ACTIONS(4251), + [sym__shortcode_open] = ACTIONS(4251), + [sym__unclosed_span] = ACTIONS(4251), + [sym__strong_emphasis_open_star] = ACTIONS(4251), + [sym__strong_emphasis_open_underscore] = ACTIONS(4251), + }, + [STATE(661)] = { + [sym__qmd_attribute] = STATE(960), + [sym_raw_attribute] = STATE(960), + [sym_commonmark_attribute] = STATE(960), + [sym_language_attribute] = STATE(960), [sym__backslash_escape] = ACTIONS(4291), [sym_entity_reference] = ACTIONS(4291), [sym_numeric_character_reference] = ACTIONS(4291), @@ -92199,224 +92269,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4291), [sym__strong_emphasis_open_underscore] = ACTIONS(4291), }, - [STATE(661)] = { + [STATE(662)] = { + [sym__qmd_attribute] = STATE(1586), + [sym_raw_attribute] = STATE(1586), + [sym_commonmark_attribute] = STATE(1586), + [sym_language_attribute] = STATE(1586), + [ts_builtin_sym_end] = ACTIONS(4291), + [sym__backslash_escape] = ACTIONS(4291), + [sym_entity_reference] = ACTIONS(4291), + [sym_numeric_character_reference] = ACTIONS(4291), + [anon_sym_LT] = ACTIONS(4293), + [anon_sym_GT] = ACTIONS(4291), + [anon_sym_BANG] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4291), + [anon_sym_POUND] = ACTIONS(4291), + [anon_sym_DOLLAR] = ACTIONS(4291), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_PLUS] = ACTIONS(4291), + [anon_sym_COMMA] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_DOT] = ACTIONS(4293), + [anon_sym_SLASH] = ACTIONS(4291), + [anon_sym_COLON] = ACTIONS(4291), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym_EQ] = ACTIONS(4291), + [anon_sym_QMARK] = ACTIONS(4291), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_BSLASH] = ACTIONS(4293), + [anon_sym_CARET] = ACTIONS(4293), + [anon_sym_BQUOTE] = ACTIONS(4291), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_RPAREN] = ACTIONS(4291), + [sym__newline_token] = ACTIONS(4291), + [aux_sym_insert_token1] = ACTIONS(4291), + [aux_sym_delete_token1] = ACTIONS(4291), + [aux_sym_highlight_token1] = ACTIONS(4291), + [aux_sym_edit_comment_token1] = ACTIONS(4291), + [anon_sym_CARET_LBRACK] = ACTIONS(4291), + [anon_sym_LBRACK_CARET] = ACTIONS(4291), + [sym_uri_autolink] = ACTIONS(4291), + [sym_email_autolink] = ACTIONS(4291), + [sym__whitespace_ge_2] = ACTIONS(4291), + [aux_sym__whitespace_token1] = ACTIONS(4293), + [sym__word_no_digit] = ACTIONS(4291), + [sym__digits] = ACTIONS(4291), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), + [sym__code_span_start] = ACTIONS(4291), + [sym__emphasis_open_star] = ACTIONS(4291), + [sym__emphasis_open_underscore] = ACTIONS(4291), + [sym__strikeout_open] = ACTIONS(4291), + [sym__latex_span_start] = ACTIONS(4291), + [sym__single_quote_open] = ACTIONS(4291), + [sym__double_quote_open] = ACTIONS(4291), + [sym__superscript_open] = ACTIONS(4291), + [sym__subscript_open] = ACTIONS(4291), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4291), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4291), + [sym__cite_author_in_text] = ACTIONS(4291), + [sym__cite_suppress_author] = ACTIONS(4291), + [sym__shortcode_open_escaped] = ACTIONS(4291), + [sym__shortcode_open] = ACTIONS(4291), + [sym__unclosed_span] = ACTIONS(4291), + [sym__strong_emphasis_open_star] = ACTIONS(4291), + [sym__strong_emphasis_open_underscore] = ACTIONS(4291), + }, + [STATE(663)] = { [sym__qmd_attribute] = STATE(964), [sym_raw_attribute] = STATE(964), [sym_commonmark_attribute] = STATE(964), [sym_language_attribute] = STATE(964), - [sym__backslash_escape] = ACTIONS(4249), - [sym_entity_reference] = ACTIONS(4249), - [sym_numeric_character_reference] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(4251), - [anon_sym_GT] = ACTIONS(4249), - [anon_sym_BANG] = ACTIONS(4249), - [anon_sym_DQUOTE] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(4249), - [anon_sym_PERCENT] = ACTIONS(4249), - [anon_sym_AMP] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4249), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_COMMA] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4251), - [anon_sym_DOT] = ACTIONS(4251), - [anon_sym_SLASH] = ACTIONS(4249), - [anon_sym_COLON] = ACTIONS(4249), - [anon_sym_SEMI] = ACTIONS(4249), - [anon_sym_EQ] = ACTIONS(4249), - [anon_sym_QMARK] = ACTIONS(4249), - [anon_sym_LBRACK] = ACTIONS(4251), - [anon_sym_BSLASH] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4251), - [anon_sym_BQUOTE] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4249), - [anon_sym_TILDE] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4249), - [anon_sym_RPAREN] = ACTIONS(4249), - [sym__newline_token] = ACTIONS(4249), - [aux_sym_insert_token1] = ACTIONS(4249), - [aux_sym_delete_token1] = ACTIONS(4249), - [aux_sym_highlight_token1] = ACTIONS(4249), - [aux_sym_edit_comment_token1] = ACTIONS(4249), - [anon_sym_CARET_LBRACK] = ACTIONS(4249), - [anon_sym_LBRACK_CARET] = ACTIONS(4249), - [sym_uri_autolink] = ACTIONS(4249), - [sym_email_autolink] = ACTIONS(4249), - [sym__whitespace_ge_2] = ACTIONS(4249), - [aux_sym__whitespace_token1] = ACTIONS(4251), - [sym__word_no_digit] = ACTIONS(4249), - [sym__digits] = ACTIONS(4249), - [anon_sym_DASH_DASH] = ACTIONS(4251), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4249), - [sym__code_span_start] = ACTIONS(4249), - [sym__emphasis_open_star] = ACTIONS(4249), - [sym__emphasis_open_underscore] = ACTIONS(4249), - [sym__strikeout_open] = ACTIONS(4249), - [sym__latex_span_start] = ACTIONS(4249), - [sym__single_quote_open] = ACTIONS(4249), - [sym__double_quote_open] = ACTIONS(4249), - [sym__superscript_open] = ACTIONS(4249), - [sym__superscript_close] = ACTIONS(4249), - [sym__subscript_open] = ACTIONS(4249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4249), - [sym__cite_author_in_text] = ACTIONS(4249), - [sym__cite_suppress_author] = ACTIONS(4249), - [sym__shortcode_open_escaped] = ACTIONS(4249), - [sym__shortcode_open] = ACTIONS(4249), - [sym__unclosed_span] = ACTIONS(4249), - [sym__strong_emphasis_open_star] = ACTIONS(4249), - [sym__strong_emphasis_open_underscore] = ACTIONS(4249), - }, - [STATE(662)] = { - [sym__qmd_attribute] = STATE(1307), - [sym_raw_attribute] = STATE(1307), - [sym_commonmark_attribute] = STATE(1307), - [sym_language_attribute] = STATE(1307), - [sym__backslash_escape] = ACTIONS(4257), - [sym_entity_reference] = ACTIONS(4257), - [sym_numeric_character_reference] = ACTIONS(4257), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4257), - [anon_sym_BANG] = ACTIONS(4257), - [anon_sym_DQUOTE] = ACTIONS(4257), - [anon_sym_POUND] = ACTIONS(4257), - [anon_sym_DOLLAR] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4257), - [anon_sym_AMP] = ACTIONS(4259), - [anon_sym_SQUOTE] = ACTIONS(4257), - [anon_sym_PLUS] = ACTIONS(4257), - [anon_sym_COMMA] = ACTIONS(4257), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_DOT] = ACTIONS(4259), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_COLON] = ACTIONS(4257), - [anon_sym_SEMI] = ACTIONS(4257), - [anon_sym_EQ] = ACTIONS(4257), - [anon_sym_QMARK] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_BSLASH] = ACTIONS(4259), - [anon_sym_RBRACK] = ACTIONS(4257), - [anon_sym_CARET] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4257), - [anon_sym_LBRACE] = ACTIONS(4185), - [anon_sym_PIPE] = ACTIONS(4257), - [anon_sym_TILDE] = ACTIONS(4257), - [anon_sym_LPAREN] = ACTIONS(4315), - [anon_sym_RPAREN] = ACTIONS(4257), - [sym__newline_token] = ACTIONS(4257), - [aux_sym_insert_token1] = ACTIONS(4257), - [aux_sym_delete_token1] = ACTIONS(4257), - [aux_sym_highlight_token1] = ACTIONS(4257), - [aux_sym_edit_comment_token1] = ACTIONS(4257), - [anon_sym_CARET_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_CARET] = ACTIONS(4257), - [sym_uri_autolink] = ACTIONS(4257), - [sym_email_autolink] = ACTIONS(4257), - [sym__whitespace_ge_2] = ACTIONS(4257), - [aux_sym__whitespace_token1] = ACTIONS(4259), - [sym__word_no_digit] = ACTIONS(4257), - [sym__digits] = ACTIONS(4257), - [anon_sym_DASH_DASH] = ACTIONS(4259), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4257), - [sym__code_span_start] = ACTIONS(4257), - [sym__emphasis_open_star] = ACTIONS(4257), - [sym__emphasis_open_underscore] = ACTIONS(4257), - [sym__strikeout_open] = ACTIONS(4257), - [sym__latex_span_start] = ACTIONS(4257), - [sym__single_quote_open] = ACTIONS(4257), - [sym__double_quote_open] = ACTIONS(4257), - [sym__superscript_open] = ACTIONS(4257), - [sym__subscript_open] = ACTIONS(4257), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4257), - [sym__cite_author_in_text] = ACTIONS(4257), - [sym__cite_suppress_author] = ACTIONS(4257), - [sym__shortcode_open_escaped] = ACTIONS(4257), - [sym__shortcode_open] = ACTIONS(4257), - [sym__unclosed_span] = ACTIONS(4257), - [sym__strong_emphasis_open_star] = ACTIONS(4257), - [sym__strong_emphasis_open_underscore] = ACTIONS(4257), - }, - [STATE(663)] = { - [sym__qmd_attribute] = STATE(968), - [sym_raw_attribute] = STATE(968), - [sym_commonmark_attribute] = STATE(968), - [sym_language_attribute] = STATE(968), - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__superscript_close] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__superscript_close] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), }, [STATE(664)] = { - [sym__qmd_attribute] = STATE(969), - [sym_raw_attribute] = STATE(969), - [sym_commonmark_attribute] = STATE(969), - [sym_language_attribute] = STATE(969), + [sym__qmd_attribute] = STATE(965), + [sym_raw_attribute] = STATE(965), + [sym_commonmark_attribute] = STATE(965), + [sym_language_attribute] = STATE(965), [sym__backslash_escape] = ACTIONS(4187), [sym_entity_reference] = ACTIONS(4187), [sym_numeric_character_reference] = ACTIONS(4187), @@ -92484,10 +92483,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(665)] = { - [sym__qmd_attribute] = STATE(970), - [sym_raw_attribute] = STATE(970), - [sym_commonmark_attribute] = STATE(970), - [sym_language_attribute] = STATE(970), + [sym__qmd_attribute] = STATE(966), + [sym_raw_attribute] = STATE(966), + [sym_commonmark_attribute] = STATE(966), + [sym_language_attribute] = STATE(966), [sym__backslash_escape] = ACTIONS(4193), [sym_entity_reference] = ACTIONS(4193), [sym_numeric_character_reference] = ACTIONS(4193), @@ -92555,10 +92554,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(666)] = { - [sym__qmd_attribute] = STATE(971), - [sym_raw_attribute] = STATE(971), - [sym_commonmark_attribute] = STATE(971), - [sym_language_attribute] = STATE(971), + [sym__qmd_attribute] = STATE(967), + [sym_raw_attribute] = STATE(967), + [sym_commonmark_attribute] = STATE(967), + [sym_language_attribute] = STATE(967), [sym__backslash_escape] = ACTIONS(4197), [sym_entity_reference] = ACTIONS(4197), [sym_numeric_character_reference] = ACTIONS(4197), @@ -92626,10 +92625,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(667)] = { - [sym__qmd_attribute] = STATE(976), - [sym_raw_attribute] = STATE(976), - [sym_commonmark_attribute] = STATE(976), - [sym_language_attribute] = STATE(976), + [sym__qmd_attribute] = STATE(972), + [sym_raw_attribute] = STATE(972), + [sym_commonmark_attribute] = STATE(972), + [sym_language_attribute] = STATE(972), [sym__backslash_escape] = ACTIONS(4201), [sym_entity_reference] = ACTIONS(4201), [sym_numeric_character_reference] = ACTIONS(4201), @@ -92697,10 +92696,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(668)] = { - [sym__qmd_attribute] = STATE(977), - [sym_raw_attribute] = STATE(977), - [sym_commonmark_attribute] = STATE(977), - [sym_language_attribute] = STATE(977), + [sym__qmd_attribute] = STATE(973), + [sym_raw_attribute] = STATE(973), + [sym_commonmark_attribute] = STATE(973), + [sym_language_attribute] = STATE(973), [sym__backslash_escape] = ACTIONS(4205), [sym_entity_reference] = ACTIONS(4205), [sym_numeric_character_reference] = ACTIONS(4205), @@ -92768,10 +92767,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4205), }, [STATE(669)] = { - [sym__qmd_attribute] = STATE(984), - [sym_raw_attribute] = STATE(984), - [sym_commonmark_attribute] = STATE(984), - [sym_language_attribute] = STATE(984), + [sym__qmd_attribute] = STATE(980), + [sym_raw_attribute] = STATE(980), + [sym_commonmark_attribute] = STATE(980), + [sym_language_attribute] = STATE(980), [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), [sym_numeric_character_reference] = ACTIONS(4209), @@ -92839,10 +92838,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, [STATE(670)] = { - [sym__qmd_attribute] = STATE(986), - [sym_raw_attribute] = STATE(986), - [sym_commonmark_attribute] = STATE(986), - [sym_language_attribute] = STATE(986), + [sym__qmd_attribute] = STATE(982), + [sym_raw_attribute] = STATE(982), + [sym_commonmark_attribute] = STATE(982), + [sym_language_attribute] = STATE(982), [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), [sym_numeric_character_reference] = ACTIONS(4213), @@ -92910,10 +92909,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, [STATE(671)] = { - [sym__qmd_attribute] = STATE(991), - [sym_raw_attribute] = STATE(991), - [sym_commonmark_attribute] = STATE(991), - [sym_language_attribute] = STATE(991), + [sym__qmd_attribute] = STATE(986), + [sym_raw_attribute] = STATE(986), + [sym_commonmark_attribute] = STATE(986), + [sym_language_attribute] = STATE(986), [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -92981,10 +92980,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, [STATE(672)] = { - [sym__qmd_attribute] = STATE(1785), - [sym_raw_attribute] = STATE(1785), - [sym_commonmark_attribute] = STATE(1785), - [sym_language_attribute] = STATE(1785), + [sym__qmd_attribute] = STATE(987), + [sym_raw_attribute] = STATE(987), + [sym_commonmark_attribute] = STATE(987), + [sym_language_attribute] = STATE(987), [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -93052,10 +93051,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, [STATE(673)] = { - [sym__qmd_attribute] = STATE(995), - [sym_raw_attribute] = STATE(995), - [sym_commonmark_attribute] = STATE(995), - [sym_language_attribute] = STATE(995), + [sym__qmd_attribute] = STATE(990), + [sym_raw_attribute] = STATE(990), + [sym_commonmark_attribute] = STATE(990), + [sym_language_attribute] = STATE(990), [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -93123,10 +93122,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, [STATE(674)] = { - [sym__qmd_attribute] = STATE(996), - [sym_raw_attribute] = STATE(996), - [sym_commonmark_attribute] = STATE(996), - [sym_language_attribute] = STATE(996), + [sym__qmd_attribute] = STATE(991), + [sym_raw_attribute] = STATE(991), + [sym_commonmark_attribute] = STATE(991), + [sym_language_attribute] = STATE(991), [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -93194,10 +93193,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, [STATE(675)] = { - [sym__qmd_attribute] = STATE(997), - [sym_raw_attribute] = STATE(997), - [sym_commonmark_attribute] = STATE(997), - [sym_language_attribute] = STATE(997), + [sym__qmd_attribute] = STATE(992), + [sym_raw_attribute] = STATE(992), + [sym_commonmark_attribute] = STATE(992), + [sym_language_attribute] = STATE(992), [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -93265,10 +93264,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, [STATE(676)] = { - [sym__qmd_attribute] = STATE(999), - [sym_raw_attribute] = STATE(999), - [sym_commonmark_attribute] = STATE(999), - [sym_language_attribute] = STATE(999), + [sym__qmd_attribute] = STATE(994), + [sym_raw_attribute] = STATE(994), + [sym_commonmark_attribute] = STATE(994), + [sym_language_attribute] = STATE(994), [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -93336,10 +93335,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, [STATE(677)] = { - [sym__qmd_attribute] = STATE(1000), - [sym_raw_attribute] = STATE(1000), - [sym_commonmark_attribute] = STATE(1000), - [sym_language_attribute] = STATE(1000), + [sym__qmd_attribute] = STATE(995), + [sym_raw_attribute] = STATE(995), + [sym_commonmark_attribute] = STATE(995), + [sym_language_attribute] = STATE(995), [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -93407,10 +93406,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, [STATE(678)] = { - [sym__qmd_attribute] = STATE(1001), - [sym_raw_attribute] = STATE(1001), - [sym_commonmark_attribute] = STATE(1001), - [sym_language_attribute] = STATE(1001), + [sym__qmd_attribute] = STATE(996), + [sym_raw_attribute] = STATE(996), + [sym_commonmark_attribute] = STATE(996), + [sym_language_attribute] = STATE(996), [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -93478,223 +93477,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, [STATE(679)] = { - [sym__qmd_attribute] = STATE(1021), - [sym_raw_attribute] = STATE(1021), - [sym_commonmark_attribute] = STATE(1021), - [sym_language_attribute] = STATE(1021), - [sym__backslash_escape] = ACTIONS(4257), - [sym_entity_reference] = ACTIONS(4257), - [sym_numeric_character_reference] = ACTIONS(4257), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4257), - [anon_sym_BANG] = ACTIONS(4257), - [anon_sym_DQUOTE] = ACTIONS(4257), - [anon_sym_POUND] = ACTIONS(4257), - [anon_sym_DOLLAR] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4257), - [anon_sym_AMP] = ACTIONS(4259), - [anon_sym_SQUOTE] = ACTIONS(4257), - [anon_sym_PLUS] = ACTIONS(4257), - [anon_sym_COMMA] = ACTIONS(4257), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_DOT] = ACTIONS(4259), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_COLON] = ACTIONS(4257), - [anon_sym_SEMI] = ACTIONS(4257), - [anon_sym_EQ] = ACTIONS(4257), - [anon_sym_QMARK] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_BSLASH] = ACTIONS(4259), - [anon_sym_CARET] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4257), + [sym__qmd_attribute] = STATE(1016), + [sym_raw_attribute] = STATE(1016), + [sym_commonmark_attribute] = STATE(1016), + [sym_language_attribute] = STATE(1016), + [sym__backslash_escape] = ACTIONS(4251), + [sym_entity_reference] = ACTIONS(4251), + [sym_numeric_character_reference] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_DQUOTE] = ACTIONS(4251), + [anon_sym_POUND] = ACTIONS(4251), + [anon_sym_DOLLAR] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_COMMA] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_COLON] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4251), + [anon_sym_QMARK] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_BSLASH] = ACTIONS(4253), + [anon_sym_CARET] = ACTIONS(4253), + [anon_sym_BQUOTE] = ACTIONS(4251), [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_PIPE] = ACTIONS(4257), - [anon_sym_TILDE] = ACTIONS(4257), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), [anon_sym_LPAREN] = ACTIONS(4319), - [anon_sym_RPAREN] = ACTIONS(4257), - [sym__newline_token] = ACTIONS(4257), - [aux_sym_insert_token1] = ACTIONS(4257), - [aux_sym_delete_token1] = ACTIONS(4257), - [aux_sym_highlight_token1] = ACTIONS(4257), - [aux_sym_edit_comment_token1] = ACTIONS(4257), - [anon_sym_CARET_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_CARET] = ACTIONS(4257), - [sym_uri_autolink] = ACTIONS(4257), - [sym_email_autolink] = ACTIONS(4257), - [sym__whitespace_ge_2] = ACTIONS(4257), - [aux_sym__whitespace_token1] = ACTIONS(4259), - [sym__word_no_digit] = ACTIONS(4257), - [sym__digits] = ACTIONS(4257), - [anon_sym_DASH_DASH] = ACTIONS(4259), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4257), - [sym__code_span_start] = ACTIONS(4257), - [sym__emphasis_open_star] = ACTIONS(4257), - [sym__emphasis_open_underscore] = ACTIONS(4257), - [sym__strikeout_open] = ACTIONS(4257), - [sym__latex_span_start] = ACTIONS(4257), - [sym__single_quote_open] = ACTIONS(4257), - [sym__double_quote_open] = ACTIONS(4257), - [sym__superscript_open] = ACTIONS(4257), - [sym__subscript_open] = ACTIONS(4257), - [sym__subscript_close] = ACTIONS(4257), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4257), - [sym__cite_author_in_text] = ACTIONS(4257), - [sym__cite_suppress_author] = ACTIONS(4257), - [sym__shortcode_open_escaped] = ACTIONS(4257), - [sym__shortcode_open] = ACTIONS(4257), - [sym__unclosed_span] = ACTIONS(4257), - [sym__strong_emphasis_open_star] = ACTIONS(4257), - [sym__strong_emphasis_open_underscore] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4251), + [sym__newline_token] = ACTIONS(4251), + [aux_sym_insert_token1] = ACTIONS(4251), + [aux_sym_delete_token1] = ACTIONS(4251), + [aux_sym_highlight_token1] = ACTIONS(4251), + [aux_sym_edit_comment_token1] = ACTIONS(4251), + [anon_sym_CARET_LBRACK] = ACTIONS(4251), + [anon_sym_LBRACK_CARET] = ACTIONS(4251), + [sym_uri_autolink] = ACTIONS(4251), + [sym_email_autolink] = ACTIONS(4251), + [sym__whitespace_ge_2] = ACTIONS(4251), + [aux_sym__whitespace_token1] = ACTIONS(4253), + [sym__word_no_digit] = ACTIONS(4251), + [sym__digits] = ACTIONS(4251), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4251), + [sym__code_span_start] = ACTIONS(4251), + [sym__emphasis_open_star] = ACTIONS(4251), + [sym__emphasis_open_underscore] = ACTIONS(4251), + [sym__strikeout_open] = ACTIONS(4251), + [sym__latex_span_start] = ACTIONS(4251), + [sym__single_quote_open] = ACTIONS(4251), + [sym__double_quote_open] = ACTIONS(4251), + [sym__superscript_open] = ACTIONS(4251), + [sym__subscript_open] = ACTIONS(4251), + [sym__subscript_close] = ACTIONS(4251), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4251), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4251), + [sym__cite_author_in_text] = ACTIONS(4251), + [sym__cite_suppress_author] = ACTIONS(4251), + [sym__shortcode_open_escaped] = ACTIONS(4251), + [sym__shortcode_open] = ACTIONS(4251), + [sym__unclosed_span] = ACTIONS(4251), + [sym__strong_emphasis_open_star] = ACTIONS(4251), + [sym__strong_emphasis_open_underscore] = ACTIONS(4251), }, [STATE(680)] = { - [sym__qmd_attribute] = STATE(1022), - [sym_raw_attribute] = STATE(1022), - [sym_commonmark_attribute] = STATE(1022), - [sym_language_attribute] = STATE(1022), - [sym__backslash_escape] = ACTIONS(4267), - [sym_entity_reference] = ACTIONS(4267), - [sym_numeric_character_reference] = ACTIONS(4267), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4267), - [anon_sym_BANG] = ACTIONS(4267), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_POUND] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_PERCENT] = ACTIONS(4267), - [anon_sym_AMP] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4267), - [anon_sym_PLUS] = ACTIONS(4267), - [anon_sym_COMMA] = ACTIONS(4267), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4267), - [anon_sym_COLON] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4267), - [anon_sym_EQ] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4267), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_BSLASH] = ACTIONS(4269), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4267), + [sym__qmd_attribute] = STATE(1017), + [sym_raw_attribute] = STATE(1017), + [sym_commonmark_attribute] = STATE(1017), + [sym_language_attribute] = STATE(1017), + [sym__backslash_escape] = ACTIONS(4263), + [sym_entity_reference] = ACTIONS(4263), + [sym_numeric_character_reference] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4265), + [anon_sym_GT] = ACTIONS(4263), + [anon_sym_BANG] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(4263), + [anon_sym_DOLLAR] = ACTIONS(4263), + [anon_sym_PERCENT] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4265), + [anon_sym_SQUOTE] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_COMMA] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_COLON] = ACTIONS(4263), + [anon_sym_SEMI] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_BSLASH] = ACTIONS(4265), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_BQUOTE] = ACTIONS(4263), [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_PIPE] = ACTIONS(4267), - [anon_sym_TILDE] = ACTIONS(4267), - [anon_sym_LPAREN] = ACTIONS(4267), - [anon_sym_RPAREN] = ACTIONS(4267), - [sym__newline_token] = ACTIONS(4267), - [aux_sym_insert_token1] = ACTIONS(4267), - [aux_sym_delete_token1] = ACTIONS(4267), - [aux_sym_highlight_token1] = ACTIONS(4267), - [aux_sym_edit_comment_token1] = ACTIONS(4267), - [anon_sym_CARET_LBRACK] = ACTIONS(4267), - [anon_sym_LBRACK_CARET] = ACTIONS(4267), - [sym_uri_autolink] = ACTIONS(4267), - [sym_email_autolink] = ACTIONS(4267), - [sym__whitespace_ge_2] = ACTIONS(4267), - [aux_sym__whitespace_token1] = ACTIONS(4269), - [sym__word_no_digit] = ACTIONS(4267), - [sym__digits] = ACTIONS(4267), - [anon_sym_DASH_DASH] = ACTIONS(4269), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), - [sym__code_span_start] = ACTIONS(4267), - [sym__emphasis_open_star] = ACTIONS(4267), - [sym__emphasis_open_underscore] = ACTIONS(4267), - [sym__strikeout_open] = ACTIONS(4267), - [sym__latex_span_start] = ACTIONS(4267), - [sym__single_quote_open] = ACTIONS(4267), - [sym__double_quote_open] = ACTIONS(4267), - [sym__superscript_open] = ACTIONS(4267), - [sym__subscript_open] = ACTIONS(4267), - [sym__subscript_close] = ACTIONS(4267), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), - [sym__cite_author_in_text] = ACTIONS(4267), - [sym__cite_suppress_author] = ACTIONS(4267), - [sym__shortcode_open_escaped] = ACTIONS(4267), - [sym__shortcode_open] = ACTIONS(4267), - [sym__unclosed_span] = ACTIONS(4267), - [sym__strong_emphasis_open_star] = ACTIONS(4267), - [sym__strong_emphasis_open_underscore] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4263), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym_RPAREN] = ACTIONS(4263), + [sym__newline_token] = ACTIONS(4263), + [aux_sym_insert_token1] = ACTIONS(4263), + [aux_sym_delete_token1] = ACTIONS(4263), + [aux_sym_highlight_token1] = ACTIONS(4263), + [aux_sym_edit_comment_token1] = ACTIONS(4263), + [anon_sym_CARET_LBRACK] = ACTIONS(4263), + [anon_sym_LBRACK_CARET] = ACTIONS(4263), + [sym_uri_autolink] = ACTIONS(4263), + [sym_email_autolink] = ACTIONS(4263), + [sym__whitespace_ge_2] = ACTIONS(4263), + [aux_sym__whitespace_token1] = ACTIONS(4265), + [sym__word_no_digit] = ACTIONS(4263), + [sym__digits] = ACTIONS(4263), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), + [sym__code_span_start] = ACTIONS(4263), + [sym__emphasis_open_star] = ACTIONS(4263), + [sym__emphasis_open_underscore] = ACTIONS(4263), + [sym__strikeout_open] = ACTIONS(4263), + [sym__latex_span_start] = ACTIONS(4263), + [sym__single_quote_open] = ACTIONS(4263), + [sym__double_quote_open] = ACTIONS(4263), + [sym__superscript_open] = ACTIONS(4263), + [sym__subscript_open] = ACTIONS(4263), + [sym__subscript_close] = ACTIONS(4263), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), + [sym__cite_author_in_text] = ACTIONS(4263), + [sym__cite_suppress_author] = ACTIONS(4263), + [sym__shortcode_open_escaped] = ACTIONS(4263), + [sym__shortcode_open] = ACTIONS(4263), + [sym__unclosed_span] = ACTIONS(4263), + [sym__strong_emphasis_open_star] = ACTIONS(4263), + [sym__strong_emphasis_open_underscore] = ACTIONS(4263), }, [STATE(681)] = { [sym__qmd_attribute] = STATE(1308), [sym_raw_attribute] = STATE(1308), [sym_commonmark_attribute] = STATE(1308), [sym_language_attribute] = STATE(1308), - [sym__backslash_escape] = ACTIONS(4267), - [sym_entity_reference] = ACTIONS(4267), - [sym_numeric_character_reference] = ACTIONS(4267), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4267), - [anon_sym_BANG] = ACTIONS(4267), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_POUND] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_PERCENT] = ACTIONS(4267), - [anon_sym_AMP] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4267), - [anon_sym_PLUS] = ACTIONS(4267), - [anon_sym_COMMA] = ACTIONS(4267), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4267), - [anon_sym_COLON] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4267), - [anon_sym_EQ] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4267), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_BSLASH] = ACTIONS(4269), - [anon_sym_RBRACK] = ACTIONS(4267), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4267), + [sym__backslash_escape] = ACTIONS(4263), + [sym_entity_reference] = ACTIONS(4263), + [sym_numeric_character_reference] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4265), + [anon_sym_GT] = ACTIONS(4263), + [anon_sym_BANG] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(4263), + [anon_sym_DOLLAR] = ACTIONS(4263), + [anon_sym_PERCENT] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4265), + [anon_sym_SQUOTE] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_COMMA] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_COLON] = ACTIONS(4263), + [anon_sym_SEMI] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_BSLASH] = ACTIONS(4265), + [anon_sym_RBRACK] = ACTIONS(4263), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_BQUOTE] = ACTIONS(4263), [anon_sym_LBRACE] = ACTIONS(4185), - [anon_sym_PIPE] = ACTIONS(4267), - [anon_sym_TILDE] = ACTIONS(4267), - [anon_sym_LPAREN] = ACTIONS(4267), - [anon_sym_RPAREN] = ACTIONS(4267), - [sym__newline_token] = ACTIONS(4267), - [aux_sym_insert_token1] = ACTIONS(4267), - [aux_sym_delete_token1] = ACTIONS(4267), - [aux_sym_highlight_token1] = ACTIONS(4267), - [aux_sym_edit_comment_token1] = ACTIONS(4267), - [anon_sym_CARET_LBRACK] = ACTIONS(4267), - [anon_sym_LBRACK_CARET] = ACTIONS(4267), - [sym_uri_autolink] = ACTIONS(4267), - [sym_email_autolink] = ACTIONS(4267), - [sym__whitespace_ge_2] = ACTIONS(4267), - [aux_sym__whitespace_token1] = ACTIONS(4269), - [sym__word_no_digit] = ACTIONS(4267), - [sym__digits] = ACTIONS(4267), - [anon_sym_DASH_DASH] = ACTIONS(4269), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), - [sym__code_span_start] = ACTIONS(4267), - [sym__emphasis_open_star] = ACTIONS(4267), - [sym__emphasis_open_underscore] = ACTIONS(4267), - [sym__strikeout_open] = ACTIONS(4267), - [sym__latex_span_start] = ACTIONS(4267), - [sym__single_quote_open] = ACTIONS(4267), - [sym__double_quote_open] = ACTIONS(4267), - [sym__superscript_open] = ACTIONS(4267), - [sym__subscript_open] = ACTIONS(4267), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), - [sym__cite_author_in_text] = ACTIONS(4267), - [sym__cite_suppress_author] = ACTIONS(4267), - [sym__shortcode_open_escaped] = ACTIONS(4267), - [sym__shortcode_open] = ACTIONS(4267), - [sym__unclosed_span] = ACTIONS(4267), - [sym__strong_emphasis_open_star] = ACTIONS(4267), - [sym__strong_emphasis_open_underscore] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4263), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym_RPAREN] = ACTIONS(4263), + [sym__newline_token] = ACTIONS(4263), + [aux_sym_insert_token1] = ACTIONS(4263), + [aux_sym_delete_token1] = ACTIONS(4263), + [aux_sym_highlight_token1] = ACTIONS(4263), + [aux_sym_edit_comment_token1] = ACTIONS(4263), + [anon_sym_CARET_LBRACK] = ACTIONS(4263), + [anon_sym_LBRACK_CARET] = ACTIONS(4263), + [sym_uri_autolink] = ACTIONS(4263), + [sym_email_autolink] = ACTIONS(4263), + [sym__whitespace_ge_2] = ACTIONS(4263), + [aux_sym__whitespace_token1] = ACTIONS(4265), + [sym__word_no_digit] = ACTIONS(4263), + [sym__digits] = ACTIONS(4263), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), + [sym__code_span_start] = ACTIONS(4263), + [sym__emphasis_open_star] = ACTIONS(4263), + [sym__emphasis_open_underscore] = ACTIONS(4263), + [sym__strikeout_open] = ACTIONS(4263), + [sym__latex_span_start] = ACTIONS(4263), + [sym__single_quote_open] = ACTIONS(4263), + [sym__double_quote_open] = ACTIONS(4263), + [sym__superscript_open] = ACTIONS(4263), + [sym__subscript_open] = ACTIONS(4263), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), + [sym__cite_author_in_text] = ACTIONS(4263), + [sym__cite_suppress_author] = ACTIONS(4263), + [sym__shortcode_open_escaped] = ACTIONS(4263), + [sym__shortcode_open] = ACTIONS(4263), + [sym__unclosed_span] = ACTIONS(4263), + [sym__strong_emphasis_open_star] = ACTIONS(4263), + [sym__strong_emphasis_open_underscore] = ACTIONS(4263), }, [STATE(682)] = { - [sym__qmd_attribute] = STATE(1023), - [sym_raw_attribute] = STATE(1023), - [sym_commonmark_attribute] = STATE(1023), - [sym_language_attribute] = STATE(1023), + [sym__qmd_attribute] = STATE(1018), + [sym_raw_attribute] = STATE(1018), + [sym_commonmark_attribute] = STATE(1018), + [sym_language_attribute] = STATE(1018), [sym__backslash_escape] = ACTIONS(4283), [sym_entity_reference] = ACTIONS(4283), [sym_numeric_character_reference] = ACTIONS(4283), @@ -93762,10 +93761,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4283), }, [STATE(683)] = { - [sym__qmd_attribute] = STATE(1035), - [sym_raw_attribute] = STATE(1035), - [sym_commonmark_attribute] = STATE(1035), - [sym_language_attribute] = STATE(1035), + [sym__qmd_attribute] = STATE(1031), + [sym_raw_attribute] = STATE(1031), + [sym_commonmark_attribute] = STATE(1031), + [sym_language_attribute] = STATE(1031), [sym__backslash_escape] = ACTIONS(4181), [sym_entity_reference] = ACTIONS(4181), [sym_numeric_character_reference] = ACTIONS(4181), @@ -93833,152 +93832,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, [STATE(684)] = { - [sym__qmd_attribute] = STATE(1038), - [sym_raw_attribute] = STATE(1038), - [sym_commonmark_attribute] = STATE(1038), - [sym_language_attribute] = STATE(1038), - [sym__backslash_escape] = ACTIONS(4263), - [sym_entity_reference] = ACTIONS(4263), - [sym_numeric_character_reference] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(4265), - [anon_sym_GT] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4263), - [anon_sym_POUND] = ACTIONS(4263), - [anon_sym_DOLLAR] = ACTIONS(4263), - [anon_sym_PERCENT] = ACTIONS(4263), - [anon_sym_AMP] = ACTIONS(4265), - [anon_sym_SQUOTE] = ACTIONS(4263), - [anon_sym_PLUS] = ACTIONS(4263), - [anon_sym_COMMA] = ACTIONS(4263), - [anon_sym_DASH] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4265), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_COLON] = ACTIONS(4263), - [anon_sym_SEMI] = ACTIONS(4263), - [anon_sym_EQ] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4263), - [anon_sym_LBRACK] = ACTIONS(4265), - [anon_sym_BSLASH] = ACTIONS(4265), - [anon_sym_CARET] = ACTIONS(4265), - [anon_sym_BQUOTE] = ACTIONS(4263), + [sym__qmd_attribute] = STATE(1034), + [sym_raw_attribute] = STATE(1034), + [sym_commonmark_attribute] = STATE(1034), + [sym_language_attribute] = STATE(1034), + [sym__backslash_escape] = ACTIONS(4259), + [sym_entity_reference] = ACTIONS(4259), + [sym_numeric_character_reference] = ACTIONS(4259), + [anon_sym_LT] = ACTIONS(4261), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + [anon_sym_SQUOTE] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_COMMA] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_DOT] = ACTIONS(4261), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_QMARK] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_BSLASH] = ACTIONS(4261), + [anon_sym_CARET] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4259), [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_PIPE] = ACTIONS(4263), - [anon_sym_TILDE] = ACTIONS(4263), - [anon_sym_LPAREN] = ACTIONS(4263), - [anon_sym_RPAREN] = ACTIONS(4263), - [sym__newline_token] = ACTIONS(4263), - [aux_sym_insert_token1] = ACTIONS(4263), - [aux_sym_delete_token1] = ACTIONS(4263), - [aux_sym_highlight_token1] = ACTIONS(4263), - [aux_sym_edit_comment_token1] = ACTIONS(4263), - [anon_sym_CARET_LBRACK] = ACTIONS(4263), - [anon_sym_LBRACK_CARET] = ACTIONS(4263), - [sym_uri_autolink] = ACTIONS(4263), - [sym_email_autolink] = ACTIONS(4263), - [sym__whitespace_ge_2] = ACTIONS(4263), - [aux_sym__whitespace_token1] = ACTIONS(4265), - [sym__word_no_digit] = ACTIONS(4263), - [sym__digits] = ACTIONS(4263), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), - [sym__code_span_start] = ACTIONS(4263), - [sym__emphasis_open_star] = ACTIONS(4263), - [sym__emphasis_open_underscore] = ACTIONS(4263), - [sym__strikeout_open] = ACTIONS(4263), - [sym__latex_span_start] = ACTIONS(4263), - [sym__single_quote_open] = ACTIONS(4263), - [sym__double_quote_open] = ACTIONS(4263), - [sym__superscript_open] = ACTIONS(4263), - [sym__subscript_open] = ACTIONS(4263), - [sym__subscript_close] = ACTIONS(4263), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), - [sym__cite_author_in_text] = ACTIONS(4263), - [sym__cite_suppress_author] = ACTIONS(4263), - [sym__shortcode_open_escaped] = ACTIONS(4263), - [sym__shortcode_open] = ACTIONS(4263), - [sym__unclosed_span] = ACTIONS(4263), - [sym__strong_emphasis_open_star] = ACTIONS(4263), - [sym__strong_emphasis_open_underscore] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym_RPAREN] = ACTIONS(4259), + [sym__newline_token] = ACTIONS(4259), + [aux_sym_insert_token1] = ACTIONS(4259), + [aux_sym_delete_token1] = ACTIONS(4259), + [aux_sym_highlight_token1] = ACTIONS(4259), + [aux_sym_edit_comment_token1] = ACTIONS(4259), + [anon_sym_CARET_LBRACK] = ACTIONS(4259), + [anon_sym_LBRACK_CARET] = ACTIONS(4259), + [sym_uri_autolink] = ACTIONS(4259), + [sym_email_autolink] = ACTIONS(4259), + [sym__whitespace_ge_2] = ACTIONS(4259), + [aux_sym__whitespace_token1] = ACTIONS(4261), + [sym__word_no_digit] = ACTIONS(4259), + [sym__digits] = ACTIONS(4259), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4259), + [sym__code_span_start] = ACTIONS(4259), + [sym__emphasis_open_star] = ACTIONS(4259), + [sym__emphasis_open_underscore] = ACTIONS(4259), + [sym__strikeout_open] = ACTIONS(4259), + [sym__latex_span_start] = ACTIONS(4259), + [sym__single_quote_open] = ACTIONS(4259), + [sym__double_quote_open] = ACTIONS(4259), + [sym__superscript_open] = ACTIONS(4259), + [sym__subscript_open] = ACTIONS(4259), + [sym__subscript_close] = ACTIONS(4259), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4259), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4259), + [sym__cite_author_in_text] = ACTIONS(4259), + [sym__cite_suppress_author] = ACTIONS(4259), + [sym__shortcode_open_escaped] = ACTIONS(4259), + [sym__shortcode_open] = ACTIONS(4259), + [sym__unclosed_span] = ACTIONS(4259), + [sym__strong_emphasis_open_star] = ACTIONS(4259), + [sym__strong_emphasis_open_underscore] = ACTIONS(4259), }, [STATE(685)] = { - [sym__qmd_attribute] = STATE(1040), - [sym_raw_attribute] = STATE(1040), - [sym_commonmark_attribute] = STATE(1040), - [sym_language_attribute] = STATE(1040), - [sym__backslash_escape] = ACTIONS(4271), - [sym_entity_reference] = ACTIONS(4271), - [sym_numeric_character_reference] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4273), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_POUND] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4273), - [anon_sym_SQUOTE] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4273), - [anon_sym_SLASH] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_EQ] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(4271), - [anon_sym_LBRACK] = ACTIONS(4273), - [anon_sym_BSLASH] = ACTIONS(4273), - [anon_sym_CARET] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4271), + [sym__qmd_attribute] = STATE(1036), + [sym_raw_attribute] = STATE(1036), + [sym_commonmark_attribute] = STATE(1036), + [sym_language_attribute] = STATE(1036), + [sym__backslash_escape] = ACTIONS(4267), + [sym_entity_reference] = ACTIONS(4267), + [sym_numeric_character_reference] = ACTIONS(4267), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_DQUOTE] = ACTIONS(4267), + [anon_sym_POUND] = ACTIONS(4267), + [anon_sym_DOLLAR] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_SQUOTE] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_COMMA] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4269), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_COLON] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_QMARK] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_BSLASH] = ACTIONS(4269), + [anon_sym_CARET] = ACTIONS(4269), + [anon_sym_BQUOTE] = ACTIONS(4267), [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_TILDE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [sym__newline_token] = ACTIONS(4271), - [aux_sym_insert_token1] = ACTIONS(4271), - [aux_sym_delete_token1] = ACTIONS(4271), - [aux_sym_highlight_token1] = ACTIONS(4271), - [aux_sym_edit_comment_token1] = ACTIONS(4271), - [anon_sym_CARET_LBRACK] = ACTIONS(4271), - [anon_sym_LBRACK_CARET] = ACTIONS(4271), - [sym_uri_autolink] = ACTIONS(4271), - [sym_email_autolink] = ACTIONS(4271), - [sym__whitespace_ge_2] = ACTIONS(4271), - [aux_sym__whitespace_token1] = ACTIONS(4273), - [sym__word_no_digit] = ACTIONS(4271), - [sym__digits] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4273), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), - [sym__code_span_start] = ACTIONS(4271), - [sym__emphasis_open_star] = ACTIONS(4271), - [sym__emphasis_open_underscore] = ACTIONS(4271), - [sym__strikeout_open] = ACTIONS(4271), - [sym__latex_span_start] = ACTIONS(4271), - [sym__single_quote_open] = ACTIONS(4271), - [sym__double_quote_open] = ACTIONS(4271), - [sym__superscript_open] = ACTIONS(4271), - [sym__subscript_open] = ACTIONS(4271), - [sym__subscript_close] = ACTIONS(4271), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), - [sym__cite_author_in_text] = ACTIONS(4271), - [sym__cite_suppress_author] = ACTIONS(4271), - [sym__shortcode_open_escaped] = ACTIONS(4271), - [sym__shortcode_open] = ACTIONS(4271), - [sym__unclosed_span] = ACTIONS(4271), - [sym__strong_emphasis_open_star] = ACTIONS(4271), - [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4267), + [anon_sym_TILDE] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_RPAREN] = ACTIONS(4267), + [sym__newline_token] = ACTIONS(4267), + [aux_sym_insert_token1] = ACTIONS(4267), + [aux_sym_delete_token1] = ACTIONS(4267), + [aux_sym_highlight_token1] = ACTIONS(4267), + [aux_sym_edit_comment_token1] = ACTIONS(4267), + [anon_sym_CARET_LBRACK] = ACTIONS(4267), + [anon_sym_LBRACK_CARET] = ACTIONS(4267), + [sym_uri_autolink] = ACTIONS(4267), + [sym_email_autolink] = ACTIONS(4267), + [sym__whitespace_ge_2] = ACTIONS(4267), + [aux_sym__whitespace_token1] = ACTIONS(4269), + [sym__word_no_digit] = ACTIONS(4267), + [sym__digits] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), + [sym__code_span_start] = ACTIONS(4267), + [sym__emphasis_open_star] = ACTIONS(4267), + [sym__emphasis_open_underscore] = ACTIONS(4267), + [sym__strikeout_open] = ACTIONS(4267), + [sym__latex_span_start] = ACTIONS(4267), + [sym__single_quote_open] = ACTIONS(4267), + [sym__double_quote_open] = ACTIONS(4267), + [sym__superscript_open] = ACTIONS(4267), + [sym__subscript_open] = ACTIONS(4267), + [sym__subscript_close] = ACTIONS(4267), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), + [sym__cite_author_in_text] = ACTIONS(4267), + [sym__cite_suppress_author] = ACTIONS(4267), + [sym__shortcode_open_escaped] = ACTIONS(4267), + [sym__shortcode_open] = ACTIONS(4267), + [sym__unclosed_span] = ACTIONS(4267), + [sym__strong_emphasis_open_star] = ACTIONS(4267), + [sym__strong_emphasis_open_underscore] = ACTIONS(4267), }, [STATE(686)] = { - [sym__qmd_attribute] = STATE(1042), - [sym_raw_attribute] = STATE(1042), - [sym_commonmark_attribute] = STATE(1042), - [sym_language_attribute] = STATE(1042), + [sym__qmd_attribute] = STATE(1037), + [sym_raw_attribute] = STATE(1037), + [sym_commonmark_attribute] = STATE(1037), + [sym_language_attribute] = STATE(1037), + [sym__backslash_escape] = ACTIONS(4275), + [sym_entity_reference] = ACTIONS(4275), + [sym_numeric_character_reference] = ACTIONS(4275), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + [anon_sym_SQUOTE] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_COMMA] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4277), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_COLON] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_QMARK] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_BSLASH] = ACTIONS(4277), + [anon_sym_CARET] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4317), + [anon_sym_PIPE] = ACTIONS(4275), + [anon_sym_TILDE] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4275), + [anon_sym_RPAREN] = ACTIONS(4275), + [sym__newline_token] = ACTIONS(4275), + [aux_sym_insert_token1] = ACTIONS(4275), + [aux_sym_delete_token1] = ACTIONS(4275), + [aux_sym_highlight_token1] = ACTIONS(4275), + [aux_sym_edit_comment_token1] = ACTIONS(4275), + [anon_sym_CARET_LBRACK] = ACTIONS(4275), + [anon_sym_LBRACK_CARET] = ACTIONS(4275), + [sym_uri_autolink] = ACTIONS(4275), + [sym_email_autolink] = ACTIONS(4275), + [sym__whitespace_ge_2] = ACTIONS(4275), + [aux_sym__whitespace_token1] = ACTIONS(4277), + [sym__word_no_digit] = ACTIONS(4275), + [sym__digits] = ACTIONS(4275), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), + [sym__code_span_start] = ACTIONS(4275), + [sym__emphasis_open_star] = ACTIONS(4275), + [sym__emphasis_open_underscore] = ACTIONS(4275), + [sym__strikeout_open] = ACTIONS(4275), + [sym__latex_span_start] = ACTIONS(4275), + [sym__single_quote_open] = ACTIONS(4275), + [sym__double_quote_open] = ACTIONS(4275), + [sym__superscript_open] = ACTIONS(4275), + [sym__subscript_open] = ACTIONS(4275), + [sym__subscript_close] = ACTIONS(4275), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), + [sym__cite_author_in_text] = ACTIONS(4275), + [sym__cite_suppress_author] = ACTIONS(4275), + [sym__shortcode_open_escaped] = ACTIONS(4275), + [sym__shortcode_open] = ACTIONS(4275), + [sym__unclosed_span] = ACTIONS(4275), + [sym__strong_emphasis_open_star] = ACTIONS(4275), + [sym__strong_emphasis_open_underscore] = ACTIONS(4275), + }, + [STATE(687)] = { + [sym__qmd_attribute] = STATE(1038), + [sym_raw_attribute] = STATE(1038), + [sym_commonmark_attribute] = STATE(1038), + [sym_language_attribute] = STATE(1038), [sym__backslash_escape] = ACTIONS(4287), [sym_entity_reference] = ACTIONS(4287), [sym_numeric_character_reference] = ACTIONS(4287), @@ -94045,82 +94115,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4287), [sym__strong_emphasis_open_underscore] = ACTIONS(4287), }, - [STATE(687)] = { - [sym__qmd_attribute] = STATE(1043), - [sym_raw_attribute] = STATE(1043), - [sym_commonmark_attribute] = STATE(1043), - [sym_language_attribute] = STATE(1043), - [sym__backslash_escape] = ACTIONS(4291), - [sym_entity_reference] = ACTIONS(4291), - [sym_numeric_character_reference] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4291), - [anon_sym_POUND] = ACTIONS(4291), - [anon_sym_DOLLAR] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_AMP] = ACTIONS(4293), - [anon_sym_SQUOTE] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4293), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_BSLASH] = ACTIONS(4293), - [anon_sym_CARET] = ACTIONS(4293), - [anon_sym_BQUOTE] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_PIPE] = ACTIONS(4291), - [anon_sym_TILDE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [sym__newline_token] = ACTIONS(4291), - [aux_sym_insert_token1] = ACTIONS(4291), - [aux_sym_delete_token1] = ACTIONS(4291), - [aux_sym_highlight_token1] = ACTIONS(4291), - [aux_sym_edit_comment_token1] = ACTIONS(4291), - [anon_sym_CARET_LBRACK] = ACTIONS(4291), - [anon_sym_LBRACK_CARET] = ACTIONS(4291), - [sym_uri_autolink] = ACTIONS(4291), - [sym_email_autolink] = ACTIONS(4291), - [sym__whitespace_ge_2] = ACTIONS(4291), - [aux_sym__whitespace_token1] = ACTIONS(4293), - [sym__word_no_digit] = ACTIONS(4291), - [sym__digits] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), - [sym__code_span_start] = ACTIONS(4291), - [sym__emphasis_open_star] = ACTIONS(4291), - [sym__emphasis_open_underscore] = ACTIONS(4291), - [sym__strikeout_open] = ACTIONS(4291), - [sym__latex_span_start] = ACTIONS(4291), - [sym__single_quote_open] = ACTIONS(4291), - [sym__double_quote_open] = ACTIONS(4291), - [sym__superscript_open] = ACTIONS(4291), - [sym__subscript_open] = ACTIONS(4291), - [sym__subscript_close] = ACTIONS(4291), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4291), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4291), - [sym__cite_author_in_text] = ACTIONS(4291), - [sym__cite_suppress_author] = ACTIONS(4291), - [sym__shortcode_open_escaped] = ACTIONS(4291), - [sym__shortcode_open] = ACTIONS(4291), - [sym__unclosed_span] = ACTIONS(4291), - [sym__strong_emphasis_open_star] = ACTIONS(4291), - [sym__strong_emphasis_open_underscore] = ACTIONS(4291), - }, [STATE(688)] = { - [sym__qmd_attribute] = STATE(1241), - [sym_raw_attribute] = STATE(1241), - [sym_commonmark_attribute] = STATE(1241), - [sym_language_attribute] = STATE(1241), + [sym__qmd_attribute] = STATE(1242), + [sym_raw_attribute] = STATE(1242), + [sym_commonmark_attribute] = STATE(1242), + [sym_language_attribute] = STATE(1242), [sym__backslash_escape] = ACTIONS(4197), [sym_entity_reference] = ACTIONS(4197), [sym_numeric_character_reference] = ACTIONS(4197), @@ -94146,7 +94145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4199), [anon_sym_CARET] = ACTIONS(4199), [anon_sym_BQUOTE] = ACTIONS(4197), - [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4249), [anon_sym_PIPE] = ACTIONS(4197), [anon_sym_TILDE] = ACTIONS(4197), [anon_sym_LPAREN] = ACTIONS(4197), @@ -94188,152 +94187,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_underscore] = ACTIONS(4197), }, [STATE(689)] = { - [sym__qmd_attribute] = STATE(1047), - [sym_raw_attribute] = STATE(1047), - [sym_commonmark_attribute] = STATE(1047), - [sym_language_attribute] = STATE(1047), - [sym__backslash_escape] = ACTIONS(4249), - [sym_entity_reference] = ACTIONS(4249), - [sym_numeric_character_reference] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(4251), - [anon_sym_GT] = ACTIONS(4249), - [anon_sym_BANG] = ACTIONS(4249), - [anon_sym_DQUOTE] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(4249), - [anon_sym_PERCENT] = ACTIONS(4249), - [anon_sym_AMP] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4249), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_COMMA] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4251), - [anon_sym_DOT] = ACTIONS(4251), - [anon_sym_SLASH] = ACTIONS(4249), - [anon_sym_COLON] = ACTIONS(4249), - [anon_sym_SEMI] = ACTIONS(4249), - [anon_sym_EQ] = ACTIONS(4249), - [anon_sym_QMARK] = ACTIONS(4249), - [anon_sym_LBRACK] = ACTIONS(4251), - [anon_sym_BSLASH] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4251), - [anon_sym_BQUOTE] = ACTIONS(4249), + [sym__qmd_attribute] = STATE(1042), + [sym_raw_attribute] = STATE(1042), + [sym_commonmark_attribute] = STATE(1042), + [sym_language_attribute] = STATE(1042), + [sym__backslash_escape] = ACTIONS(4291), + [sym_entity_reference] = ACTIONS(4291), + [sym_numeric_character_reference] = ACTIONS(4291), + [anon_sym_LT] = ACTIONS(4293), + [anon_sym_GT] = ACTIONS(4291), + [anon_sym_BANG] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4291), + [anon_sym_POUND] = ACTIONS(4291), + [anon_sym_DOLLAR] = ACTIONS(4291), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_PLUS] = ACTIONS(4291), + [anon_sym_COMMA] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_DOT] = ACTIONS(4293), + [anon_sym_SLASH] = ACTIONS(4291), + [anon_sym_COLON] = ACTIONS(4291), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym_EQ] = ACTIONS(4291), + [anon_sym_QMARK] = ACTIONS(4291), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_BSLASH] = ACTIONS(4293), + [anon_sym_CARET] = ACTIONS(4293), + [anon_sym_BQUOTE] = ACTIONS(4291), [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_PIPE] = ACTIONS(4249), - [anon_sym_TILDE] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4249), - [anon_sym_RPAREN] = ACTIONS(4249), - [sym__newline_token] = ACTIONS(4249), - [aux_sym_insert_token1] = ACTIONS(4249), - [aux_sym_delete_token1] = ACTIONS(4249), - [aux_sym_highlight_token1] = ACTIONS(4249), - [aux_sym_edit_comment_token1] = ACTIONS(4249), - [anon_sym_CARET_LBRACK] = ACTIONS(4249), - [anon_sym_LBRACK_CARET] = ACTIONS(4249), - [sym_uri_autolink] = ACTIONS(4249), - [sym_email_autolink] = ACTIONS(4249), - [sym__whitespace_ge_2] = ACTIONS(4249), - [aux_sym__whitespace_token1] = ACTIONS(4251), - [sym__word_no_digit] = ACTIONS(4249), - [sym__digits] = ACTIONS(4249), - [anon_sym_DASH_DASH] = ACTIONS(4251), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4249), - [sym__code_span_start] = ACTIONS(4249), - [sym__emphasis_open_star] = ACTIONS(4249), - [sym__emphasis_open_underscore] = ACTIONS(4249), - [sym__strikeout_open] = ACTIONS(4249), - [sym__latex_span_start] = ACTIONS(4249), - [sym__single_quote_open] = ACTIONS(4249), - [sym__double_quote_open] = ACTIONS(4249), - [sym__superscript_open] = ACTIONS(4249), - [sym__subscript_open] = ACTIONS(4249), - [sym__subscript_close] = ACTIONS(4249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4249), - [sym__cite_author_in_text] = ACTIONS(4249), - [sym__cite_suppress_author] = ACTIONS(4249), - [sym__shortcode_open_escaped] = ACTIONS(4249), - [sym__shortcode_open] = ACTIONS(4249), - [sym__unclosed_span] = ACTIONS(4249), - [sym__strong_emphasis_open_star] = ACTIONS(4249), - [sym__strong_emphasis_open_underscore] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_RPAREN] = ACTIONS(4291), + [sym__newline_token] = ACTIONS(4291), + [aux_sym_insert_token1] = ACTIONS(4291), + [aux_sym_delete_token1] = ACTIONS(4291), + [aux_sym_highlight_token1] = ACTIONS(4291), + [aux_sym_edit_comment_token1] = ACTIONS(4291), + [anon_sym_CARET_LBRACK] = ACTIONS(4291), + [anon_sym_LBRACK_CARET] = ACTIONS(4291), + [sym_uri_autolink] = ACTIONS(4291), + [sym_email_autolink] = ACTIONS(4291), + [sym__whitespace_ge_2] = ACTIONS(4291), + [aux_sym__whitespace_token1] = ACTIONS(4293), + [sym__word_no_digit] = ACTIONS(4291), + [sym__digits] = ACTIONS(4291), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), + [sym__code_span_start] = ACTIONS(4291), + [sym__emphasis_open_star] = ACTIONS(4291), + [sym__emphasis_open_underscore] = ACTIONS(4291), + [sym__strikeout_open] = ACTIONS(4291), + [sym__latex_span_start] = ACTIONS(4291), + [sym__single_quote_open] = ACTIONS(4291), + [sym__double_quote_open] = ACTIONS(4291), + [sym__superscript_open] = ACTIONS(4291), + [sym__subscript_open] = ACTIONS(4291), + [sym__subscript_close] = ACTIONS(4291), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4291), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4291), + [sym__cite_author_in_text] = ACTIONS(4291), + [sym__cite_suppress_author] = ACTIONS(4291), + [sym__shortcode_open_escaped] = ACTIONS(4291), + [sym__shortcode_open] = ACTIONS(4291), + [sym__unclosed_span] = ACTIONS(4291), + [sym__strong_emphasis_open_star] = ACTIONS(4291), + [sym__strong_emphasis_open_underscore] = ACTIONS(4291), }, [STATE(690)] = { - [sym__qmd_attribute] = STATE(1051), - [sym_raw_attribute] = STATE(1051), - [sym_commonmark_attribute] = STATE(1051), - [sym_language_attribute] = STATE(1051), - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), + [sym__qmd_attribute] = STATE(1046), + [sym_raw_attribute] = STATE(1046), + [sym_commonmark_attribute] = STATE(1046), + [sym_language_attribute] = STATE(1046), + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__subscript_close] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__subscript_close] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), }, [STATE(691)] = { - [sym__qmd_attribute] = STATE(1052), - [sym_raw_attribute] = STATE(1052), - [sym_commonmark_attribute] = STATE(1052), - [sym_language_attribute] = STATE(1052), + [sym__qmd_attribute] = STATE(1047), + [sym_raw_attribute] = STATE(1047), + [sym_commonmark_attribute] = STATE(1047), + [sym_language_attribute] = STATE(1047), [sym__backslash_escape] = ACTIONS(4187), [sym_entity_reference] = ACTIONS(4187), [sym_numeric_character_reference] = ACTIONS(4187), @@ -94401,10 +94400,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(692)] = { - [sym__qmd_attribute] = STATE(1053), - [sym_raw_attribute] = STATE(1053), - [sym_commonmark_attribute] = STATE(1053), - [sym_language_attribute] = STATE(1053), + [sym__qmd_attribute] = STATE(1048), + [sym_raw_attribute] = STATE(1048), + [sym_commonmark_attribute] = STATE(1048), + [sym_language_attribute] = STATE(1048), [sym__backslash_escape] = ACTIONS(4193), [sym_entity_reference] = ACTIONS(4193), [sym_numeric_character_reference] = ACTIONS(4193), @@ -94472,10 +94471,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(693)] = { - [sym__qmd_attribute] = STATE(1054), - [sym_raw_attribute] = STATE(1054), - [sym_commonmark_attribute] = STATE(1054), - [sym_language_attribute] = STATE(1054), + [sym__qmd_attribute] = STATE(1049), + [sym_raw_attribute] = STATE(1049), + [sym_commonmark_attribute] = STATE(1049), + [sym_language_attribute] = STATE(1049), [sym__backslash_escape] = ACTIONS(4197), [sym_entity_reference] = ACTIONS(4197), [sym_numeric_character_reference] = ACTIONS(4197), @@ -94543,10 +94542,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(694)] = { - [sym__qmd_attribute] = STATE(1059), - [sym_raw_attribute] = STATE(1059), - [sym_commonmark_attribute] = STATE(1059), - [sym_language_attribute] = STATE(1059), + [sym__qmd_attribute] = STATE(1055), + [sym_raw_attribute] = STATE(1055), + [sym_commonmark_attribute] = STATE(1055), + [sym_language_attribute] = STATE(1055), [sym__backslash_escape] = ACTIONS(4201), [sym_entity_reference] = ACTIONS(4201), [sym_numeric_character_reference] = ACTIONS(4201), @@ -94614,10 +94613,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(695)] = { - [sym__qmd_attribute] = STATE(1060), - [sym_raw_attribute] = STATE(1060), - [sym_commonmark_attribute] = STATE(1060), - [sym_language_attribute] = STATE(1060), + [sym__qmd_attribute] = STATE(1057), + [sym_raw_attribute] = STATE(1057), + [sym_commonmark_attribute] = STATE(1057), + [sym_language_attribute] = STATE(1057), [sym__backslash_escape] = ACTIONS(4205), [sym_entity_reference] = ACTIONS(4205), [sym_numeric_character_reference] = ACTIONS(4205), @@ -94685,10 +94684,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4205), }, [STATE(696)] = { - [sym__qmd_attribute] = STATE(1066), - [sym_raw_attribute] = STATE(1066), - [sym_commonmark_attribute] = STATE(1066), - [sym_language_attribute] = STATE(1066), + [sym__qmd_attribute] = STATE(1064), + [sym_raw_attribute] = STATE(1064), + [sym_commonmark_attribute] = STATE(1064), + [sym_language_attribute] = STATE(1064), [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), [sym_numeric_character_reference] = ACTIONS(4209), @@ -94756,10 +94755,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, [STATE(697)] = { - [sym__qmd_attribute] = STATE(1068), - [sym_raw_attribute] = STATE(1068), - [sym_commonmark_attribute] = STATE(1068), - [sym_language_attribute] = STATE(1068), + [sym__qmd_attribute] = STATE(1065), + [sym_raw_attribute] = STATE(1065), + [sym_commonmark_attribute] = STATE(1065), + [sym_language_attribute] = STATE(1065), [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), [sym_numeric_character_reference] = ACTIONS(4213), @@ -94827,10 +94826,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, [STATE(698)] = { - [sym__qmd_attribute] = STATE(1074), - [sym_raw_attribute] = STATE(1074), - [sym_commonmark_attribute] = STATE(1074), - [sym_language_attribute] = STATE(1074), + [sym__qmd_attribute] = STATE(1070), + [sym_raw_attribute] = STATE(1070), + [sym_commonmark_attribute] = STATE(1070), + [sym_language_attribute] = STATE(1070), [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -94898,10 +94897,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, [STATE(699)] = { - [sym__qmd_attribute] = STATE(1076), - [sym_raw_attribute] = STATE(1076), - [sym_commonmark_attribute] = STATE(1076), - [sym_language_attribute] = STATE(1076), + [sym__qmd_attribute] = STATE(1072), + [sym_raw_attribute] = STATE(1072), + [sym_commonmark_attribute] = STATE(1072), + [sym_language_attribute] = STATE(1072), [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -94969,10 +94968,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, [STATE(700)] = { - [sym__qmd_attribute] = STATE(1079), - [sym_raw_attribute] = STATE(1079), - [sym_commonmark_attribute] = STATE(1079), - [sym_language_attribute] = STATE(1079), + [sym__qmd_attribute] = STATE(1075), + [sym_raw_attribute] = STATE(1075), + [sym_commonmark_attribute] = STATE(1075), + [sym_language_attribute] = STATE(1075), [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -95040,10 +95039,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, [STATE(701)] = { - [sym__qmd_attribute] = STATE(1080), - [sym_raw_attribute] = STATE(1080), - [sym_commonmark_attribute] = STATE(1080), - [sym_language_attribute] = STATE(1080), + [sym__qmd_attribute] = STATE(1076), + [sym_raw_attribute] = STATE(1076), + [sym_commonmark_attribute] = STATE(1076), + [sym_language_attribute] = STATE(1076), [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -95111,10 +95110,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, [STATE(702)] = { - [sym__qmd_attribute] = STATE(1082), - [sym_raw_attribute] = STATE(1082), - [sym_commonmark_attribute] = STATE(1082), - [sym_language_attribute] = STATE(1082), + [sym__qmd_attribute] = STATE(1078), + [sym_raw_attribute] = STATE(1078), + [sym_commonmark_attribute] = STATE(1078), + [sym_language_attribute] = STATE(1078), [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -95182,10 +95181,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, [STATE(703)] = { - [sym__qmd_attribute] = STATE(1083), - [sym_raw_attribute] = STATE(1083), - [sym_commonmark_attribute] = STATE(1083), - [sym_language_attribute] = STATE(1083), + [sym__qmd_attribute] = STATE(1079), + [sym_raw_attribute] = STATE(1079), + [sym_commonmark_attribute] = STATE(1079), + [sym_language_attribute] = STATE(1079), [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -95253,10 +95252,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, [STATE(704)] = { - [sym__qmd_attribute] = STATE(1084), - [sym_raw_attribute] = STATE(1084), - [sym_commonmark_attribute] = STATE(1084), - [sym_language_attribute] = STATE(1084), + [sym__qmd_attribute] = STATE(1081), + [sym_raw_attribute] = STATE(1081), + [sym_commonmark_attribute] = STATE(1081), + [sym_language_attribute] = STATE(1081), [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -95324,10 +95323,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, [STATE(705)] = { - [sym__qmd_attribute] = STATE(1085), - [sym_raw_attribute] = STATE(1085), - [sym_commonmark_attribute] = STATE(1085), - [sym_language_attribute] = STATE(1085), + [sym__qmd_attribute] = STATE(1082), + [sym_raw_attribute] = STATE(1082), + [sym_commonmark_attribute] = STATE(1082), + [sym_language_attribute] = STATE(1082), [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -95395,152 +95394,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, [STATE(706)] = { - [sym__qmd_attribute] = STATE(1108), - [sym_raw_attribute] = STATE(1108), - [sym_commonmark_attribute] = STATE(1108), - [sym_language_attribute] = STATE(1108), - [sym__backslash_escape] = ACTIONS(4257), - [sym_entity_reference] = ACTIONS(4257), - [sym_numeric_character_reference] = ACTIONS(4257), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4257), - [anon_sym_BANG] = ACTIONS(4257), - [anon_sym_DQUOTE] = ACTIONS(4257), - [anon_sym_POUND] = ACTIONS(4257), - [anon_sym_DOLLAR] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4257), - [anon_sym_AMP] = ACTIONS(4259), - [anon_sym_SQUOTE] = ACTIONS(4257), - [anon_sym_PLUS] = ACTIONS(4257), - [anon_sym_COMMA] = ACTIONS(4257), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_DOT] = ACTIONS(4259), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_COLON] = ACTIONS(4257), - [anon_sym_SEMI] = ACTIONS(4257), - [anon_sym_EQ] = ACTIONS(4257), - [anon_sym_QMARK] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_BSLASH] = ACTIONS(4259), - [anon_sym_CARET] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4257), + [sym__qmd_attribute] = STATE(1107), + [sym_raw_attribute] = STATE(1107), + [sym_commonmark_attribute] = STATE(1107), + [sym_language_attribute] = STATE(1107), + [sym__backslash_escape] = ACTIONS(4251), + [sym_entity_reference] = ACTIONS(4251), + [sym_numeric_character_reference] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_DQUOTE] = ACTIONS(4251), + [anon_sym_POUND] = ACTIONS(4251), + [anon_sym_DOLLAR] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_COMMA] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_COLON] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4251), + [anon_sym_QMARK] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_BSLASH] = ACTIONS(4253), + [anon_sym_CARET] = ACTIONS(4253), + [anon_sym_BQUOTE] = ACTIONS(4251), [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_PIPE] = ACTIONS(4257), - [anon_sym_TILDE] = ACTIONS(4257), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_RPAREN] = ACTIONS(4257), - [sym__newline_token] = ACTIONS(4257), - [aux_sym_insert_token1] = ACTIONS(4257), - [aux_sym_delete_token1] = ACTIONS(4257), - [aux_sym_highlight_token1] = ACTIONS(4257), - [aux_sym_edit_comment_token1] = ACTIONS(4257), - [anon_sym_CARET_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_CARET] = ACTIONS(4257), - [sym_uri_autolink] = ACTIONS(4257), - [sym_email_autolink] = ACTIONS(4257), - [sym__whitespace_ge_2] = ACTIONS(4257), - [aux_sym__whitespace_token1] = ACTIONS(4259), - [sym__word_no_digit] = ACTIONS(4257), - [sym__digits] = ACTIONS(4257), - [anon_sym_DASH_DASH] = ACTIONS(4259), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4257), - [sym__code_span_start] = ACTIONS(4257), - [sym__emphasis_open_star] = ACTIONS(4257), - [sym__emphasis_open_underscore] = ACTIONS(4257), - [sym__strikeout_open] = ACTIONS(4257), - [sym__latex_span_start] = ACTIONS(4257), - [sym__single_quote_open] = ACTIONS(4257), - [sym__double_quote_open] = ACTIONS(4257), - [sym__superscript_open] = ACTIONS(4257), - [sym__subscript_open] = ACTIONS(4257), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4257), - [sym__cite_author_in_text] = ACTIONS(4257), - [sym__cite_suppress_author] = ACTIONS(4257), - [sym__shortcode_open_escaped] = ACTIONS(4257), - [sym__shortcode_open] = ACTIONS(4257), - [sym__unclosed_span] = ACTIONS(4257), - [sym__strong_emphasis_open_star] = ACTIONS(4257), - [sym__strong_emphasis_close_star] = ACTIONS(4257), - [sym__strong_emphasis_open_underscore] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4251), + [sym__newline_token] = ACTIONS(4251), + [aux_sym_insert_token1] = ACTIONS(4251), + [aux_sym_delete_token1] = ACTIONS(4251), + [aux_sym_highlight_token1] = ACTIONS(4251), + [aux_sym_edit_comment_token1] = ACTIONS(4251), + [anon_sym_CARET_LBRACK] = ACTIONS(4251), + [anon_sym_LBRACK_CARET] = ACTIONS(4251), + [sym_uri_autolink] = ACTIONS(4251), + [sym_email_autolink] = ACTIONS(4251), + [sym__whitespace_ge_2] = ACTIONS(4251), + [aux_sym__whitespace_token1] = ACTIONS(4253), + [sym__word_no_digit] = ACTIONS(4251), + [sym__digits] = ACTIONS(4251), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4251), + [sym__code_span_start] = ACTIONS(4251), + [sym__emphasis_open_star] = ACTIONS(4251), + [sym__emphasis_open_underscore] = ACTIONS(4251), + [sym__strikeout_open] = ACTIONS(4251), + [sym__latex_span_start] = ACTIONS(4251), + [sym__single_quote_open] = ACTIONS(4251), + [sym__double_quote_open] = ACTIONS(4251), + [sym__superscript_open] = ACTIONS(4251), + [sym__subscript_open] = ACTIONS(4251), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4251), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4251), + [sym__cite_author_in_text] = ACTIONS(4251), + [sym__cite_suppress_author] = ACTIONS(4251), + [sym__shortcode_open_escaped] = ACTIONS(4251), + [sym__shortcode_open] = ACTIONS(4251), + [sym__unclosed_span] = ACTIONS(4251), + [sym__strong_emphasis_open_star] = ACTIONS(4251), + [sym__strong_emphasis_close_star] = ACTIONS(4251), + [sym__strong_emphasis_open_underscore] = ACTIONS(4251), }, [STATE(707)] = { - [sym__qmd_attribute] = STATE(1109), - [sym_raw_attribute] = STATE(1109), - [sym_commonmark_attribute] = STATE(1109), - [sym_language_attribute] = STATE(1109), - [sym__backslash_escape] = ACTIONS(4267), - [sym_entity_reference] = ACTIONS(4267), - [sym_numeric_character_reference] = ACTIONS(4267), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4267), - [anon_sym_BANG] = ACTIONS(4267), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_POUND] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_PERCENT] = ACTIONS(4267), - [anon_sym_AMP] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4267), - [anon_sym_PLUS] = ACTIONS(4267), - [anon_sym_COMMA] = ACTIONS(4267), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4267), - [anon_sym_COLON] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4267), - [anon_sym_EQ] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4267), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_BSLASH] = ACTIONS(4269), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4267), + [sym__qmd_attribute] = STATE(1108), + [sym_raw_attribute] = STATE(1108), + [sym_commonmark_attribute] = STATE(1108), + [sym_language_attribute] = STATE(1108), + [sym__backslash_escape] = ACTIONS(4263), + [sym_entity_reference] = ACTIONS(4263), + [sym_numeric_character_reference] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4265), + [anon_sym_GT] = ACTIONS(4263), + [anon_sym_BANG] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(4263), + [anon_sym_DOLLAR] = ACTIONS(4263), + [anon_sym_PERCENT] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4265), + [anon_sym_SQUOTE] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_COMMA] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_COLON] = ACTIONS(4263), + [anon_sym_SEMI] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_BSLASH] = ACTIONS(4265), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_BQUOTE] = ACTIONS(4263), [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_PIPE] = ACTIONS(4267), - [anon_sym_TILDE] = ACTIONS(4267), - [anon_sym_LPAREN] = ACTIONS(4267), - [anon_sym_RPAREN] = ACTIONS(4267), - [sym__newline_token] = ACTIONS(4267), - [aux_sym_insert_token1] = ACTIONS(4267), - [aux_sym_delete_token1] = ACTIONS(4267), - [aux_sym_highlight_token1] = ACTIONS(4267), - [aux_sym_edit_comment_token1] = ACTIONS(4267), - [anon_sym_CARET_LBRACK] = ACTIONS(4267), - [anon_sym_LBRACK_CARET] = ACTIONS(4267), - [sym_uri_autolink] = ACTIONS(4267), - [sym_email_autolink] = ACTIONS(4267), - [sym__whitespace_ge_2] = ACTIONS(4267), - [aux_sym__whitespace_token1] = ACTIONS(4269), - [sym__word_no_digit] = ACTIONS(4267), - [sym__digits] = ACTIONS(4267), - [anon_sym_DASH_DASH] = ACTIONS(4269), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), - [sym__code_span_start] = ACTIONS(4267), - [sym__emphasis_open_star] = ACTIONS(4267), - [sym__emphasis_open_underscore] = ACTIONS(4267), - [sym__strikeout_open] = ACTIONS(4267), - [sym__latex_span_start] = ACTIONS(4267), - [sym__single_quote_open] = ACTIONS(4267), - [sym__double_quote_open] = ACTIONS(4267), - [sym__superscript_open] = ACTIONS(4267), - [sym__subscript_open] = ACTIONS(4267), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), - [sym__cite_author_in_text] = ACTIONS(4267), - [sym__cite_suppress_author] = ACTIONS(4267), - [sym__shortcode_open_escaped] = ACTIONS(4267), - [sym__shortcode_open] = ACTIONS(4267), - [sym__unclosed_span] = ACTIONS(4267), - [sym__strong_emphasis_open_star] = ACTIONS(4267), - [sym__strong_emphasis_close_star] = ACTIONS(4267), - [sym__strong_emphasis_open_underscore] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4263), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym_RPAREN] = ACTIONS(4263), + [sym__newline_token] = ACTIONS(4263), + [aux_sym_insert_token1] = ACTIONS(4263), + [aux_sym_delete_token1] = ACTIONS(4263), + [aux_sym_highlight_token1] = ACTIONS(4263), + [aux_sym_edit_comment_token1] = ACTIONS(4263), + [anon_sym_CARET_LBRACK] = ACTIONS(4263), + [anon_sym_LBRACK_CARET] = ACTIONS(4263), + [sym_uri_autolink] = ACTIONS(4263), + [sym_email_autolink] = ACTIONS(4263), + [sym__whitespace_ge_2] = ACTIONS(4263), + [aux_sym__whitespace_token1] = ACTIONS(4265), + [sym__word_no_digit] = ACTIONS(4263), + [sym__digits] = ACTIONS(4263), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), + [sym__code_span_start] = ACTIONS(4263), + [sym__emphasis_open_star] = ACTIONS(4263), + [sym__emphasis_open_underscore] = ACTIONS(4263), + [sym__strikeout_open] = ACTIONS(4263), + [sym__latex_span_start] = ACTIONS(4263), + [sym__single_quote_open] = ACTIONS(4263), + [sym__double_quote_open] = ACTIONS(4263), + [sym__superscript_open] = ACTIONS(4263), + [sym__subscript_open] = ACTIONS(4263), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), + [sym__cite_author_in_text] = ACTIONS(4263), + [sym__cite_suppress_author] = ACTIONS(4263), + [sym__shortcode_open_escaped] = ACTIONS(4263), + [sym__shortcode_open] = ACTIONS(4263), + [sym__unclosed_span] = ACTIONS(4263), + [sym__strong_emphasis_open_star] = ACTIONS(4263), + [sym__strong_emphasis_close_star] = ACTIONS(4263), + [sym__strong_emphasis_open_underscore] = ACTIONS(4263), }, [STATE(708)] = { - [sym__qmd_attribute] = STATE(1310), - [sym_raw_attribute] = STATE(1310), - [sym_commonmark_attribute] = STATE(1310), - [sym_language_attribute] = STATE(1310), + [sym__qmd_attribute] = STATE(1309), + [sym_raw_attribute] = STATE(1309), + [sym_commonmark_attribute] = STATE(1309), + [sym_language_attribute] = STATE(1309), [sym__backslash_escape] = ACTIONS(4283), [sym_entity_reference] = ACTIONS(4283), [sym_numeric_character_reference] = ACTIONS(4283), @@ -95608,10 +95607,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4283), }, [STATE(709)] = { - [sym__qmd_attribute] = STATE(1111), - [sym_raw_attribute] = STATE(1111), - [sym_commonmark_attribute] = STATE(1111), - [sym_language_attribute] = STATE(1111), + [sym__qmd_attribute] = STATE(1109), + [sym_raw_attribute] = STATE(1109), + [sym_commonmark_attribute] = STATE(1109), + [sym_language_attribute] = STATE(1109), [sym__backslash_escape] = ACTIONS(4283), [sym_entity_reference] = ACTIONS(4283), [sym_numeric_character_reference] = ACTIONS(4283), @@ -95679,10 +95678,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4283), }, [STATE(710)] = { - [sym__qmd_attribute] = STATE(1123), - [sym_raw_attribute] = STATE(1123), - [sym_commonmark_attribute] = STATE(1123), - [sym_language_attribute] = STATE(1123), + [sym__qmd_attribute] = STATE(1121), + [sym_raw_attribute] = STATE(1121), + [sym_commonmark_attribute] = STATE(1121), + [sym_language_attribute] = STATE(1121), [sym__backslash_escape] = ACTIONS(4181), [sym_entity_reference] = ACTIONS(4181), [sym_numeric_character_reference] = ACTIONS(4181), @@ -95750,152 +95749,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, [STATE(711)] = { + [sym__qmd_attribute] = STATE(1124), + [sym_raw_attribute] = STATE(1124), + [sym_commonmark_attribute] = STATE(1124), + [sym_language_attribute] = STATE(1124), + [sym__backslash_escape] = ACTIONS(4259), + [sym_entity_reference] = ACTIONS(4259), + [sym_numeric_character_reference] = ACTIONS(4259), + [anon_sym_LT] = ACTIONS(4261), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + [anon_sym_SQUOTE] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_COMMA] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_DOT] = ACTIONS(4261), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_QMARK] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_BSLASH] = ACTIONS(4261), + [anon_sym_CARET] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4321), + [anon_sym_PIPE] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym_RPAREN] = ACTIONS(4259), + [sym__newline_token] = ACTIONS(4259), + [aux_sym_insert_token1] = ACTIONS(4259), + [aux_sym_delete_token1] = ACTIONS(4259), + [aux_sym_highlight_token1] = ACTIONS(4259), + [aux_sym_edit_comment_token1] = ACTIONS(4259), + [anon_sym_CARET_LBRACK] = ACTIONS(4259), + [anon_sym_LBRACK_CARET] = ACTIONS(4259), + [sym_uri_autolink] = ACTIONS(4259), + [sym_email_autolink] = ACTIONS(4259), + [sym__whitespace_ge_2] = ACTIONS(4259), + [aux_sym__whitespace_token1] = ACTIONS(4261), + [sym__word_no_digit] = ACTIONS(4259), + [sym__digits] = ACTIONS(4259), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4259), + [sym__code_span_start] = ACTIONS(4259), + [sym__emphasis_open_star] = ACTIONS(4259), + [sym__emphasis_open_underscore] = ACTIONS(4259), + [sym__strikeout_open] = ACTIONS(4259), + [sym__latex_span_start] = ACTIONS(4259), + [sym__single_quote_open] = ACTIONS(4259), + [sym__double_quote_open] = ACTIONS(4259), + [sym__superscript_open] = ACTIONS(4259), + [sym__subscript_open] = ACTIONS(4259), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4259), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4259), + [sym__cite_author_in_text] = ACTIONS(4259), + [sym__cite_suppress_author] = ACTIONS(4259), + [sym__shortcode_open_escaped] = ACTIONS(4259), + [sym__shortcode_open] = ACTIONS(4259), + [sym__unclosed_span] = ACTIONS(4259), + [sym__strong_emphasis_open_star] = ACTIONS(4259), + [sym__strong_emphasis_close_star] = ACTIONS(4259), + [sym__strong_emphasis_open_underscore] = ACTIONS(4259), + }, + [STATE(712)] = { [sym__qmd_attribute] = STATE(1126), [sym_raw_attribute] = STATE(1126), [sym_commonmark_attribute] = STATE(1126), [sym_language_attribute] = STATE(1126), - [sym__backslash_escape] = ACTIONS(4263), - [sym_entity_reference] = ACTIONS(4263), - [sym_numeric_character_reference] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(4265), - [anon_sym_GT] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4263), - [anon_sym_POUND] = ACTIONS(4263), - [anon_sym_DOLLAR] = ACTIONS(4263), - [anon_sym_PERCENT] = ACTIONS(4263), - [anon_sym_AMP] = ACTIONS(4265), - [anon_sym_SQUOTE] = ACTIONS(4263), - [anon_sym_PLUS] = ACTIONS(4263), - [anon_sym_COMMA] = ACTIONS(4263), - [anon_sym_DASH] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4265), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_COLON] = ACTIONS(4263), - [anon_sym_SEMI] = ACTIONS(4263), - [anon_sym_EQ] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4263), - [anon_sym_LBRACK] = ACTIONS(4265), - [anon_sym_BSLASH] = ACTIONS(4265), - [anon_sym_CARET] = ACTIONS(4265), - [anon_sym_BQUOTE] = ACTIONS(4263), + [sym__backslash_escape] = ACTIONS(4267), + [sym_entity_reference] = ACTIONS(4267), + [sym_numeric_character_reference] = ACTIONS(4267), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_DQUOTE] = ACTIONS(4267), + [anon_sym_POUND] = ACTIONS(4267), + [anon_sym_DOLLAR] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_SQUOTE] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_COMMA] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4269), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_COLON] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_QMARK] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_BSLASH] = ACTIONS(4269), + [anon_sym_CARET] = ACTIONS(4269), + [anon_sym_BQUOTE] = ACTIONS(4267), [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_PIPE] = ACTIONS(4263), - [anon_sym_TILDE] = ACTIONS(4263), - [anon_sym_LPAREN] = ACTIONS(4263), - [anon_sym_RPAREN] = ACTIONS(4263), - [sym__newline_token] = ACTIONS(4263), - [aux_sym_insert_token1] = ACTIONS(4263), - [aux_sym_delete_token1] = ACTIONS(4263), - [aux_sym_highlight_token1] = ACTIONS(4263), - [aux_sym_edit_comment_token1] = ACTIONS(4263), - [anon_sym_CARET_LBRACK] = ACTIONS(4263), - [anon_sym_LBRACK_CARET] = ACTIONS(4263), - [sym_uri_autolink] = ACTIONS(4263), - [sym_email_autolink] = ACTIONS(4263), - [sym__whitespace_ge_2] = ACTIONS(4263), - [aux_sym__whitespace_token1] = ACTIONS(4265), - [sym__word_no_digit] = ACTIONS(4263), - [sym__digits] = ACTIONS(4263), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), - [sym__code_span_start] = ACTIONS(4263), - [sym__emphasis_open_star] = ACTIONS(4263), - [sym__emphasis_open_underscore] = ACTIONS(4263), - [sym__strikeout_open] = ACTIONS(4263), - [sym__latex_span_start] = ACTIONS(4263), - [sym__single_quote_open] = ACTIONS(4263), - [sym__double_quote_open] = ACTIONS(4263), - [sym__superscript_open] = ACTIONS(4263), - [sym__subscript_open] = ACTIONS(4263), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), - [sym__cite_author_in_text] = ACTIONS(4263), - [sym__cite_suppress_author] = ACTIONS(4263), - [sym__shortcode_open_escaped] = ACTIONS(4263), - [sym__shortcode_open] = ACTIONS(4263), - [sym__unclosed_span] = ACTIONS(4263), - [sym__strong_emphasis_open_star] = ACTIONS(4263), - [sym__strong_emphasis_close_star] = ACTIONS(4263), - [sym__strong_emphasis_open_underscore] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4267), + [anon_sym_TILDE] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_RPAREN] = ACTIONS(4267), + [sym__newline_token] = ACTIONS(4267), + [aux_sym_insert_token1] = ACTIONS(4267), + [aux_sym_delete_token1] = ACTIONS(4267), + [aux_sym_highlight_token1] = ACTIONS(4267), + [aux_sym_edit_comment_token1] = ACTIONS(4267), + [anon_sym_CARET_LBRACK] = ACTIONS(4267), + [anon_sym_LBRACK_CARET] = ACTIONS(4267), + [sym_uri_autolink] = ACTIONS(4267), + [sym_email_autolink] = ACTIONS(4267), + [sym__whitespace_ge_2] = ACTIONS(4267), + [aux_sym__whitespace_token1] = ACTIONS(4269), + [sym__word_no_digit] = ACTIONS(4267), + [sym__digits] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), + [sym__code_span_start] = ACTIONS(4267), + [sym__emphasis_open_star] = ACTIONS(4267), + [sym__emphasis_open_underscore] = ACTIONS(4267), + [sym__strikeout_open] = ACTIONS(4267), + [sym__latex_span_start] = ACTIONS(4267), + [sym__single_quote_open] = ACTIONS(4267), + [sym__double_quote_open] = ACTIONS(4267), + [sym__superscript_open] = ACTIONS(4267), + [sym__subscript_open] = ACTIONS(4267), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), + [sym__cite_author_in_text] = ACTIONS(4267), + [sym__cite_suppress_author] = ACTIONS(4267), + [sym__shortcode_open_escaped] = ACTIONS(4267), + [sym__shortcode_open] = ACTIONS(4267), + [sym__unclosed_span] = ACTIONS(4267), + [sym__strong_emphasis_open_star] = ACTIONS(4267), + [sym__strong_emphasis_close_star] = ACTIONS(4267), + [sym__strong_emphasis_open_underscore] = ACTIONS(4267), }, - [STATE(712)] = { - [sym__qmd_attribute] = STATE(1127), - [sym_raw_attribute] = STATE(1127), - [sym_commonmark_attribute] = STATE(1127), - [sym_language_attribute] = STATE(1127), - [sym__backslash_escape] = ACTIONS(4271), - [sym_entity_reference] = ACTIONS(4271), - [sym_numeric_character_reference] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4273), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_POUND] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4273), - [anon_sym_SQUOTE] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4273), - [anon_sym_SLASH] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_EQ] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(4271), - [anon_sym_LBRACK] = ACTIONS(4273), - [anon_sym_BSLASH] = ACTIONS(4273), - [anon_sym_CARET] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4271), + [STATE(713)] = { + [sym__qmd_attribute] = STATE(1128), + [sym_raw_attribute] = STATE(1128), + [sym_commonmark_attribute] = STATE(1128), + [sym_language_attribute] = STATE(1128), + [sym__backslash_escape] = ACTIONS(4275), + [sym_entity_reference] = ACTIONS(4275), + [sym_numeric_character_reference] = ACTIONS(4275), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + [anon_sym_SQUOTE] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_COMMA] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4277), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_COLON] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_QMARK] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_BSLASH] = ACTIONS(4277), + [anon_sym_CARET] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4275), [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_TILDE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [sym__newline_token] = ACTIONS(4271), - [aux_sym_insert_token1] = ACTIONS(4271), - [aux_sym_delete_token1] = ACTIONS(4271), - [aux_sym_highlight_token1] = ACTIONS(4271), - [aux_sym_edit_comment_token1] = ACTIONS(4271), - [anon_sym_CARET_LBRACK] = ACTIONS(4271), - [anon_sym_LBRACK_CARET] = ACTIONS(4271), - [sym_uri_autolink] = ACTIONS(4271), - [sym_email_autolink] = ACTIONS(4271), - [sym__whitespace_ge_2] = ACTIONS(4271), - [aux_sym__whitespace_token1] = ACTIONS(4273), - [sym__word_no_digit] = ACTIONS(4271), - [sym__digits] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4273), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), - [sym__code_span_start] = ACTIONS(4271), - [sym__emphasis_open_star] = ACTIONS(4271), - [sym__emphasis_open_underscore] = ACTIONS(4271), - [sym__strikeout_open] = ACTIONS(4271), - [sym__latex_span_start] = ACTIONS(4271), - [sym__single_quote_open] = ACTIONS(4271), - [sym__double_quote_open] = ACTIONS(4271), - [sym__superscript_open] = ACTIONS(4271), - [sym__subscript_open] = ACTIONS(4271), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), - [sym__cite_author_in_text] = ACTIONS(4271), - [sym__cite_suppress_author] = ACTIONS(4271), - [sym__shortcode_open_escaped] = ACTIONS(4271), - [sym__shortcode_open] = ACTIONS(4271), - [sym__unclosed_span] = ACTIONS(4271), - [sym__strong_emphasis_open_star] = ACTIONS(4271), - [sym__strong_emphasis_close_star] = ACTIONS(4271), - [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4275), + [anon_sym_TILDE] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4275), + [anon_sym_RPAREN] = ACTIONS(4275), + [sym__newline_token] = ACTIONS(4275), + [aux_sym_insert_token1] = ACTIONS(4275), + [aux_sym_delete_token1] = ACTIONS(4275), + [aux_sym_highlight_token1] = ACTIONS(4275), + [aux_sym_edit_comment_token1] = ACTIONS(4275), + [anon_sym_CARET_LBRACK] = ACTIONS(4275), + [anon_sym_LBRACK_CARET] = ACTIONS(4275), + [sym_uri_autolink] = ACTIONS(4275), + [sym_email_autolink] = ACTIONS(4275), + [sym__whitespace_ge_2] = ACTIONS(4275), + [aux_sym__whitespace_token1] = ACTIONS(4277), + [sym__word_no_digit] = ACTIONS(4275), + [sym__digits] = ACTIONS(4275), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), + [sym__code_span_start] = ACTIONS(4275), + [sym__emphasis_open_star] = ACTIONS(4275), + [sym__emphasis_open_underscore] = ACTIONS(4275), + [sym__strikeout_open] = ACTIONS(4275), + [sym__latex_span_start] = ACTIONS(4275), + [sym__single_quote_open] = ACTIONS(4275), + [sym__double_quote_open] = ACTIONS(4275), + [sym__superscript_open] = ACTIONS(4275), + [sym__subscript_open] = ACTIONS(4275), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), + [sym__cite_author_in_text] = ACTIONS(4275), + [sym__cite_suppress_author] = ACTIONS(4275), + [sym__shortcode_open_escaped] = ACTIONS(4275), + [sym__shortcode_open] = ACTIONS(4275), + [sym__unclosed_span] = ACTIONS(4275), + [sym__strong_emphasis_open_star] = ACTIONS(4275), + [sym__strong_emphasis_close_star] = ACTIONS(4275), + [sym__strong_emphasis_open_underscore] = ACTIONS(4275), }, - [STATE(713)] = { - [sym__qmd_attribute] = STATE(1129), - [sym_raw_attribute] = STATE(1129), - [sym_commonmark_attribute] = STATE(1129), - [sym_language_attribute] = STATE(1129), + [STATE(714)] = { + [sym__qmd_attribute] = STATE(1130), + [sym_raw_attribute] = STATE(1130), + [sym_commonmark_attribute] = STATE(1130), + [sym_language_attribute] = STATE(1130), [sym__backslash_escape] = ACTIONS(4287), [sym_entity_reference] = ACTIONS(4287), [sym_numeric_character_reference] = ACTIONS(4287), @@ -95962,82 +96032,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4287), [sym__strong_emphasis_open_underscore] = ACTIONS(4287), }, - [STATE(714)] = { - [sym__qmd_attribute] = STATE(1131), - [sym_raw_attribute] = STATE(1131), - [sym_commonmark_attribute] = STATE(1131), - [sym_language_attribute] = STATE(1131), - [sym__backslash_escape] = ACTIONS(4291), - [sym_entity_reference] = ACTIONS(4291), - [sym_numeric_character_reference] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4291), - [anon_sym_POUND] = ACTIONS(4291), - [anon_sym_DOLLAR] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_AMP] = ACTIONS(4293), - [anon_sym_SQUOTE] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4293), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_BSLASH] = ACTIONS(4293), - [anon_sym_CARET] = ACTIONS(4293), - [anon_sym_BQUOTE] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_PIPE] = ACTIONS(4291), - [anon_sym_TILDE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [sym__newline_token] = ACTIONS(4291), - [aux_sym_insert_token1] = ACTIONS(4291), - [aux_sym_delete_token1] = ACTIONS(4291), - [aux_sym_highlight_token1] = ACTIONS(4291), - [aux_sym_edit_comment_token1] = ACTIONS(4291), - [anon_sym_CARET_LBRACK] = ACTIONS(4291), - [anon_sym_LBRACK_CARET] = ACTIONS(4291), - [sym_uri_autolink] = ACTIONS(4291), - [sym_email_autolink] = ACTIONS(4291), - [sym__whitespace_ge_2] = ACTIONS(4291), - [aux_sym__whitespace_token1] = ACTIONS(4293), - [sym__word_no_digit] = ACTIONS(4291), - [sym__digits] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), - [sym__code_span_start] = ACTIONS(4291), - [sym__emphasis_open_star] = ACTIONS(4291), - [sym__emphasis_open_underscore] = ACTIONS(4291), - [sym__strikeout_open] = ACTIONS(4291), - [sym__latex_span_start] = ACTIONS(4291), - [sym__single_quote_open] = ACTIONS(4291), - [sym__double_quote_open] = ACTIONS(4291), - [sym__superscript_open] = ACTIONS(4291), - [sym__subscript_open] = ACTIONS(4291), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4291), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4291), - [sym__cite_author_in_text] = ACTIONS(4291), - [sym__cite_suppress_author] = ACTIONS(4291), - [sym__shortcode_open_escaped] = ACTIONS(4291), - [sym__shortcode_open] = ACTIONS(4291), - [sym__unclosed_span] = ACTIONS(4291), - [sym__strong_emphasis_open_star] = ACTIONS(4291), - [sym__strong_emphasis_close_star] = ACTIONS(4291), - [sym__strong_emphasis_open_underscore] = ACTIONS(4291), - }, [STATE(715)] = { - [sym__qmd_attribute] = STATE(1239), - [sym_raw_attribute] = STATE(1239), - [sym_commonmark_attribute] = STATE(1239), - [sym_language_attribute] = STATE(1239), + [sym__qmd_attribute] = STATE(1240), + [sym_raw_attribute] = STATE(1240), + [sym_commonmark_attribute] = STATE(1240), + [sym_language_attribute] = STATE(1240), [sym__backslash_escape] = ACTIONS(4187), [sym_entity_reference] = ACTIONS(4187), [sym_numeric_character_reference] = ACTIONS(4187), @@ -96063,7 +96062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4189), [anon_sym_CARET] = ACTIONS(4189), [anon_sym_BQUOTE] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4249), [anon_sym_PIPE] = ACTIONS(4187), [anon_sym_TILDE] = ACTIONS(4187), [anon_sym_LPAREN] = ACTIONS(4187), @@ -96105,152 +96104,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_underscore] = ACTIONS(4187), }, [STATE(716)] = { - [sym__qmd_attribute] = STATE(1137), - [sym_raw_attribute] = STATE(1137), - [sym_commonmark_attribute] = STATE(1137), - [sym_language_attribute] = STATE(1137), - [sym__backslash_escape] = ACTIONS(4249), - [sym_entity_reference] = ACTIONS(4249), - [sym_numeric_character_reference] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(4251), - [anon_sym_GT] = ACTIONS(4249), - [anon_sym_BANG] = ACTIONS(4249), - [anon_sym_DQUOTE] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(4249), - [anon_sym_PERCENT] = ACTIONS(4249), - [anon_sym_AMP] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4249), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_COMMA] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4251), - [anon_sym_DOT] = ACTIONS(4251), - [anon_sym_SLASH] = ACTIONS(4249), - [anon_sym_COLON] = ACTIONS(4249), - [anon_sym_SEMI] = ACTIONS(4249), - [anon_sym_EQ] = ACTIONS(4249), - [anon_sym_QMARK] = ACTIONS(4249), - [anon_sym_LBRACK] = ACTIONS(4251), - [anon_sym_BSLASH] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4251), - [anon_sym_BQUOTE] = ACTIONS(4249), + [sym__qmd_attribute] = STATE(1138), + [sym_raw_attribute] = STATE(1138), + [sym_commonmark_attribute] = STATE(1138), + [sym_language_attribute] = STATE(1138), + [sym__backslash_escape] = ACTIONS(4291), + [sym_entity_reference] = ACTIONS(4291), + [sym_numeric_character_reference] = ACTIONS(4291), + [anon_sym_LT] = ACTIONS(4293), + [anon_sym_GT] = ACTIONS(4291), + [anon_sym_BANG] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4291), + [anon_sym_POUND] = ACTIONS(4291), + [anon_sym_DOLLAR] = ACTIONS(4291), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_PLUS] = ACTIONS(4291), + [anon_sym_COMMA] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_DOT] = ACTIONS(4293), + [anon_sym_SLASH] = ACTIONS(4291), + [anon_sym_COLON] = ACTIONS(4291), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym_EQ] = ACTIONS(4291), + [anon_sym_QMARK] = ACTIONS(4291), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_BSLASH] = ACTIONS(4293), + [anon_sym_CARET] = ACTIONS(4293), + [anon_sym_BQUOTE] = ACTIONS(4291), [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_PIPE] = ACTIONS(4249), - [anon_sym_TILDE] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4249), - [anon_sym_RPAREN] = ACTIONS(4249), - [sym__newline_token] = ACTIONS(4249), - [aux_sym_insert_token1] = ACTIONS(4249), - [aux_sym_delete_token1] = ACTIONS(4249), - [aux_sym_highlight_token1] = ACTIONS(4249), - [aux_sym_edit_comment_token1] = ACTIONS(4249), - [anon_sym_CARET_LBRACK] = ACTIONS(4249), - [anon_sym_LBRACK_CARET] = ACTIONS(4249), - [sym_uri_autolink] = ACTIONS(4249), - [sym_email_autolink] = ACTIONS(4249), - [sym__whitespace_ge_2] = ACTIONS(4249), - [aux_sym__whitespace_token1] = ACTIONS(4251), - [sym__word_no_digit] = ACTIONS(4249), - [sym__digits] = ACTIONS(4249), - [anon_sym_DASH_DASH] = ACTIONS(4251), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4249), - [sym__code_span_start] = ACTIONS(4249), - [sym__emphasis_open_star] = ACTIONS(4249), - [sym__emphasis_open_underscore] = ACTIONS(4249), - [sym__strikeout_open] = ACTIONS(4249), - [sym__latex_span_start] = ACTIONS(4249), - [sym__single_quote_open] = ACTIONS(4249), - [sym__double_quote_open] = ACTIONS(4249), - [sym__superscript_open] = ACTIONS(4249), - [sym__subscript_open] = ACTIONS(4249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4249), - [sym__cite_author_in_text] = ACTIONS(4249), - [sym__cite_suppress_author] = ACTIONS(4249), - [sym__shortcode_open_escaped] = ACTIONS(4249), - [sym__shortcode_open] = ACTIONS(4249), - [sym__unclosed_span] = ACTIONS(4249), - [sym__strong_emphasis_open_star] = ACTIONS(4249), - [sym__strong_emphasis_close_star] = ACTIONS(4249), - [sym__strong_emphasis_open_underscore] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_RPAREN] = ACTIONS(4291), + [sym__newline_token] = ACTIONS(4291), + [aux_sym_insert_token1] = ACTIONS(4291), + [aux_sym_delete_token1] = ACTIONS(4291), + [aux_sym_highlight_token1] = ACTIONS(4291), + [aux_sym_edit_comment_token1] = ACTIONS(4291), + [anon_sym_CARET_LBRACK] = ACTIONS(4291), + [anon_sym_LBRACK_CARET] = ACTIONS(4291), + [sym_uri_autolink] = ACTIONS(4291), + [sym_email_autolink] = ACTIONS(4291), + [sym__whitespace_ge_2] = ACTIONS(4291), + [aux_sym__whitespace_token1] = ACTIONS(4293), + [sym__word_no_digit] = ACTIONS(4291), + [sym__digits] = ACTIONS(4291), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), + [sym__code_span_start] = ACTIONS(4291), + [sym__emphasis_open_star] = ACTIONS(4291), + [sym__emphasis_open_underscore] = ACTIONS(4291), + [sym__strikeout_open] = ACTIONS(4291), + [sym__latex_span_start] = ACTIONS(4291), + [sym__single_quote_open] = ACTIONS(4291), + [sym__double_quote_open] = ACTIONS(4291), + [sym__superscript_open] = ACTIONS(4291), + [sym__subscript_open] = ACTIONS(4291), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4291), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4291), + [sym__cite_author_in_text] = ACTIONS(4291), + [sym__cite_suppress_author] = ACTIONS(4291), + [sym__shortcode_open_escaped] = ACTIONS(4291), + [sym__shortcode_open] = ACTIONS(4291), + [sym__unclosed_span] = ACTIONS(4291), + [sym__strong_emphasis_open_star] = ACTIONS(4291), + [sym__strong_emphasis_close_star] = ACTIONS(4291), + [sym__strong_emphasis_open_underscore] = ACTIONS(4291), }, [STATE(717)] = { - [sym__qmd_attribute] = STATE(1141), - [sym_raw_attribute] = STATE(1141), - [sym_commonmark_attribute] = STATE(1141), - [sym_language_attribute] = STATE(1141), - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4321), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_close_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - }, - [STATE(718)] = { [sym__qmd_attribute] = STATE(1142), [sym_raw_attribute] = STATE(1142), [sym_commonmark_attribute] = STATE(1142), [sym_language_attribute] = STATE(1142), + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4321), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_close_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + }, + [STATE(718)] = { + [sym__qmd_attribute] = STATE(1143), + [sym_raw_attribute] = STATE(1143), + [sym_commonmark_attribute] = STATE(1143), + [sym_language_attribute] = STATE(1143), [sym__backslash_escape] = ACTIONS(4187), [sym_entity_reference] = ACTIONS(4187), [sym_numeric_character_reference] = ACTIONS(4187), @@ -96318,10 +96317,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(719)] = { - [sym__qmd_attribute] = STATE(1143), - [sym_raw_attribute] = STATE(1143), - [sym_commonmark_attribute] = STATE(1143), - [sym_language_attribute] = STATE(1143), + [sym__qmd_attribute] = STATE(1144), + [sym_raw_attribute] = STATE(1144), + [sym_commonmark_attribute] = STATE(1144), + [sym_language_attribute] = STATE(1144), [sym__backslash_escape] = ACTIONS(4193), [sym_entity_reference] = ACTIONS(4193), [sym_numeric_character_reference] = ACTIONS(4193), @@ -96389,10 +96388,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(720)] = { - [sym__qmd_attribute] = STATE(1144), - [sym_raw_attribute] = STATE(1144), - [sym_commonmark_attribute] = STATE(1144), - [sym_language_attribute] = STATE(1144), + [sym__qmd_attribute] = STATE(1145), + [sym_raw_attribute] = STATE(1145), + [sym_commonmark_attribute] = STATE(1145), + [sym_language_attribute] = STATE(1145), [sym__backslash_escape] = ACTIONS(4197), [sym_entity_reference] = ACTIONS(4197), [sym_numeric_character_reference] = ACTIONS(4197), @@ -96673,10 +96672,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, [STATE(724)] = { - [sym__qmd_attribute] = STATE(1161), - [sym_raw_attribute] = STATE(1161), - [sym_commonmark_attribute] = STATE(1161), - [sym_language_attribute] = STATE(1161), + [sym__qmd_attribute] = STATE(1160), + [sym_raw_attribute] = STATE(1160), + [sym_commonmark_attribute] = STATE(1160), + [sym_language_attribute] = STATE(1160), [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), [sym_numeric_character_reference] = ACTIONS(4213), @@ -96744,10 +96743,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, [STATE(725)] = { - [sym__qmd_attribute] = STATE(1167), - [sym_raw_attribute] = STATE(1167), - [sym_commonmark_attribute] = STATE(1167), - [sym_language_attribute] = STATE(1167), + [sym__qmd_attribute] = STATE(1165), + [sym_raw_attribute] = STATE(1165), + [sym_commonmark_attribute] = STATE(1165), + [sym_language_attribute] = STATE(1165), [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -96815,10 +96814,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, [STATE(726)] = { - [sym__qmd_attribute] = STATE(1169), - [sym_raw_attribute] = STATE(1169), - [sym_commonmark_attribute] = STATE(1169), - [sym_language_attribute] = STATE(1169), + [sym__qmd_attribute] = STATE(1167), + [sym_raw_attribute] = STATE(1167), + [sym_commonmark_attribute] = STATE(1167), + [sym_language_attribute] = STATE(1167), [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -96886,10 +96885,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, [STATE(727)] = { - [sym__qmd_attribute] = STATE(1173), - [sym_raw_attribute] = STATE(1173), - [sym_commonmark_attribute] = STATE(1173), - [sym_language_attribute] = STATE(1173), + [sym__qmd_attribute] = STATE(1170), + [sym_raw_attribute] = STATE(1170), + [sym_commonmark_attribute] = STATE(1170), + [sym_language_attribute] = STATE(1170), [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -96957,10 +96956,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, [STATE(728)] = { - [sym__qmd_attribute] = STATE(1175), - [sym_raw_attribute] = STATE(1175), - [sym_commonmark_attribute] = STATE(1175), - [sym_language_attribute] = STATE(1175), + [sym__qmd_attribute] = STATE(1171), + [sym_raw_attribute] = STATE(1171), + [sym_commonmark_attribute] = STATE(1171), + [sym_language_attribute] = STATE(1171), [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -97028,10 +97027,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, [STATE(729)] = { - [sym__qmd_attribute] = STATE(1177), - [sym_raw_attribute] = STATE(1177), - [sym_commonmark_attribute] = STATE(1177), - [sym_language_attribute] = STATE(1177), + [sym__qmd_attribute] = STATE(1172), + [sym_raw_attribute] = STATE(1172), + [sym_commonmark_attribute] = STATE(1172), + [sym_language_attribute] = STATE(1172), [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -97103,148 +97102,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_attribute] = STATE(1325), [sym_commonmark_attribute] = STATE(1325), [sym_language_attribute] = STATE(1325), - [sym__backslash_escape] = ACTIONS(4263), - [sym_entity_reference] = ACTIONS(4263), - [sym_numeric_character_reference] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(4265), - [anon_sym_GT] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4263), - [anon_sym_POUND] = ACTIONS(4263), - [anon_sym_DOLLAR] = ACTIONS(4263), - [anon_sym_PERCENT] = ACTIONS(4263), - [anon_sym_AMP] = ACTIONS(4265), - [anon_sym_SQUOTE] = ACTIONS(4263), - [anon_sym_PLUS] = ACTIONS(4263), - [anon_sym_COMMA] = ACTIONS(4263), - [anon_sym_DASH] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4265), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_COLON] = ACTIONS(4263), - [anon_sym_SEMI] = ACTIONS(4263), - [anon_sym_EQ] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4263), - [anon_sym_LBRACK] = ACTIONS(4265), - [anon_sym_BSLASH] = ACTIONS(4265), - [anon_sym_RBRACK] = ACTIONS(4263), - [anon_sym_CARET] = ACTIONS(4265), - [anon_sym_BQUOTE] = ACTIONS(4263), + [sym__backslash_escape] = ACTIONS(4259), + [sym_entity_reference] = ACTIONS(4259), + [sym_numeric_character_reference] = ACTIONS(4259), + [anon_sym_LT] = ACTIONS(4261), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + [anon_sym_SQUOTE] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_COMMA] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_DOT] = ACTIONS(4261), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_QMARK] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_BSLASH] = ACTIONS(4261), + [anon_sym_RBRACK] = ACTIONS(4259), + [anon_sym_CARET] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4259), [anon_sym_LBRACE] = ACTIONS(4185), - [anon_sym_PIPE] = ACTIONS(4263), - [anon_sym_TILDE] = ACTIONS(4263), - [anon_sym_LPAREN] = ACTIONS(4263), - [anon_sym_RPAREN] = ACTIONS(4263), - [sym__newline_token] = ACTIONS(4263), - [aux_sym_insert_token1] = ACTIONS(4263), - [aux_sym_delete_token1] = ACTIONS(4263), - [aux_sym_highlight_token1] = ACTIONS(4263), - [aux_sym_edit_comment_token1] = ACTIONS(4263), - [anon_sym_CARET_LBRACK] = ACTIONS(4263), - [anon_sym_LBRACK_CARET] = ACTIONS(4263), - [sym_uri_autolink] = ACTIONS(4263), - [sym_email_autolink] = ACTIONS(4263), - [sym__whitespace_ge_2] = ACTIONS(4263), - [aux_sym__whitespace_token1] = ACTIONS(4265), - [sym__word_no_digit] = ACTIONS(4263), - [sym__digits] = ACTIONS(4263), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), - [sym__code_span_start] = ACTIONS(4263), - [sym__emphasis_open_star] = ACTIONS(4263), - [sym__emphasis_open_underscore] = ACTIONS(4263), - [sym__strikeout_open] = ACTIONS(4263), - [sym__latex_span_start] = ACTIONS(4263), - [sym__single_quote_open] = ACTIONS(4263), - [sym__double_quote_open] = ACTIONS(4263), - [sym__superscript_open] = ACTIONS(4263), - [sym__subscript_open] = ACTIONS(4263), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), - [sym__cite_author_in_text] = ACTIONS(4263), - [sym__cite_suppress_author] = ACTIONS(4263), - [sym__shortcode_open_escaped] = ACTIONS(4263), - [sym__shortcode_open] = ACTIONS(4263), - [sym__unclosed_span] = ACTIONS(4263), - [sym__strong_emphasis_open_star] = ACTIONS(4263), - [sym__strong_emphasis_open_underscore] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym_RPAREN] = ACTIONS(4259), + [sym__newline_token] = ACTIONS(4259), + [aux_sym_insert_token1] = ACTIONS(4259), + [aux_sym_delete_token1] = ACTIONS(4259), + [aux_sym_highlight_token1] = ACTIONS(4259), + [aux_sym_edit_comment_token1] = ACTIONS(4259), + [anon_sym_CARET_LBRACK] = ACTIONS(4259), + [anon_sym_LBRACK_CARET] = ACTIONS(4259), + [sym_uri_autolink] = ACTIONS(4259), + [sym_email_autolink] = ACTIONS(4259), + [sym__whitespace_ge_2] = ACTIONS(4259), + [aux_sym__whitespace_token1] = ACTIONS(4261), + [sym__word_no_digit] = ACTIONS(4259), + [sym__digits] = ACTIONS(4259), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4259), + [sym__code_span_start] = ACTIONS(4259), + [sym__emphasis_open_star] = ACTIONS(4259), + [sym__emphasis_open_underscore] = ACTIONS(4259), + [sym__strikeout_open] = ACTIONS(4259), + [sym__latex_span_start] = ACTIONS(4259), + [sym__single_quote_open] = ACTIONS(4259), + [sym__double_quote_open] = ACTIONS(4259), + [sym__superscript_open] = ACTIONS(4259), + [sym__subscript_open] = ACTIONS(4259), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4259), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4259), + [sym__cite_author_in_text] = ACTIONS(4259), + [sym__cite_suppress_author] = ACTIONS(4259), + [sym__shortcode_open_escaped] = ACTIONS(4259), + [sym__shortcode_open] = ACTIONS(4259), + [sym__unclosed_span] = ACTIONS(4259), + [sym__strong_emphasis_open_star] = ACTIONS(4259), + [sym__strong_emphasis_open_underscore] = ACTIONS(4259), }, [STATE(731)] = { [sym__qmd_attribute] = STATE(1327), [sym_raw_attribute] = STATE(1327), [sym_commonmark_attribute] = STATE(1327), [sym_language_attribute] = STATE(1327), - [sym__backslash_escape] = ACTIONS(4271), - [sym_entity_reference] = ACTIONS(4271), - [sym_numeric_character_reference] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4273), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_POUND] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4273), - [anon_sym_SQUOTE] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4273), - [anon_sym_SLASH] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_EQ] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(4271), - [anon_sym_LBRACK] = ACTIONS(4273), - [anon_sym_BSLASH] = ACTIONS(4273), - [anon_sym_RBRACK] = ACTIONS(4271), - [anon_sym_CARET] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4271), + [sym__backslash_escape] = ACTIONS(4267), + [sym_entity_reference] = ACTIONS(4267), + [sym_numeric_character_reference] = ACTIONS(4267), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_DQUOTE] = ACTIONS(4267), + [anon_sym_POUND] = ACTIONS(4267), + [anon_sym_DOLLAR] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_SQUOTE] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_COMMA] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4269), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_COLON] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_QMARK] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_BSLASH] = ACTIONS(4269), + [anon_sym_RBRACK] = ACTIONS(4267), + [anon_sym_CARET] = ACTIONS(4269), + [anon_sym_BQUOTE] = ACTIONS(4267), [anon_sym_LBRACE] = ACTIONS(4185), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_TILDE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [sym__newline_token] = ACTIONS(4271), - [aux_sym_insert_token1] = ACTIONS(4271), - [aux_sym_delete_token1] = ACTIONS(4271), - [aux_sym_highlight_token1] = ACTIONS(4271), - [aux_sym_edit_comment_token1] = ACTIONS(4271), - [anon_sym_CARET_LBRACK] = ACTIONS(4271), - [anon_sym_LBRACK_CARET] = ACTIONS(4271), - [sym_uri_autolink] = ACTIONS(4271), - [sym_email_autolink] = ACTIONS(4271), - [sym__whitespace_ge_2] = ACTIONS(4271), - [aux_sym__whitespace_token1] = ACTIONS(4273), - [sym__word_no_digit] = ACTIONS(4271), - [sym__digits] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4273), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), - [sym__code_span_start] = ACTIONS(4271), - [sym__emphasis_open_star] = ACTIONS(4271), - [sym__emphasis_open_underscore] = ACTIONS(4271), - [sym__strikeout_open] = ACTIONS(4271), - [sym__latex_span_start] = ACTIONS(4271), - [sym__single_quote_open] = ACTIONS(4271), - [sym__double_quote_open] = ACTIONS(4271), - [sym__superscript_open] = ACTIONS(4271), - [sym__subscript_open] = ACTIONS(4271), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), - [sym__cite_author_in_text] = ACTIONS(4271), - [sym__cite_suppress_author] = ACTIONS(4271), - [sym__shortcode_open_escaped] = ACTIONS(4271), - [sym__shortcode_open] = ACTIONS(4271), - [sym__unclosed_span] = ACTIONS(4271), - [sym__strong_emphasis_open_star] = ACTIONS(4271), - [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4267), + [anon_sym_TILDE] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_RPAREN] = ACTIONS(4267), + [sym__newline_token] = ACTIONS(4267), + [aux_sym_insert_token1] = ACTIONS(4267), + [aux_sym_delete_token1] = ACTIONS(4267), + [aux_sym_highlight_token1] = ACTIONS(4267), + [aux_sym_edit_comment_token1] = ACTIONS(4267), + [anon_sym_CARET_LBRACK] = ACTIONS(4267), + [anon_sym_LBRACK_CARET] = ACTIONS(4267), + [sym_uri_autolink] = ACTIONS(4267), + [sym_email_autolink] = ACTIONS(4267), + [sym__whitespace_ge_2] = ACTIONS(4267), + [aux_sym__whitespace_token1] = ACTIONS(4269), + [sym__word_no_digit] = ACTIONS(4267), + [sym__digits] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), + [sym__code_span_start] = ACTIONS(4267), + [sym__emphasis_open_star] = ACTIONS(4267), + [sym__emphasis_open_underscore] = ACTIONS(4267), + [sym__strikeout_open] = ACTIONS(4267), + [sym__latex_span_start] = ACTIONS(4267), + [sym__single_quote_open] = ACTIONS(4267), + [sym__double_quote_open] = ACTIONS(4267), + [sym__superscript_open] = ACTIONS(4267), + [sym__subscript_open] = ACTIONS(4267), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), + [sym__cite_author_in_text] = ACTIONS(4267), + [sym__cite_suppress_author] = ACTIONS(4267), + [sym__shortcode_open_escaped] = ACTIONS(4267), + [sym__shortcode_open] = ACTIONS(4267), + [sym__unclosed_span] = ACTIONS(4267), + [sym__strong_emphasis_open_star] = ACTIONS(4267), + [sym__strong_emphasis_open_underscore] = ACTIONS(4267), }, [STATE(732)] = { [sym__qmd_attribute] = STATE(1329), [sym_raw_attribute] = STATE(1329), [sym_commonmark_attribute] = STATE(1329), [sym_language_attribute] = STATE(1329), + [sym__backslash_escape] = ACTIONS(4275), + [sym_entity_reference] = ACTIONS(4275), + [sym_numeric_character_reference] = ACTIONS(4275), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + [anon_sym_SQUOTE] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_COMMA] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4277), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_COLON] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_QMARK] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_BSLASH] = ACTIONS(4277), + [anon_sym_RBRACK] = ACTIONS(4275), + [anon_sym_CARET] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PIPE] = ACTIONS(4275), + [anon_sym_TILDE] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4275), + [anon_sym_RPAREN] = ACTIONS(4275), + [sym__newline_token] = ACTIONS(4275), + [aux_sym_insert_token1] = ACTIONS(4275), + [aux_sym_delete_token1] = ACTIONS(4275), + [aux_sym_highlight_token1] = ACTIONS(4275), + [aux_sym_edit_comment_token1] = ACTIONS(4275), + [anon_sym_CARET_LBRACK] = ACTIONS(4275), + [anon_sym_LBRACK_CARET] = ACTIONS(4275), + [sym_uri_autolink] = ACTIONS(4275), + [sym_email_autolink] = ACTIONS(4275), + [sym__whitespace_ge_2] = ACTIONS(4275), + [aux_sym__whitespace_token1] = ACTIONS(4277), + [sym__word_no_digit] = ACTIONS(4275), + [sym__digits] = ACTIONS(4275), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), + [sym__code_span_start] = ACTIONS(4275), + [sym__emphasis_open_star] = ACTIONS(4275), + [sym__emphasis_open_underscore] = ACTIONS(4275), + [sym__strikeout_open] = ACTIONS(4275), + [sym__latex_span_start] = ACTIONS(4275), + [sym__single_quote_open] = ACTIONS(4275), + [sym__double_quote_open] = ACTIONS(4275), + [sym__superscript_open] = ACTIONS(4275), + [sym__subscript_open] = ACTIONS(4275), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), + [sym__cite_author_in_text] = ACTIONS(4275), + [sym__cite_suppress_author] = ACTIONS(4275), + [sym__shortcode_open_escaped] = ACTIONS(4275), + [sym__shortcode_open] = ACTIONS(4275), + [sym__unclosed_span] = ACTIONS(4275), + [sym__strong_emphasis_open_star] = ACTIONS(4275), + [sym__strong_emphasis_open_underscore] = ACTIONS(4275), + }, + [STATE(733)] = { + [sym__qmd_attribute] = STATE(1331), + [sym_raw_attribute] = STATE(1331), + [sym_commonmark_attribute] = STATE(1331), + [sym_language_attribute] = STATE(1331), [sym__backslash_escape] = ACTIONS(4287), [sym_entity_reference] = ACTIONS(4287), [sym_numeric_character_reference] = ACTIONS(4287), @@ -97311,82 +97381,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4287), [sym__strong_emphasis_open_underscore] = ACTIONS(4287), }, - [STATE(733)] = { - [sym__qmd_attribute] = STATE(1331), - [sym_raw_attribute] = STATE(1331), - [sym_commonmark_attribute] = STATE(1331), - [sym_language_attribute] = STATE(1331), - [sym__backslash_escape] = ACTIONS(4291), - [sym_entity_reference] = ACTIONS(4291), - [sym_numeric_character_reference] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4291), - [anon_sym_POUND] = ACTIONS(4291), - [anon_sym_DOLLAR] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_AMP] = ACTIONS(4293), - [anon_sym_SQUOTE] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4293), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_BSLASH] = ACTIONS(4293), - [anon_sym_RBRACK] = ACTIONS(4291), - [anon_sym_CARET] = ACTIONS(4293), - [anon_sym_BQUOTE] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4185), - [anon_sym_PIPE] = ACTIONS(4291), - [anon_sym_TILDE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [sym__newline_token] = ACTIONS(4291), - [aux_sym_insert_token1] = ACTIONS(4291), - [aux_sym_delete_token1] = ACTIONS(4291), - [aux_sym_highlight_token1] = ACTIONS(4291), - [aux_sym_edit_comment_token1] = ACTIONS(4291), - [anon_sym_CARET_LBRACK] = ACTIONS(4291), - [anon_sym_LBRACK_CARET] = ACTIONS(4291), - [sym_uri_autolink] = ACTIONS(4291), - [sym_email_autolink] = ACTIONS(4291), - [sym__whitespace_ge_2] = ACTIONS(4291), - [aux_sym__whitespace_token1] = ACTIONS(4293), - [sym__word_no_digit] = ACTIONS(4291), - [sym__digits] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), - [sym__code_span_start] = ACTIONS(4291), - [sym__emphasis_open_star] = ACTIONS(4291), - [sym__emphasis_open_underscore] = ACTIONS(4291), - [sym__strikeout_open] = ACTIONS(4291), - [sym__latex_span_start] = ACTIONS(4291), - [sym__single_quote_open] = ACTIONS(4291), - [sym__double_quote_open] = ACTIONS(4291), - [sym__superscript_open] = ACTIONS(4291), - [sym__subscript_open] = ACTIONS(4291), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4291), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4291), - [sym__cite_author_in_text] = ACTIONS(4291), - [sym__cite_suppress_author] = ACTIONS(4291), - [sym__shortcode_open_escaped] = ACTIONS(4291), - [sym__shortcode_open] = ACTIONS(4291), - [sym__unclosed_span] = ACTIONS(4291), - [sym__strong_emphasis_open_star] = ACTIONS(4291), - [sym__strong_emphasis_open_underscore] = ACTIONS(4291), - }, [STATE(734)] = { - [sym__qmd_attribute] = STATE(1178), - [sym_raw_attribute] = STATE(1178), - [sym_commonmark_attribute] = STATE(1178), - [sym_language_attribute] = STATE(1178), + [sym__qmd_attribute] = STATE(1173), + [sym_raw_attribute] = STATE(1173), + [sym_commonmark_attribute] = STATE(1173), + [sym_language_attribute] = STATE(1173), [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -97454,10 +97453,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, [STATE(735)] = { - [sym__qmd_attribute] = STATE(1179), - [sym_raw_attribute] = STATE(1179), - [sym_commonmark_attribute] = STATE(1179), - [sym_language_attribute] = STATE(1179), + [sym__qmd_attribute] = STATE(1174), + [sym_raw_attribute] = STATE(1174), + [sym_commonmark_attribute] = STATE(1174), + [sym_language_attribute] = STATE(1174), [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -97529,148 +97528,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_attribute] = STATE(1339), [sym_commonmark_attribute] = STATE(1339), [sym_language_attribute] = STATE(1339), - [sym__backslash_escape] = ACTIONS(4249), - [sym_entity_reference] = ACTIONS(4249), - [sym_numeric_character_reference] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(4251), - [anon_sym_GT] = ACTIONS(4249), - [anon_sym_BANG] = ACTIONS(4249), - [anon_sym_DQUOTE] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(4249), - [anon_sym_PERCENT] = ACTIONS(4249), - [anon_sym_AMP] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4249), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_COMMA] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4251), - [anon_sym_DOT] = ACTIONS(4251), - [anon_sym_SLASH] = ACTIONS(4249), - [anon_sym_COLON] = ACTIONS(4249), - [anon_sym_SEMI] = ACTIONS(4249), - [anon_sym_EQ] = ACTIONS(4249), - [anon_sym_QMARK] = ACTIONS(4249), - [anon_sym_LBRACK] = ACTIONS(4251), - [anon_sym_BSLASH] = ACTIONS(4251), - [anon_sym_RBRACK] = ACTIONS(4249), - [anon_sym_CARET] = ACTIONS(4251), - [anon_sym_BQUOTE] = ACTIONS(4249), + [sym__backslash_escape] = ACTIONS(4291), + [sym_entity_reference] = ACTIONS(4291), + [sym_numeric_character_reference] = ACTIONS(4291), + [anon_sym_LT] = ACTIONS(4293), + [anon_sym_GT] = ACTIONS(4291), + [anon_sym_BANG] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4291), + [anon_sym_POUND] = ACTIONS(4291), + [anon_sym_DOLLAR] = ACTIONS(4291), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_PLUS] = ACTIONS(4291), + [anon_sym_COMMA] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_DOT] = ACTIONS(4293), + [anon_sym_SLASH] = ACTIONS(4291), + [anon_sym_COLON] = ACTIONS(4291), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym_EQ] = ACTIONS(4291), + [anon_sym_QMARK] = ACTIONS(4291), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_BSLASH] = ACTIONS(4293), + [anon_sym_RBRACK] = ACTIONS(4291), + [anon_sym_CARET] = ACTIONS(4293), + [anon_sym_BQUOTE] = ACTIONS(4291), [anon_sym_LBRACE] = ACTIONS(4185), - [anon_sym_PIPE] = ACTIONS(4249), - [anon_sym_TILDE] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4249), - [anon_sym_RPAREN] = ACTIONS(4249), - [sym__newline_token] = ACTIONS(4249), - [aux_sym_insert_token1] = ACTIONS(4249), - [aux_sym_delete_token1] = ACTIONS(4249), - [aux_sym_highlight_token1] = ACTIONS(4249), - [aux_sym_edit_comment_token1] = ACTIONS(4249), - [anon_sym_CARET_LBRACK] = ACTIONS(4249), - [anon_sym_LBRACK_CARET] = ACTIONS(4249), - [sym_uri_autolink] = ACTIONS(4249), - [sym_email_autolink] = ACTIONS(4249), - [sym__whitespace_ge_2] = ACTIONS(4249), - [aux_sym__whitespace_token1] = ACTIONS(4251), - [sym__word_no_digit] = ACTIONS(4249), - [sym__digits] = ACTIONS(4249), - [anon_sym_DASH_DASH] = ACTIONS(4251), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4249), - [sym__code_span_start] = ACTIONS(4249), - [sym__emphasis_open_star] = ACTIONS(4249), - [sym__emphasis_open_underscore] = ACTIONS(4249), - [sym__strikeout_open] = ACTIONS(4249), - [sym__latex_span_start] = ACTIONS(4249), - [sym__single_quote_open] = ACTIONS(4249), - [sym__double_quote_open] = ACTIONS(4249), - [sym__superscript_open] = ACTIONS(4249), - [sym__subscript_open] = ACTIONS(4249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4249), - [sym__cite_author_in_text] = ACTIONS(4249), - [sym__cite_suppress_author] = ACTIONS(4249), - [sym__shortcode_open_escaped] = ACTIONS(4249), - [sym__shortcode_open] = ACTIONS(4249), - [sym__unclosed_span] = ACTIONS(4249), - [sym__strong_emphasis_open_star] = ACTIONS(4249), - [sym__strong_emphasis_open_underscore] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_RPAREN] = ACTIONS(4291), + [sym__newline_token] = ACTIONS(4291), + [aux_sym_insert_token1] = ACTIONS(4291), + [aux_sym_delete_token1] = ACTIONS(4291), + [aux_sym_highlight_token1] = ACTIONS(4291), + [aux_sym_edit_comment_token1] = ACTIONS(4291), + [anon_sym_CARET_LBRACK] = ACTIONS(4291), + [anon_sym_LBRACK_CARET] = ACTIONS(4291), + [sym_uri_autolink] = ACTIONS(4291), + [sym_email_autolink] = ACTIONS(4291), + [sym__whitespace_ge_2] = ACTIONS(4291), + [aux_sym__whitespace_token1] = ACTIONS(4293), + [sym__word_no_digit] = ACTIONS(4291), + [sym__digits] = ACTIONS(4291), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), + [sym__code_span_start] = ACTIONS(4291), + [sym__emphasis_open_star] = ACTIONS(4291), + [sym__emphasis_open_underscore] = ACTIONS(4291), + [sym__strikeout_open] = ACTIONS(4291), + [sym__latex_span_start] = ACTIONS(4291), + [sym__single_quote_open] = ACTIONS(4291), + [sym__double_quote_open] = ACTIONS(4291), + [sym__superscript_open] = ACTIONS(4291), + [sym__subscript_open] = ACTIONS(4291), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4291), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4291), + [sym__cite_author_in_text] = ACTIONS(4291), + [sym__cite_suppress_author] = ACTIONS(4291), + [sym__shortcode_open_escaped] = ACTIONS(4291), + [sym__shortcode_open] = ACTIONS(4291), + [sym__unclosed_span] = ACTIONS(4291), + [sym__strong_emphasis_open_star] = ACTIONS(4291), + [sym__strong_emphasis_open_underscore] = ACTIONS(4291), }, [STATE(737)] = { [sym__qmd_attribute] = STATE(1343), [sym_raw_attribute] = STATE(1343), [sym_commonmark_attribute] = STATE(1343), [sym_language_attribute] = STATE(1343), - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_RBRACK] = ACTIONS(4275), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_RBRACK] = ACTIONS(4271), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), [anon_sym_LBRACE] = ACTIONS(4185), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), }, [STATE(738)] = { - [sym__qmd_attribute] = STATE(1180), - [sym_raw_attribute] = STATE(1180), - [sym_commonmark_attribute] = STATE(1180), - [sym_language_attribute] = STATE(1180), + [sym__qmd_attribute] = STATE(1175), + [sym_raw_attribute] = STATE(1175), + [sym_commonmark_attribute] = STATE(1175), + [sym_language_attribute] = STATE(1175), [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -98306,10 +98305,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, [STATE(747)] = { - [sym__qmd_attribute] = STATE(1370), - [sym_raw_attribute] = STATE(1370), - [sym_commonmark_attribute] = STATE(1370), - [sym_language_attribute] = STATE(1370), + [sym__qmd_attribute] = STATE(1371), + [sym_raw_attribute] = STATE(1371), + [sym_commonmark_attribute] = STATE(1371), + [sym_language_attribute] = STATE(1371), [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -98377,152 +98376,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, [STATE(748)] = { + [sym__qmd_attribute] = STATE(1202), + [sym_raw_attribute] = STATE(1202), + [sym_commonmark_attribute] = STATE(1202), + [sym_language_attribute] = STATE(1202), + [sym__backslash_escape] = ACTIONS(4251), + [sym_entity_reference] = ACTIONS(4251), + [sym_numeric_character_reference] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_DQUOTE] = ACTIONS(4251), + [anon_sym_POUND] = ACTIONS(4251), + [anon_sym_DOLLAR] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_COMMA] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_COLON] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4251), + [anon_sym_QMARK] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_BSLASH] = ACTIONS(4253), + [anon_sym_CARET] = ACTIONS(4253), + [anon_sym_BQUOTE] = ACTIONS(4251), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4325), + [anon_sym_RPAREN] = ACTIONS(4251), + [sym__newline_token] = ACTIONS(4251), + [aux_sym_insert_token1] = ACTIONS(4251), + [aux_sym_delete_token1] = ACTIONS(4251), + [aux_sym_highlight_token1] = ACTIONS(4251), + [aux_sym_edit_comment_token1] = ACTIONS(4251), + [anon_sym_CARET_LBRACK] = ACTIONS(4251), + [anon_sym_LBRACK_CARET] = ACTIONS(4251), + [sym_uri_autolink] = ACTIONS(4251), + [sym_email_autolink] = ACTIONS(4251), + [sym__whitespace_ge_2] = ACTIONS(4251), + [aux_sym__whitespace_token1] = ACTIONS(4253), + [sym__word_no_digit] = ACTIONS(4251), + [sym__digits] = ACTIONS(4251), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4251), + [sym__code_span_start] = ACTIONS(4251), + [sym__emphasis_open_star] = ACTIONS(4251), + [sym__emphasis_open_underscore] = ACTIONS(4251), + [sym__strikeout_open] = ACTIONS(4251), + [sym__latex_span_start] = ACTIONS(4251), + [sym__single_quote_open] = ACTIONS(4251), + [sym__double_quote_open] = ACTIONS(4251), + [sym__superscript_open] = ACTIONS(4251), + [sym__subscript_open] = ACTIONS(4251), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4251), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4251), + [sym__cite_author_in_text] = ACTIONS(4251), + [sym__cite_suppress_author] = ACTIONS(4251), + [sym__shortcode_open_escaped] = ACTIONS(4251), + [sym__shortcode_open] = ACTIONS(4251), + [sym__unclosed_span] = ACTIONS(4251), + [sym__strong_emphasis_open_star] = ACTIONS(4251), + [sym__strong_emphasis_open_underscore] = ACTIONS(4251), + [sym__strong_emphasis_close_underscore] = ACTIONS(4251), + }, + [STATE(749)] = { [sym__qmd_attribute] = STATE(1203), [sym_raw_attribute] = STATE(1203), [sym_commonmark_attribute] = STATE(1203), [sym_language_attribute] = STATE(1203), - [sym__backslash_escape] = ACTIONS(4257), - [sym_entity_reference] = ACTIONS(4257), - [sym_numeric_character_reference] = ACTIONS(4257), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4257), - [anon_sym_BANG] = ACTIONS(4257), - [anon_sym_DQUOTE] = ACTIONS(4257), - [anon_sym_POUND] = ACTIONS(4257), - [anon_sym_DOLLAR] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4257), - [anon_sym_AMP] = ACTIONS(4259), - [anon_sym_SQUOTE] = ACTIONS(4257), - [anon_sym_PLUS] = ACTIONS(4257), - [anon_sym_COMMA] = ACTIONS(4257), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_DOT] = ACTIONS(4259), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_COLON] = ACTIONS(4257), - [anon_sym_SEMI] = ACTIONS(4257), - [anon_sym_EQ] = ACTIONS(4257), - [anon_sym_QMARK] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_BSLASH] = ACTIONS(4259), - [anon_sym_CARET] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4257), - [anon_sym_LBRACE] = ACTIONS(4255), - [anon_sym_PIPE] = ACTIONS(4257), - [anon_sym_TILDE] = ACTIONS(4257), - [anon_sym_LPAREN] = ACTIONS(4325), - [anon_sym_RPAREN] = ACTIONS(4257), - [sym__newline_token] = ACTIONS(4257), - [aux_sym_insert_token1] = ACTIONS(4257), - [aux_sym_delete_token1] = ACTIONS(4257), - [aux_sym_highlight_token1] = ACTIONS(4257), - [aux_sym_edit_comment_token1] = ACTIONS(4257), - [anon_sym_CARET_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_CARET] = ACTIONS(4257), - [sym_uri_autolink] = ACTIONS(4257), - [sym_email_autolink] = ACTIONS(4257), - [sym__whitespace_ge_2] = ACTIONS(4257), - [aux_sym__whitespace_token1] = ACTIONS(4259), - [sym__word_no_digit] = ACTIONS(4257), - [sym__digits] = ACTIONS(4257), - [anon_sym_DASH_DASH] = ACTIONS(4259), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4257), - [sym__code_span_start] = ACTIONS(4257), - [sym__emphasis_open_star] = ACTIONS(4257), - [sym__emphasis_open_underscore] = ACTIONS(4257), - [sym__strikeout_open] = ACTIONS(4257), - [sym__latex_span_start] = ACTIONS(4257), - [sym__single_quote_open] = ACTIONS(4257), - [sym__double_quote_open] = ACTIONS(4257), - [sym__superscript_open] = ACTIONS(4257), - [sym__subscript_open] = ACTIONS(4257), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4257), - [sym__cite_author_in_text] = ACTIONS(4257), - [sym__cite_suppress_author] = ACTIONS(4257), - [sym__shortcode_open_escaped] = ACTIONS(4257), - [sym__shortcode_open] = ACTIONS(4257), - [sym__unclosed_span] = ACTIONS(4257), - [sym__strong_emphasis_open_star] = ACTIONS(4257), - [sym__strong_emphasis_open_underscore] = ACTIONS(4257), - [sym__strong_emphasis_close_underscore] = ACTIONS(4257), - }, - [STATE(749)] = { - [sym__qmd_attribute] = STATE(1204), - [sym_raw_attribute] = STATE(1204), - [sym_commonmark_attribute] = STATE(1204), - [sym_language_attribute] = STATE(1204), - [sym__backslash_escape] = ACTIONS(4267), - [sym_entity_reference] = ACTIONS(4267), - [sym_numeric_character_reference] = ACTIONS(4267), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4267), - [anon_sym_BANG] = ACTIONS(4267), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_POUND] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_PERCENT] = ACTIONS(4267), - [anon_sym_AMP] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4267), - [anon_sym_PLUS] = ACTIONS(4267), - [anon_sym_COMMA] = ACTIONS(4267), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4267), - [anon_sym_COLON] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4267), - [anon_sym_EQ] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4267), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_BSLASH] = ACTIONS(4269), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4267), - [anon_sym_LBRACE] = ACTIONS(4255), - [anon_sym_PIPE] = ACTIONS(4267), - [anon_sym_TILDE] = ACTIONS(4267), - [anon_sym_LPAREN] = ACTIONS(4267), - [anon_sym_RPAREN] = ACTIONS(4267), - [sym__newline_token] = ACTIONS(4267), - [aux_sym_insert_token1] = ACTIONS(4267), - [aux_sym_delete_token1] = ACTIONS(4267), - [aux_sym_highlight_token1] = ACTIONS(4267), - [aux_sym_edit_comment_token1] = ACTIONS(4267), - [anon_sym_CARET_LBRACK] = ACTIONS(4267), - [anon_sym_LBRACK_CARET] = ACTIONS(4267), - [sym_uri_autolink] = ACTIONS(4267), - [sym_email_autolink] = ACTIONS(4267), - [sym__whitespace_ge_2] = ACTIONS(4267), - [aux_sym__whitespace_token1] = ACTIONS(4269), - [sym__word_no_digit] = ACTIONS(4267), - [sym__digits] = ACTIONS(4267), - [anon_sym_DASH_DASH] = ACTIONS(4269), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), - [sym__code_span_start] = ACTIONS(4267), - [sym__emphasis_open_star] = ACTIONS(4267), - [sym__emphasis_open_underscore] = ACTIONS(4267), - [sym__strikeout_open] = ACTIONS(4267), - [sym__latex_span_start] = ACTIONS(4267), - [sym__single_quote_open] = ACTIONS(4267), - [sym__double_quote_open] = ACTIONS(4267), - [sym__superscript_open] = ACTIONS(4267), - [sym__subscript_open] = ACTIONS(4267), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), - [sym__cite_author_in_text] = ACTIONS(4267), - [sym__cite_suppress_author] = ACTIONS(4267), - [sym__shortcode_open_escaped] = ACTIONS(4267), - [sym__shortcode_open] = ACTIONS(4267), - [sym__unclosed_span] = ACTIONS(4267), - [sym__strong_emphasis_open_star] = ACTIONS(4267), - [sym__strong_emphasis_open_underscore] = ACTIONS(4267), - [sym__strong_emphasis_close_underscore] = ACTIONS(4267), + [sym__backslash_escape] = ACTIONS(4263), + [sym_entity_reference] = ACTIONS(4263), + [sym_numeric_character_reference] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4265), + [anon_sym_GT] = ACTIONS(4263), + [anon_sym_BANG] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(4263), + [anon_sym_DOLLAR] = ACTIONS(4263), + [anon_sym_PERCENT] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4265), + [anon_sym_SQUOTE] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_COMMA] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_COLON] = ACTIONS(4263), + [anon_sym_SEMI] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_BSLASH] = ACTIONS(4265), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_BQUOTE] = ACTIONS(4263), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4263), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym_RPAREN] = ACTIONS(4263), + [sym__newline_token] = ACTIONS(4263), + [aux_sym_insert_token1] = ACTIONS(4263), + [aux_sym_delete_token1] = ACTIONS(4263), + [aux_sym_highlight_token1] = ACTIONS(4263), + [aux_sym_edit_comment_token1] = ACTIONS(4263), + [anon_sym_CARET_LBRACK] = ACTIONS(4263), + [anon_sym_LBRACK_CARET] = ACTIONS(4263), + [sym_uri_autolink] = ACTIONS(4263), + [sym_email_autolink] = ACTIONS(4263), + [sym__whitespace_ge_2] = ACTIONS(4263), + [aux_sym__whitespace_token1] = ACTIONS(4265), + [sym__word_no_digit] = ACTIONS(4263), + [sym__digits] = ACTIONS(4263), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), + [sym__code_span_start] = ACTIONS(4263), + [sym__emphasis_open_star] = ACTIONS(4263), + [sym__emphasis_open_underscore] = ACTIONS(4263), + [sym__strikeout_open] = ACTIONS(4263), + [sym__latex_span_start] = ACTIONS(4263), + [sym__single_quote_open] = ACTIONS(4263), + [sym__double_quote_open] = ACTIONS(4263), + [sym__superscript_open] = ACTIONS(4263), + [sym__subscript_open] = ACTIONS(4263), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), + [sym__cite_author_in_text] = ACTIONS(4263), + [sym__cite_suppress_author] = ACTIONS(4263), + [sym__shortcode_open_escaped] = ACTIONS(4263), + [sym__shortcode_open] = ACTIONS(4263), + [sym__unclosed_span] = ACTIONS(4263), + [sym__strong_emphasis_open_star] = ACTIONS(4263), + [sym__strong_emphasis_open_underscore] = ACTIONS(4263), + [sym__strong_emphasis_close_underscore] = ACTIONS(4263), }, [STATE(750)] = { - [sym__qmd_attribute] = STATE(1374), - [sym_raw_attribute] = STATE(1374), - [sym_commonmark_attribute] = STATE(1374), - [sym_language_attribute] = STATE(1374), + [sym__qmd_attribute] = STATE(1375), + [sym_raw_attribute] = STATE(1375), + [sym_commonmark_attribute] = STATE(1375), + [sym_language_attribute] = STATE(1375), [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -98590,10 +98589,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, [STATE(751)] = { - [sym__qmd_attribute] = STATE(1375), - [sym_raw_attribute] = STATE(1375), - [sym_commonmark_attribute] = STATE(1375), - [sym_language_attribute] = STATE(1375), + [sym__qmd_attribute] = STATE(1377), + [sym_raw_attribute] = STATE(1377), + [sym_commonmark_attribute] = STATE(1377), + [sym_language_attribute] = STATE(1377), [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -98661,10 +98660,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, [STATE(752)] = { - [sym__qmd_attribute] = STATE(1377), - [sym_raw_attribute] = STATE(1377), - [sym_commonmark_attribute] = STATE(1377), - [sym_language_attribute] = STATE(1377), + [sym__qmd_attribute] = STATE(1379), + [sym_raw_attribute] = STATE(1379), + [sym_commonmark_attribute] = STATE(1379), + [sym_language_attribute] = STATE(1379), [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -98732,10 +98731,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, [STATE(753)] = { - [sym__qmd_attribute] = STATE(1379), - [sym_raw_attribute] = STATE(1379), - [sym_commonmark_attribute] = STATE(1379), - [sym_language_attribute] = STATE(1379), + [sym__qmd_attribute] = STATE(1380), + [sym_raw_attribute] = STATE(1380), + [sym_commonmark_attribute] = STATE(1380), + [sym_language_attribute] = STATE(1380), [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -98803,10 +98802,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, [STATE(754)] = { - [sym__qmd_attribute] = STATE(1381), - [sym_raw_attribute] = STATE(1381), - [sym_commonmark_attribute] = STATE(1381), - [sym_language_attribute] = STATE(1381), + [sym__qmd_attribute] = STATE(1382), + [sym_raw_attribute] = STATE(1382), + [sym_commonmark_attribute] = STATE(1382), + [sym_language_attribute] = STATE(1382), [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -98903,7 +98902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4285), [anon_sym_CARET] = ACTIONS(4285), [anon_sym_BQUOTE] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4249), [anon_sym_PIPE] = ACTIONS(4283), [anon_sym_TILDE] = ACTIONS(4283), [anon_sym_LPAREN] = ACTIONS(4283), @@ -98945,10 +98944,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_underscore] = ACTIONS(4283), }, [STATE(756)] = { - [sym__qmd_attribute] = STATE(1382), - [sym_raw_attribute] = STATE(1382), - [sym_commonmark_attribute] = STATE(1382), - [sym_language_attribute] = STATE(1382), + [sym__qmd_attribute] = STATE(1383), + [sym_raw_attribute] = STATE(1383), + [sym_commonmark_attribute] = STATE(1383), + [sym_language_attribute] = STATE(1383), [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -99045,7 +99044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4183), [anon_sym_CARET] = ACTIONS(4183), [anon_sym_BQUOTE] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4249), [anon_sym_PIPE] = ACTIONS(4181), [anon_sym_TILDE] = ACTIONS(4181), [anon_sym_LPAREN] = ACTIONS(4181), @@ -99091,219 +99090,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_attribute] = STATE(1221), [sym_commonmark_attribute] = STATE(1221), [sym_language_attribute] = STATE(1221), - [sym__backslash_escape] = ACTIONS(4263), - [sym_entity_reference] = ACTIONS(4263), - [sym_numeric_character_reference] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(4265), - [anon_sym_GT] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4263), - [anon_sym_POUND] = ACTIONS(4263), - [anon_sym_DOLLAR] = ACTIONS(4263), - [anon_sym_PERCENT] = ACTIONS(4263), - [anon_sym_AMP] = ACTIONS(4265), - [anon_sym_SQUOTE] = ACTIONS(4263), - [anon_sym_PLUS] = ACTIONS(4263), - [anon_sym_COMMA] = ACTIONS(4263), - [anon_sym_DASH] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4265), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_COLON] = ACTIONS(4263), - [anon_sym_SEMI] = ACTIONS(4263), - [anon_sym_EQ] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4263), - [anon_sym_LBRACK] = ACTIONS(4265), - [anon_sym_BSLASH] = ACTIONS(4265), - [anon_sym_CARET] = ACTIONS(4265), - [anon_sym_BQUOTE] = ACTIONS(4263), - [anon_sym_LBRACE] = ACTIONS(4255), - [anon_sym_PIPE] = ACTIONS(4263), - [anon_sym_TILDE] = ACTIONS(4263), - [anon_sym_LPAREN] = ACTIONS(4263), - [anon_sym_RPAREN] = ACTIONS(4263), - [sym__newline_token] = ACTIONS(4263), - [aux_sym_insert_token1] = ACTIONS(4263), - [aux_sym_delete_token1] = ACTIONS(4263), - [aux_sym_highlight_token1] = ACTIONS(4263), - [aux_sym_edit_comment_token1] = ACTIONS(4263), - [anon_sym_CARET_LBRACK] = ACTIONS(4263), - [anon_sym_LBRACK_CARET] = ACTIONS(4263), - [sym_uri_autolink] = ACTIONS(4263), - [sym_email_autolink] = ACTIONS(4263), - [sym__whitespace_ge_2] = ACTIONS(4263), - [aux_sym__whitespace_token1] = ACTIONS(4265), - [sym__word_no_digit] = ACTIONS(4263), - [sym__digits] = ACTIONS(4263), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), - [sym__code_span_start] = ACTIONS(4263), - [sym__emphasis_open_star] = ACTIONS(4263), - [sym__emphasis_open_underscore] = ACTIONS(4263), - [sym__strikeout_open] = ACTIONS(4263), - [sym__latex_span_start] = ACTIONS(4263), - [sym__single_quote_open] = ACTIONS(4263), - [sym__double_quote_open] = ACTIONS(4263), - [sym__superscript_open] = ACTIONS(4263), - [sym__subscript_open] = ACTIONS(4263), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), - [sym__cite_author_in_text] = ACTIONS(4263), - [sym__cite_suppress_author] = ACTIONS(4263), - [sym__shortcode_open_escaped] = ACTIONS(4263), - [sym__shortcode_open] = ACTIONS(4263), - [sym__unclosed_span] = ACTIONS(4263), - [sym__strong_emphasis_open_star] = ACTIONS(4263), - [sym__strong_emphasis_open_underscore] = ACTIONS(4263), - [sym__strong_emphasis_close_underscore] = ACTIONS(4263), + [sym__backslash_escape] = ACTIONS(4259), + [sym_entity_reference] = ACTIONS(4259), + [sym_numeric_character_reference] = ACTIONS(4259), + [anon_sym_LT] = ACTIONS(4261), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + [anon_sym_SQUOTE] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_COMMA] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_DOT] = ACTIONS(4261), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_QMARK] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_BSLASH] = ACTIONS(4261), + [anon_sym_CARET] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym_RPAREN] = ACTIONS(4259), + [sym__newline_token] = ACTIONS(4259), + [aux_sym_insert_token1] = ACTIONS(4259), + [aux_sym_delete_token1] = ACTIONS(4259), + [aux_sym_highlight_token1] = ACTIONS(4259), + [aux_sym_edit_comment_token1] = ACTIONS(4259), + [anon_sym_CARET_LBRACK] = ACTIONS(4259), + [anon_sym_LBRACK_CARET] = ACTIONS(4259), + [sym_uri_autolink] = ACTIONS(4259), + [sym_email_autolink] = ACTIONS(4259), + [sym__whitespace_ge_2] = ACTIONS(4259), + [aux_sym__whitespace_token1] = ACTIONS(4261), + [sym__word_no_digit] = ACTIONS(4259), + [sym__digits] = ACTIONS(4259), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4259), + [sym__code_span_start] = ACTIONS(4259), + [sym__emphasis_open_star] = ACTIONS(4259), + [sym__emphasis_open_underscore] = ACTIONS(4259), + [sym__strikeout_open] = ACTIONS(4259), + [sym__latex_span_start] = ACTIONS(4259), + [sym__single_quote_open] = ACTIONS(4259), + [sym__double_quote_open] = ACTIONS(4259), + [sym__superscript_open] = ACTIONS(4259), + [sym__subscript_open] = ACTIONS(4259), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4259), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4259), + [sym__cite_author_in_text] = ACTIONS(4259), + [sym__cite_suppress_author] = ACTIONS(4259), + [sym__shortcode_open_escaped] = ACTIONS(4259), + [sym__shortcode_open] = ACTIONS(4259), + [sym__unclosed_span] = ACTIONS(4259), + [sym__strong_emphasis_open_star] = ACTIONS(4259), + [sym__strong_emphasis_open_underscore] = ACTIONS(4259), + [sym__strong_emphasis_close_underscore] = ACTIONS(4259), }, [STATE(759)] = { - [sym__qmd_attribute] = STATE(1413), - [sym_raw_attribute] = STATE(1413), - [sym_commonmark_attribute] = STATE(1413), - [sym_language_attribute] = STATE(1413), - [sym__backslash_escape] = ACTIONS(4257), - [sym_entity_reference] = ACTIONS(4257), - [sym_numeric_character_reference] = ACTIONS(4257), - [anon_sym_LT] = ACTIONS(4259), - [anon_sym_GT] = ACTIONS(4257), - [anon_sym_BANG] = ACTIONS(4257), - [anon_sym_DQUOTE] = ACTIONS(4257), - [anon_sym_POUND] = ACTIONS(4257), - [anon_sym_DOLLAR] = ACTIONS(4257), - [anon_sym_PERCENT] = ACTIONS(4257), - [anon_sym_AMP] = ACTIONS(4259), - [anon_sym_SQUOTE] = ACTIONS(4257), - [anon_sym_PLUS] = ACTIONS(4257), - [anon_sym_COMMA] = ACTIONS(4257), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_DOT] = ACTIONS(4259), - [anon_sym_SLASH] = ACTIONS(4257), - [anon_sym_COLON] = ACTIONS(4257), - [anon_sym_SEMI] = ACTIONS(4257), - [anon_sym_EQ] = ACTIONS(4257), - [anon_sym_QMARK] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4259), - [anon_sym_BSLASH] = ACTIONS(4259), - [anon_sym_CARET] = ACTIONS(4259), - [anon_sym_BQUOTE] = ACTIONS(4257), + [sym__qmd_attribute] = STATE(1415), + [sym_raw_attribute] = STATE(1415), + [sym_commonmark_attribute] = STATE(1415), + [sym_language_attribute] = STATE(1415), + [sym__backslash_escape] = ACTIONS(4251), + [sym_entity_reference] = ACTIONS(4251), + [sym_numeric_character_reference] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(4253), + [anon_sym_GT] = ACTIONS(4251), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_DQUOTE] = ACTIONS(4251), + [anon_sym_POUND] = ACTIONS(4251), + [anon_sym_DOLLAR] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_COMMA] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_DOT] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_COLON] = ACTIONS(4251), + [anon_sym_SEMI] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4251), + [anon_sym_QMARK] = ACTIONS(4251), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_BSLASH] = ACTIONS(4253), + [anon_sym_CARET] = ACTIONS(4253), + [anon_sym_BQUOTE] = ACTIONS(4251), [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_PIPE] = ACTIONS(4257), - [anon_sym_TILDE] = ACTIONS(4257), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), [anon_sym_LPAREN] = ACTIONS(4327), - [anon_sym_RPAREN] = ACTIONS(4257), - [sym__newline_token] = ACTIONS(4257), - [aux_sym_insert_token1] = ACTIONS(4257), - [aux_sym_insert_token2] = ACTIONS(4257), - [aux_sym_delete_token1] = ACTIONS(4257), - [aux_sym_highlight_token1] = ACTIONS(4257), - [aux_sym_edit_comment_token1] = ACTIONS(4257), - [anon_sym_CARET_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_CARET] = ACTIONS(4257), - [sym_uri_autolink] = ACTIONS(4257), - [sym_email_autolink] = ACTIONS(4257), - [sym__whitespace_ge_2] = ACTIONS(4259), - [aux_sym__whitespace_token1] = ACTIONS(4259), - [sym__word_no_digit] = ACTIONS(4257), - [sym__digits] = ACTIONS(4257), - [anon_sym_DASH_DASH] = ACTIONS(4259), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4257), - [sym__code_span_start] = ACTIONS(4257), - [sym__emphasis_open_star] = ACTIONS(4257), - [sym__emphasis_open_underscore] = ACTIONS(4257), - [sym__strikeout_open] = ACTIONS(4257), - [sym__latex_span_start] = ACTIONS(4257), - [sym__single_quote_open] = ACTIONS(4257), - [sym__double_quote_open] = ACTIONS(4257), - [sym__superscript_open] = ACTIONS(4257), - [sym__subscript_open] = ACTIONS(4257), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4257), - [sym__cite_author_in_text] = ACTIONS(4257), - [sym__cite_suppress_author] = ACTIONS(4257), - [sym__shortcode_open_escaped] = ACTIONS(4257), - [sym__shortcode_open] = ACTIONS(4257), - [sym__unclosed_span] = ACTIONS(4257), - [sym__strong_emphasis_open_star] = ACTIONS(4257), - [sym__strong_emphasis_open_underscore] = ACTIONS(4257), + [anon_sym_RPAREN] = ACTIONS(4251), + [sym__newline_token] = ACTIONS(4251), + [aux_sym_insert_token1] = ACTIONS(4251), + [aux_sym_insert_token2] = ACTIONS(4251), + [aux_sym_delete_token1] = ACTIONS(4251), + [aux_sym_highlight_token1] = ACTIONS(4251), + [aux_sym_edit_comment_token1] = ACTIONS(4251), + [anon_sym_CARET_LBRACK] = ACTIONS(4251), + [anon_sym_LBRACK_CARET] = ACTIONS(4251), + [sym_uri_autolink] = ACTIONS(4251), + [sym_email_autolink] = ACTIONS(4251), + [sym__whitespace_ge_2] = ACTIONS(4253), + [aux_sym__whitespace_token1] = ACTIONS(4253), + [sym__word_no_digit] = ACTIONS(4251), + [sym__digits] = ACTIONS(4251), + [anon_sym_DASH_DASH] = ACTIONS(4253), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4251), + [sym__code_span_start] = ACTIONS(4251), + [sym__emphasis_open_star] = ACTIONS(4251), + [sym__emphasis_open_underscore] = ACTIONS(4251), + [sym__strikeout_open] = ACTIONS(4251), + [sym__latex_span_start] = ACTIONS(4251), + [sym__single_quote_open] = ACTIONS(4251), + [sym__double_quote_open] = ACTIONS(4251), + [sym__superscript_open] = ACTIONS(4251), + [sym__subscript_open] = ACTIONS(4251), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4251), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4251), + [sym__cite_author_in_text] = ACTIONS(4251), + [sym__cite_suppress_author] = ACTIONS(4251), + [sym__shortcode_open_escaped] = ACTIONS(4251), + [sym__shortcode_open] = ACTIONS(4251), + [sym__unclosed_span] = ACTIONS(4251), + [sym__strong_emphasis_open_star] = ACTIONS(4251), + [sym__strong_emphasis_open_underscore] = ACTIONS(4251), }, [STATE(760)] = { - [sym__qmd_attribute] = STATE(1222), - [sym_raw_attribute] = STATE(1222), - [sym_commonmark_attribute] = STATE(1222), - [sym_language_attribute] = STATE(1222), - [sym__backslash_escape] = ACTIONS(4271), - [sym_entity_reference] = ACTIONS(4271), - [sym_numeric_character_reference] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4273), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_POUND] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4273), - [anon_sym_SQUOTE] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4273), - [anon_sym_SLASH] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_EQ] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(4271), - [anon_sym_LBRACK] = ACTIONS(4273), - [anon_sym_BSLASH] = ACTIONS(4273), - [anon_sym_CARET] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4271), - [anon_sym_LBRACE] = ACTIONS(4255), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_TILDE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [sym__newline_token] = ACTIONS(4271), - [aux_sym_insert_token1] = ACTIONS(4271), - [aux_sym_delete_token1] = ACTIONS(4271), - [aux_sym_highlight_token1] = ACTIONS(4271), - [aux_sym_edit_comment_token1] = ACTIONS(4271), - [anon_sym_CARET_LBRACK] = ACTIONS(4271), - [anon_sym_LBRACK_CARET] = ACTIONS(4271), - [sym_uri_autolink] = ACTIONS(4271), - [sym_email_autolink] = ACTIONS(4271), - [sym__whitespace_ge_2] = ACTIONS(4271), - [aux_sym__whitespace_token1] = ACTIONS(4273), - [sym__word_no_digit] = ACTIONS(4271), - [sym__digits] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4273), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), - [sym__code_span_start] = ACTIONS(4271), - [sym__emphasis_open_star] = ACTIONS(4271), - [sym__emphasis_open_underscore] = ACTIONS(4271), - [sym__strikeout_open] = ACTIONS(4271), - [sym__latex_span_start] = ACTIONS(4271), - [sym__single_quote_open] = ACTIONS(4271), - [sym__double_quote_open] = ACTIONS(4271), - [sym__superscript_open] = ACTIONS(4271), - [sym__subscript_open] = ACTIONS(4271), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), - [sym__cite_author_in_text] = ACTIONS(4271), - [sym__cite_suppress_author] = ACTIONS(4271), - [sym__shortcode_open_escaped] = ACTIONS(4271), - [sym__shortcode_open] = ACTIONS(4271), - [sym__unclosed_span] = ACTIONS(4271), - [sym__strong_emphasis_open_star] = ACTIONS(4271), - [sym__strong_emphasis_open_underscore] = ACTIONS(4271), - [sym__strong_emphasis_close_underscore] = ACTIONS(4271), + [sym__qmd_attribute] = STATE(1223), + [sym_raw_attribute] = STATE(1223), + [sym_commonmark_attribute] = STATE(1223), + [sym_language_attribute] = STATE(1223), + [sym__backslash_escape] = ACTIONS(4267), + [sym_entity_reference] = ACTIONS(4267), + [sym_numeric_character_reference] = ACTIONS(4267), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_DQUOTE] = ACTIONS(4267), + [anon_sym_POUND] = ACTIONS(4267), + [anon_sym_DOLLAR] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_SQUOTE] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_COMMA] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4269), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_COLON] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_QMARK] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_BSLASH] = ACTIONS(4269), + [anon_sym_CARET] = ACTIONS(4269), + [anon_sym_BQUOTE] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4267), + [anon_sym_TILDE] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_RPAREN] = ACTIONS(4267), + [sym__newline_token] = ACTIONS(4267), + [aux_sym_insert_token1] = ACTIONS(4267), + [aux_sym_delete_token1] = ACTIONS(4267), + [aux_sym_highlight_token1] = ACTIONS(4267), + [aux_sym_edit_comment_token1] = ACTIONS(4267), + [anon_sym_CARET_LBRACK] = ACTIONS(4267), + [anon_sym_LBRACK_CARET] = ACTIONS(4267), + [sym_uri_autolink] = ACTIONS(4267), + [sym_email_autolink] = ACTIONS(4267), + [sym__whitespace_ge_2] = ACTIONS(4267), + [aux_sym__whitespace_token1] = ACTIONS(4269), + [sym__word_no_digit] = ACTIONS(4267), + [sym__digits] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), + [sym__code_span_start] = ACTIONS(4267), + [sym__emphasis_open_star] = ACTIONS(4267), + [sym__emphasis_open_underscore] = ACTIONS(4267), + [sym__strikeout_open] = ACTIONS(4267), + [sym__latex_span_start] = ACTIONS(4267), + [sym__single_quote_open] = ACTIONS(4267), + [sym__double_quote_open] = ACTIONS(4267), + [sym__superscript_open] = ACTIONS(4267), + [sym__subscript_open] = ACTIONS(4267), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), + [sym__cite_author_in_text] = ACTIONS(4267), + [sym__cite_suppress_author] = ACTIONS(4267), + [sym__shortcode_open_escaped] = ACTIONS(4267), + [sym__shortcode_open] = ACTIONS(4267), + [sym__unclosed_span] = ACTIONS(4267), + [sym__strong_emphasis_open_star] = ACTIONS(4267), + [sym__strong_emphasis_open_underscore] = ACTIONS(4267), + [sym__strong_emphasis_close_underscore] = ACTIONS(4267), }, [STATE(761)] = { - [sym__qmd_attribute] = STATE(1224), - [sym_raw_attribute] = STATE(1224), - [sym_commonmark_attribute] = STATE(1224), - [sym_language_attribute] = STATE(1224), + [sym__qmd_attribute] = STATE(1225), + [sym_raw_attribute] = STATE(1225), + [sym_commonmark_attribute] = STATE(1225), + [sym_language_attribute] = STATE(1225), + [sym__backslash_escape] = ACTIONS(4275), + [sym_entity_reference] = ACTIONS(4275), + [sym_numeric_character_reference] = ACTIONS(4275), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + [anon_sym_SQUOTE] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_COMMA] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4277), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_COLON] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_QMARK] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_BSLASH] = ACTIONS(4277), + [anon_sym_CARET] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4275), + [anon_sym_TILDE] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4275), + [anon_sym_RPAREN] = ACTIONS(4275), + [sym__newline_token] = ACTIONS(4275), + [aux_sym_insert_token1] = ACTIONS(4275), + [aux_sym_delete_token1] = ACTIONS(4275), + [aux_sym_highlight_token1] = ACTIONS(4275), + [aux_sym_edit_comment_token1] = ACTIONS(4275), + [anon_sym_CARET_LBRACK] = ACTIONS(4275), + [anon_sym_LBRACK_CARET] = ACTIONS(4275), + [sym_uri_autolink] = ACTIONS(4275), + [sym_email_autolink] = ACTIONS(4275), + [sym__whitespace_ge_2] = ACTIONS(4275), + [aux_sym__whitespace_token1] = ACTIONS(4277), + [sym__word_no_digit] = ACTIONS(4275), + [sym__digits] = ACTIONS(4275), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), + [sym__code_span_start] = ACTIONS(4275), + [sym__emphasis_open_star] = ACTIONS(4275), + [sym__emphasis_open_underscore] = ACTIONS(4275), + [sym__strikeout_open] = ACTIONS(4275), + [sym__latex_span_start] = ACTIONS(4275), + [sym__single_quote_open] = ACTIONS(4275), + [sym__double_quote_open] = ACTIONS(4275), + [sym__superscript_open] = ACTIONS(4275), + [sym__subscript_open] = ACTIONS(4275), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), + [sym__cite_author_in_text] = ACTIONS(4275), + [sym__cite_suppress_author] = ACTIONS(4275), + [sym__shortcode_open_escaped] = ACTIONS(4275), + [sym__shortcode_open] = ACTIONS(4275), + [sym__unclosed_span] = ACTIONS(4275), + [sym__strong_emphasis_open_star] = ACTIONS(4275), + [sym__strong_emphasis_open_underscore] = ACTIONS(4275), + [sym__strong_emphasis_close_underscore] = ACTIONS(4275), + }, + [STATE(762)] = { + [sym__qmd_attribute] = STATE(1227), + [sym_raw_attribute] = STATE(1227), + [sym_commonmark_attribute] = STATE(1227), + [sym_language_attribute] = STATE(1227), [sym__backslash_escape] = ACTIONS(4287), [sym_entity_reference] = ACTIONS(4287), [sym_numeric_character_reference] = ACTIONS(4287), @@ -99329,7 +99399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4289), [anon_sym_CARET] = ACTIONS(4289), [anon_sym_BQUOTE] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4249), [anon_sym_PIPE] = ACTIONS(4287), [anon_sym_TILDE] = ACTIONS(4287), [anon_sym_LPAREN] = ACTIONS(4287), @@ -99370,153 +99440,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4287), [sym__strong_emphasis_close_underscore] = ACTIONS(4287), }, - [STATE(762)] = { - [sym__qmd_attribute] = STATE(1226), - [sym_raw_attribute] = STATE(1226), - [sym_commonmark_attribute] = STATE(1226), - [sym_language_attribute] = STATE(1226), - [sym__backslash_escape] = ACTIONS(4291), - [sym_entity_reference] = ACTIONS(4291), - [sym_numeric_character_reference] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4291), - [anon_sym_POUND] = ACTIONS(4291), - [anon_sym_DOLLAR] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_AMP] = ACTIONS(4293), - [anon_sym_SQUOTE] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4293), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_SLASH] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4293), - [anon_sym_BSLASH] = ACTIONS(4293), - [anon_sym_CARET] = ACTIONS(4293), - [anon_sym_BQUOTE] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4255), - [anon_sym_PIPE] = ACTIONS(4291), - [anon_sym_TILDE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [sym__newline_token] = ACTIONS(4291), - [aux_sym_insert_token1] = ACTIONS(4291), - [aux_sym_delete_token1] = ACTIONS(4291), - [aux_sym_highlight_token1] = ACTIONS(4291), - [aux_sym_edit_comment_token1] = ACTIONS(4291), - [anon_sym_CARET_LBRACK] = ACTIONS(4291), - [anon_sym_LBRACK_CARET] = ACTIONS(4291), - [sym_uri_autolink] = ACTIONS(4291), - [sym_email_autolink] = ACTIONS(4291), - [sym__whitespace_ge_2] = ACTIONS(4291), - [aux_sym__whitespace_token1] = ACTIONS(4293), - [sym__word_no_digit] = ACTIONS(4291), - [sym__digits] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4293), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), - [sym__code_span_start] = ACTIONS(4291), - [sym__emphasis_open_star] = ACTIONS(4291), - [sym__emphasis_open_underscore] = ACTIONS(4291), - [sym__strikeout_open] = ACTIONS(4291), - [sym__latex_span_start] = ACTIONS(4291), - [sym__single_quote_open] = ACTIONS(4291), - [sym__double_quote_open] = ACTIONS(4291), - [sym__superscript_open] = ACTIONS(4291), - [sym__subscript_open] = ACTIONS(4291), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4291), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4291), - [sym__cite_author_in_text] = ACTIONS(4291), - [sym__cite_suppress_author] = ACTIONS(4291), - [sym__shortcode_open_escaped] = ACTIONS(4291), - [sym__shortcode_open] = ACTIONS(4291), - [sym__unclosed_span] = ACTIONS(4291), - [sym__strong_emphasis_open_star] = ACTIONS(4291), - [sym__strong_emphasis_open_underscore] = ACTIONS(4291), - [sym__strong_emphasis_close_underscore] = ACTIONS(4291), - }, [STATE(763)] = { - [sym__qmd_attribute] = STATE(1414), - [sym_raw_attribute] = STATE(1414), - [sym_commonmark_attribute] = STATE(1414), - [sym_language_attribute] = STATE(1414), - [sym__backslash_escape] = ACTIONS(4267), - [sym_entity_reference] = ACTIONS(4267), - [sym_numeric_character_reference] = ACTIONS(4267), - [anon_sym_LT] = ACTIONS(4269), - [anon_sym_GT] = ACTIONS(4267), - [anon_sym_BANG] = ACTIONS(4267), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_POUND] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_PERCENT] = ACTIONS(4267), - [anon_sym_AMP] = ACTIONS(4269), - [anon_sym_SQUOTE] = ACTIONS(4267), - [anon_sym_PLUS] = ACTIONS(4267), - [anon_sym_COMMA] = ACTIONS(4267), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_DOT] = ACTIONS(4269), - [anon_sym_SLASH] = ACTIONS(4267), - [anon_sym_COLON] = ACTIONS(4267), - [anon_sym_SEMI] = ACTIONS(4267), - [anon_sym_EQ] = ACTIONS(4267), - [anon_sym_QMARK] = ACTIONS(4267), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_BSLASH] = ACTIONS(4269), - [anon_sym_CARET] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4267), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_PIPE] = ACTIONS(4267), - [anon_sym_TILDE] = ACTIONS(4267), - [anon_sym_LPAREN] = ACTIONS(4267), - [anon_sym_RPAREN] = ACTIONS(4267), - [sym__newline_token] = ACTIONS(4267), - [aux_sym_insert_token1] = ACTIONS(4267), - [aux_sym_insert_token2] = ACTIONS(4267), - [aux_sym_delete_token1] = ACTIONS(4267), - [aux_sym_highlight_token1] = ACTIONS(4267), - [aux_sym_edit_comment_token1] = ACTIONS(4267), - [anon_sym_CARET_LBRACK] = ACTIONS(4267), - [anon_sym_LBRACK_CARET] = ACTIONS(4267), - [sym_uri_autolink] = ACTIONS(4267), - [sym_email_autolink] = ACTIONS(4267), - [sym__whitespace_ge_2] = ACTIONS(4269), - [aux_sym__whitespace_token1] = ACTIONS(4269), - [sym__word_no_digit] = ACTIONS(4267), - [sym__digits] = ACTIONS(4267), - [anon_sym_DASH_DASH] = ACTIONS(4269), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), - [sym__code_span_start] = ACTIONS(4267), - [sym__emphasis_open_star] = ACTIONS(4267), - [sym__emphasis_open_underscore] = ACTIONS(4267), - [sym__strikeout_open] = ACTIONS(4267), - [sym__latex_span_start] = ACTIONS(4267), - [sym__single_quote_open] = ACTIONS(4267), - [sym__double_quote_open] = ACTIONS(4267), - [sym__superscript_open] = ACTIONS(4267), - [sym__subscript_open] = ACTIONS(4267), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), - [sym__cite_author_in_text] = ACTIONS(4267), - [sym__cite_suppress_author] = ACTIONS(4267), - [sym__shortcode_open_escaped] = ACTIONS(4267), - [sym__shortcode_open] = ACTIONS(4267), - [sym__unclosed_span] = ACTIONS(4267), - [sym__strong_emphasis_open_star] = ACTIONS(4267), - [sym__strong_emphasis_open_underscore] = ACTIONS(4267), - }, - [STATE(764)] = { [sym__qmd_attribute] = STATE(1416), [sym_raw_attribute] = STATE(1416), [sym_commonmark_attribute] = STATE(1416), [sym_language_attribute] = STATE(1416), + [sym__backslash_escape] = ACTIONS(4263), + [sym_entity_reference] = ACTIONS(4263), + [sym_numeric_character_reference] = ACTIONS(4263), + [anon_sym_LT] = ACTIONS(4265), + [anon_sym_GT] = ACTIONS(4263), + [anon_sym_BANG] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(4263), + [anon_sym_DOLLAR] = ACTIONS(4263), + [anon_sym_PERCENT] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4265), + [anon_sym_SQUOTE] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_COMMA] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_DOT] = ACTIONS(4265), + [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_COLON] = ACTIONS(4263), + [anon_sym_SEMI] = ACTIONS(4263), + [anon_sym_EQ] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_BSLASH] = ACTIONS(4265), + [anon_sym_CARET] = ACTIONS(4265), + [anon_sym_BQUOTE] = ACTIONS(4263), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4263), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym_RPAREN] = ACTIONS(4263), + [sym__newline_token] = ACTIONS(4263), + [aux_sym_insert_token1] = ACTIONS(4263), + [aux_sym_insert_token2] = ACTIONS(4263), + [aux_sym_delete_token1] = ACTIONS(4263), + [aux_sym_highlight_token1] = ACTIONS(4263), + [aux_sym_edit_comment_token1] = ACTIONS(4263), + [anon_sym_CARET_LBRACK] = ACTIONS(4263), + [anon_sym_LBRACK_CARET] = ACTIONS(4263), + [sym_uri_autolink] = ACTIONS(4263), + [sym_email_autolink] = ACTIONS(4263), + [sym__whitespace_ge_2] = ACTIONS(4265), + [aux_sym__whitespace_token1] = ACTIONS(4265), + [sym__word_no_digit] = ACTIONS(4263), + [sym__digits] = ACTIONS(4263), + [anon_sym_DASH_DASH] = ACTIONS(4265), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), + [sym__code_span_start] = ACTIONS(4263), + [sym__emphasis_open_star] = ACTIONS(4263), + [sym__emphasis_open_underscore] = ACTIONS(4263), + [sym__strikeout_open] = ACTIONS(4263), + [sym__latex_span_start] = ACTIONS(4263), + [sym__single_quote_open] = ACTIONS(4263), + [sym__double_quote_open] = ACTIONS(4263), + [sym__superscript_open] = ACTIONS(4263), + [sym__subscript_open] = ACTIONS(4263), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), + [sym__cite_author_in_text] = ACTIONS(4263), + [sym__cite_suppress_author] = ACTIONS(4263), + [sym__shortcode_open_escaped] = ACTIONS(4263), + [sym__shortcode_open] = ACTIONS(4263), + [sym__unclosed_span] = ACTIONS(4263), + [sym__strong_emphasis_open_star] = ACTIONS(4263), + [sym__strong_emphasis_open_underscore] = ACTIONS(4263), + }, + [STATE(764)] = { + [sym__qmd_attribute] = STATE(1418), + [sym_raw_attribute] = STATE(1418), + [sym_commonmark_attribute] = STATE(1418), + [sym_language_attribute] = STATE(1418), [sym__backslash_escape] = ACTIONS(4283), [sym_entity_reference] = ACTIONS(4283), [sym_numeric_character_reference] = ACTIONS(4283), @@ -99584,10 +99583,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4283), }, [STATE(765)] = { - [sym__qmd_attribute] = STATE(1429), - [sym_raw_attribute] = STATE(1429), - [sym_commonmark_attribute] = STATE(1429), - [sym_language_attribute] = STATE(1429), + [sym__qmd_attribute] = STATE(1430), + [sym_raw_attribute] = STATE(1430), + [sym_commonmark_attribute] = STATE(1430), + [sym_language_attribute] = STATE(1430), [sym__backslash_escape] = ACTIONS(4181), [sym_entity_reference] = ACTIONS(4181), [sym_numeric_character_reference] = ACTIONS(4181), @@ -99655,152 +99654,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, [STATE(766)] = { - [sym__qmd_attribute] = STATE(1432), - [sym_raw_attribute] = STATE(1432), - [sym_commonmark_attribute] = STATE(1432), - [sym_language_attribute] = STATE(1432), - [sym__backslash_escape] = ACTIONS(4263), - [sym_entity_reference] = ACTIONS(4263), - [sym_numeric_character_reference] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(4265), - [anon_sym_GT] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4263), - [anon_sym_POUND] = ACTIONS(4263), - [anon_sym_DOLLAR] = ACTIONS(4263), - [anon_sym_PERCENT] = ACTIONS(4263), - [anon_sym_AMP] = ACTIONS(4265), - [anon_sym_SQUOTE] = ACTIONS(4263), - [anon_sym_PLUS] = ACTIONS(4263), - [anon_sym_COMMA] = ACTIONS(4263), - [anon_sym_DASH] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4265), - [anon_sym_SLASH] = ACTIONS(4263), - [anon_sym_COLON] = ACTIONS(4263), - [anon_sym_SEMI] = ACTIONS(4263), - [anon_sym_EQ] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4263), - [anon_sym_LBRACK] = ACTIONS(4265), - [anon_sym_BSLASH] = ACTIONS(4265), - [anon_sym_CARET] = ACTIONS(4265), - [anon_sym_BQUOTE] = ACTIONS(4263), + [sym__qmd_attribute] = STATE(1433), + [sym_raw_attribute] = STATE(1433), + [sym_commonmark_attribute] = STATE(1433), + [sym_language_attribute] = STATE(1433), + [sym__backslash_escape] = ACTIONS(4259), + [sym_entity_reference] = ACTIONS(4259), + [sym_numeric_character_reference] = ACTIONS(4259), + [anon_sym_LT] = ACTIONS(4261), + [anon_sym_GT] = ACTIONS(4259), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + [anon_sym_SQUOTE] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_COMMA] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_DOT] = ACTIONS(4261), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_SEMI] = ACTIONS(4259), + [anon_sym_EQ] = ACTIONS(4259), + [anon_sym_QMARK] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_BSLASH] = ACTIONS(4261), + [anon_sym_CARET] = ACTIONS(4261), + [anon_sym_BQUOTE] = ACTIONS(4259), [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_PIPE] = ACTIONS(4263), - [anon_sym_TILDE] = ACTIONS(4263), - [anon_sym_LPAREN] = ACTIONS(4263), - [anon_sym_RPAREN] = ACTIONS(4263), - [sym__newline_token] = ACTIONS(4263), - [aux_sym_insert_token1] = ACTIONS(4263), - [aux_sym_insert_token2] = ACTIONS(4263), - [aux_sym_delete_token1] = ACTIONS(4263), - [aux_sym_highlight_token1] = ACTIONS(4263), - [aux_sym_edit_comment_token1] = ACTIONS(4263), - [anon_sym_CARET_LBRACK] = ACTIONS(4263), - [anon_sym_LBRACK_CARET] = ACTIONS(4263), - [sym_uri_autolink] = ACTIONS(4263), - [sym_email_autolink] = ACTIONS(4263), - [sym__whitespace_ge_2] = ACTIONS(4265), - [aux_sym__whitespace_token1] = ACTIONS(4265), - [sym__word_no_digit] = ACTIONS(4263), - [sym__digits] = ACTIONS(4263), - [anon_sym_DASH_DASH] = ACTIONS(4265), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4263), - [sym__code_span_start] = ACTIONS(4263), - [sym__emphasis_open_star] = ACTIONS(4263), - [sym__emphasis_open_underscore] = ACTIONS(4263), - [sym__strikeout_open] = ACTIONS(4263), - [sym__latex_span_start] = ACTIONS(4263), - [sym__single_quote_open] = ACTIONS(4263), - [sym__double_quote_open] = ACTIONS(4263), - [sym__superscript_open] = ACTIONS(4263), - [sym__subscript_open] = ACTIONS(4263), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4263), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4263), - [sym__cite_author_in_text] = ACTIONS(4263), - [sym__cite_suppress_author] = ACTIONS(4263), - [sym__shortcode_open_escaped] = ACTIONS(4263), - [sym__shortcode_open] = ACTIONS(4263), - [sym__unclosed_span] = ACTIONS(4263), - [sym__strong_emphasis_open_star] = ACTIONS(4263), - [sym__strong_emphasis_open_underscore] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym_RPAREN] = ACTIONS(4259), + [sym__newline_token] = ACTIONS(4259), + [aux_sym_insert_token1] = ACTIONS(4259), + [aux_sym_insert_token2] = ACTIONS(4259), + [aux_sym_delete_token1] = ACTIONS(4259), + [aux_sym_highlight_token1] = ACTIONS(4259), + [aux_sym_edit_comment_token1] = ACTIONS(4259), + [anon_sym_CARET_LBRACK] = ACTIONS(4259), + [anon_sym_LBRACK_CARET] = ACTIONS(4259), + [sym_uri_autolink] = ACTIONS(4259), + [sym_email_autolink] = ACTIONS(4259), + [sym__whitespace_ge_2] = ACTIONS(4261), + [aux_sym__whitespace_token1] = ACTIONS(4261), + [sym__word_no_digit] = ACTIONS(4259), + [sym__digits] = ACTIONS(4259), + [anon_sym_DASH_DASH] = ACTIONS(4261), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4259), + [sym__code_span_start] = ACTIONS(4259), + [sym__emphasis_open_star] = ACTIONS(4259), + [sym__emphasis_open_underscore] = ACTIONS(4259), + [sym__strikeout_open] = ACTIONS(4259), + [sym__latex_span_start] = ACTIONS(4259), + [sym__single_quote_open] = ACTIONS(4259), + [sym__double_quote_open] = ACTIONS(4259), + [sym__superscript_open] = ACTIONS(4259), + [sym__subscript_open] = ACTIONS(4259), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4259), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4259), + [sym__cite_author_in_text] = ACTIONS(4259), + [sym__cite_suppress_author] = ACTIONS(4259), + [sym__shortcode_open_escaped] = ACTIONS(4259), + [sym__shortcode_open] = ACTIONS(4259), + [sym__unclosed_span] = ACTIONS(4259), + [sym__strong_emphasis_open_star] = ACTIONS(4259), + [sym__strong_emphasis_open_underscore] = ACTIONS(4259), }, [STATE(767)] = { - [sym__qmd_attribute] = STATE(1434), - [sym_raw_attribute] = STATE(1434), - [sym_commonmark_attribute] = STATE(1434), - [sym_language_attribute] = STATE(1434), - [sym__backslash_escape] = ACTIONS(4271), - [sym_entity_reference] = ACTIONS(4271), - [sym_numeric_character_reference] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4273), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_BANG] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_POUND] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [anon_sym_PERCENT] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4273), - [anon_sym_SQUOTE] = ACTIONS(4271), - [anon_sym_PLUS] = ACTIONS(4271), - [anon_sym_COMMA] = ACTIONS(4271), - [anon_sym_DASH] = ACTIONS(4273), - [anon_sym_DOT] = ACTIONS(4273), - [anon_sym_SLASH] = ACTIONS(4271), - [anon_sym_COLON] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_EQ] = ACTIONS(4271), - [anon_sym_QMARK] = ACTIONS(4271), - [anon_sym_LBRACK] = ACTIONS(4273), - [anon_sym_BSLASH] = ACTIONS(4273), - [anon_sym_CARET] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4271), + [sym__qmd_attribute] = STATE(1435), + [sym_raw_attribute] = STATE(1435), + [sym_commonmark_attribute] = STATE(1435), + [sym_language_attribute] = STATE(1435), + [sym__backslash_escape] = ACTIONS(4267), + [sym_entity_reference] = ACTIONS(4267), + [sym_numeric_character_reference] = ACTIONS(4267), + [anon_sym_LT] = ACTIONS(4269), + [anon_sym_GT] = ACTIONS(4267), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_DQUOTE] = ACTIONS(4267), + [anon_sym_POUND] = ACTIONS(4267), + [anon_sym_DOLLAR] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_SQUOTE] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_COMMA] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_DOT] = ACTIONS(4269), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_COLON] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(4267), + [anon_sym_QMARK] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_BSLASH] = ACTIONS(4269), + [anon_sym_CARET] = ACTIONS(4269), + [anon_sym_BQUOTE] = ACTIONS(4267), [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_TILDE] = ACTIONS(4271), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [sym__newline_token] = ACTIONS(4271), - [aux_sym_insert_token1] = ACTIONS(4271), - [aux_sym_insert_token2] = ACTIONS(4271), - [aux_sym_delete_token1] = ACTIONS(4271), - [aux_sym_highlight_token1] = ACTIONS(4271), - [aux_sym_edit_comment_token1] = ACTIONS(4271), - [anon_sym_CARET_LBRACK] = ACTIONS(4271), - [anon_sym_LBRACK_CARET] = ACTIONS(4271), - [sym_uri_autolink] = ACTIONS(4271), - [sym_email_autolink] = ACTIONS(4271), - [sym__whitespace_ge_2] = ACTIONS(4273), - [aux_sym__whitespace_token1] = ACTIONS(4273), - [sym__word_no_digit] = ACTIONS(4271), - [sym__digits] = ACTIONS(4271), - [anon_sym_DASH_DASH] = ACTIONS(4273), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), - [sym__code_span_start] = ACTIONS(4271), - [sym__emphasis_open_star] = ACTIONS(4271), - [sym__emphasis_open_underscore] = ACTIONS(4271), - [sym__strikeout_open] = ACTIONS(4271), - [sym__latex_span_start] = ACTIONS(4271), - [sym__single_quote_open] = ACTIONS(4271), - [sym__double_quote_open] = ACTIONS(4271), - [sym__superscript_open] = ACTIONS(4271), - [sym__subscript_open] = ACTIONS(4271), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), - [sym__cite_author_in_text] = ACTIONS(4271), - [sym__cite_suppress_author] = ACTIONS(4271), - [sym__shortcode_open_escaped] = ACTIONS(4271), - [sym__shortcode_open] = ACTIONS(4271), - [sym__unclosed_span] = ACTIONS(4271), - [sym__strong_emphasis_open_star] = ACTIONS(4271), - [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4267), + [anon_sym_TILDE] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym_RPAREN] = ACTIONS(4267), + [sym__newline_token] = ACTIONS(4267), + [aux_sym_insert_token1] = ACTIONS(4267), + [aux_sym_insert_token2] = ACTIONS(4267), + [aux_sym_delete_token1] = ACTIONS(4267), + [aux_sym_highlight_token1] = ACTIONS(4267), + [aux_sym_edit_comment_token1] = ACTIONS(4267), + [anon_sym_CARET_LBRACK] = ACTIONS(4267), + [anon_sym_LBRACK_CARET] = ACTIONS(4267), + [sym_uri_autolink] = ACTIONS(4267), + [sym_email_autolink] = ACTIONS(4267), + [sym__whitespace_ge_2] = ACTIONS(4269), + [aux_sym__whitespace_token1] = ACTIONS(4269), + [sym__word_no_digit] = ACTIONS(4267), + [sym__digits] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4267), + [sym__code_span_start] = ACTIONS(4267), + [sym__emphasis_open_star] = ACTIONS(4267), + [sym__emphasis_open_underscore] = ACTIONS(4267), + [sym__strikeout_open] = ACTIONS(4267), + [sym__latex_span_start] = ACTIONS(4267), + [sym__single_quote_open] = ACTIONS(4267), + [sym__double_quote_open] = ACTIONS(4267), + [sym__superscript_open] = ACTIONS(4267), + [sym__subscript_open] = ACTIONS(4267), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4267), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4267), + [sym__cite_author_in_text] = ACTIONS(4267), + [sym__cite_suppress_author] = ACTIONS(4267), + [sym__shortcode_open_escaped] = ACTIONS(4267), + [sym__shortcode_open] = ACTIONS(4267), + [sym__unclosed_span] = ACTIONS(4267), + [sym__strong_emphasis_open_star] = ACTIONS(4267), + [sym__strong_emphasis_open_underscore] = ACTIONS(4267), }, [STATE(768)] = { [sym__qmd_attribute] = STATE(1436), [sym_raw_attribute] = STATE(1436), [sym_commonmark_attribute] = STATE(1436), [sym_language_attribute] = STATE(1436), + [sym__backslash_escape] = ACTIONS(4275), + [sym_entity_reference] = ACTIONS(4275), + [sym_numeric_character_reference] = ACTIONS(4275), + [anon_sym_LT] = ACTIONS(4277), + [anon_sym_GT] = ACTIONS(4275), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(4275), + [anon_sym_DOLLAR] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4277), + [anon_sym_SQUOTE] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_COMMA] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4277), + [anon_sym_DOT] = ACTIONS(4277), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_COLON] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_QMARK] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_BSLASH] = ACTIONS(4277), + [anon_sym_CARET] = ACTIONS(4277), + [anon_sym_BQUOTE] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4275), + [anon_sym_TILDE] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4275), + [anon_sym_RPAREN] = ACTIONS(4275), + [sym__newline_token] = ACTIONS(4275), + [aux_sym_insert_token1] = ACTIONS(4275), + [aux_sym_insert_token2] = ACTIONS(4275), + [aux_sym_delete_token1] = ACTIONS(4275), + [aux_sym_highlight_token1] = ACTIONS(4275), + [aux_sym_edit_comment_token1] = ACTIONS(4275), + [anon_sym_CARET_LBRACK] = ACTIONS(4275), + [anon_sym_LBRACK_CARET] = ACTIONS(4275), + [sym_uri_autolink] = ACTIONS(4275), + [sym_email_autolink] = ACTIONS(4275), + [sym__whitespace_ge_2] = ACTIONS(4277), + [aux_sym__whitespace_token1] = ACTIONS(4277), + [sym__word_no_digit] = ACTIONS(4275), + [sym__digits] = ACTIONS(4275), + [anon_sym_DASH_DASH] = ACTIONS(4277), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), + [sym__code_span_start] = ACTIONS(4275), + [sym__emphasis_open_star] = ACTIONS(4275), + [sym__emphasis_open_underscore] = ACTIONS(4275), + [sym__strikeout_open] = ACTIONS(4275), + [sym__latex_span_start] = ACTIONS(4275), + [sym__single_quote_open] = ACTIONS(4275), + [sym__double_quote_open] = ACTIONS(4275), + [sym__superscript_open] = ACTIONS(4275), + [sym__subscript_open] = ACTIONS(4275), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), + [sym__cite_author_in_text] = ACTIONS(4275), + [sym__cite_suppress_author] = ACTIONS(4275), + [sym__shortcode_open_escaped] = ACTIONS(4275), + [sym__shortcode_open] = ACTIONS(4275), + [sym__unclosed_span] = ACTIONS(4275), + [sym__strong_emphasis_open_star] = ACTIONS(4275), + [sym__strong_emphasis_open_underscore] = ACTIONS(4275), + }, + [STATE(769)] = { + [sym__qmd_attribute] = STATE(1438), + [sym_raw_attribute] = STATE(1438), + [sym_commonmark_attribute] = STATE(1438), + [sym_language_attribute] = STATE(1438), [sym__backslash_escape] = ACTIONS(4287), [sym_entity_reference] = ACTIONS(4287), [sym_numeric_character_reference] = ACTIONS(4287), @@ -99867,11 +99937,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4287), [sym__strong_emphasis_open_underscore] = ACTIONS(4287), }, - [STATE(769)] = { - [sym__qmd_attribute] = STATE(1438), - [sym_raw_attribute] = STATE(1438), - [sym_commonmark_attribute] = STATE(1438), - [sym_language_attribute] = STATE(1438), + [STATE(770)] = { + [sym__qmd_attribute] = STATE(1235), + [sym_raw_attribute] = STATE(1235), + [sym_commonmark_attribute] = STATE(1235), + [sym_language_attribute] = STATE(1235), [sym__backslash_escape] = ACTIONS(4291), [sym_entity_reference] = ACTIONS(4291), [sym_numeric_character_reference] = ACTIONS(4291), @@ -99897,14 +99967,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4293), [anon_sym_CARET] = ACTIONS(4293), [anon_sym_BQUOTE] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_LBRACE] = ACTIONS(4249), [anon_sym_PIPE] = ACTIONS(4291), [anon_sym_TILDE] = ACTIONS(4291), [anon_sym_LPAREN] = ACTIONS(4291), [anon_sym_RPAREN] = ACTIONS(4291), [sym__newline_token] = ACTIONS(4291), [aux_sym_insert_token1] = ACTIONS(4291), - [aux_sym_insert_token2] = ACTIONS(4291), [aux_sym_delete_token1] = ACTIONS(4291), [aux_sym_highlight_token1] = ACTIONS(4291), [aux_sym_edit_comment_token1] = ACTIONS(4291), @@ -99912,7 +99981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_CARET] = ACTIONS(4291), [sym_uri_autolink] = ACTIONS(4291), [sym_email_autolink] = ACTIONS(4291), - [sym__whitespace_ge_2] = ACTIONS(4293), + [sym__whitespace_ge_2] = ACTIONS(4291), [aux_sym__whitespace_token1] = ACTIONS(4293), [sym__word_no_digit] = ACTIONS(4291), [sym__digits] = ACTIONS(4291), @@ -99937,154 +100006,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unclosed_span] = ACTIONS(4291), [sym__strong_emphasis_open_star] = ACTIONS(4291), [sym__strong_emphasis_open_underscore] = ACTIONS(4291), - }, - [STATE(770)] = { - [sym__qmd_attribute] = STATE(1234), - [sym_raw_attribute] = STATE(1234), - [sym_commonmark_attribute] = STATE(1234), - [sym_language_attribute] = STATE(1234), - [sym__backslash_escape] = ACTIONS(4249), - [sym_entity_reference] = ACTIONS(4249), - [sym_numeric_character_reference] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(4251), - [anon_sym_GT] = ACTIONS(4249), - [anon_sym_BANG] = ACTIONS(4249), - [anon_sym_DQUOTE] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(4249), - [anon_sym_PERCENT] = ACTIONS(4249), - [anon_sym_AMP] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4249), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_COMMA] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4251), - [anon_sym_DOT] = ACTIONS(4251), - [anon_sym_SLASH] = ACTIONS(4249), - [anon_sym_COLON] = ACTIONS(4249), - [anon_sym_SEMI] = ACTIONS(4249), - [anon_sym_EQ] = ACTIONS(4249), - [anon_sym_QMARK] = ACTIONS(4249), - [anon_sym_LBRACK] = ACTIONS(4251), - [anon_sym_BSLASH] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4251), - [anon_sym_BQUOTE] = ACTIONS(4249), - [anon_sym_LBRACE] = ACTIONS(4255), - [anon_sym_PIPE] = ACTIONS(4249), - [anon_sym_TILDE] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4249), - [anon_sym_RPAREN] = ACTIONS(4249), - [sym__newline_token] = ACTIONS(4249), - [aux_sym_insert_token1] = ACTIONS(4249), - [aux_sym_delete_token1] = ACTIONS(4249), - [aux_sym_highlight_token1] = ACTIONS(4249), - [aux_sym_edit_comment_token1] = ACTIONS(4249), - [anon_sym_CARET_LBRACK] = ACTIONS(4249), - [anon_sym_LBRACK_CARET] = ACTIONS(4249), - [sym_uri_autolink] = ACTIONS(4249), - [sym_email_autolink] = ACTIONS(4249), - [sym__whitespace_ge_2] = ACTIONS(4249), - [aux_sym__whitespace_token1] = ACTIONS(4251), - [sym__word_no_digit] = ACTIONS(4249), - [sym__digits] = ACTIONS(4249), - [anon_sym_DASH_DASH] = ACTIONS(4251), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4249), - [sym__code_span_start] = ACTIONS(4249), - [sym__emphasis_open_star] = ACTIONS(4249), - [sym__emphasis_open_underscore] = ACTIONS(4249), - [sym__strikeout_open] = ACTIONS(4249), - [sym__latex_span_start] = ACTIONS(4249), - [sym__single_quote_open] = ACTIONS(4249), - [sym__double_quote_open] = ACTIONS(4249), - [sym__superscript_open] = ACTIONS(4249), - [sym__subscript_open] = ACTIONS(4249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4249), - [sym__cite_author_in_text] = ACTIONS(4249), - [sym__cite_suppress_author] = ACTIONS(4249), - [sym__shortcode_open_escaped] = ACTIONS(4249), - [sym__shortcode_open] = ACTIONS(4249), - [sym__unclosed_span] = ACTIONS(4249), - [sym__strong_emphasis_open_star] = ACTIONS(4249), - [sym__strong_emphasis_open_underscore] = ACTIONS(4249), - [sym__strong_emphasis_close_underscore] = ACTIONS(4249), + [sym__strong_emphasis_close_underscore] = ACTIONS(4291), }, [STATE(771)] = { - [sym__qmd_attribute] = STATE(1238), - [sym_raw_attribute] = STATE(1238), - [sym_commonmark_attribute] = STATE(1238), - [sym_language_attribute] = STATE(1238), - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4255), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - [sym__strong_emphasis_close_underscore] = ACTIONS(4275), + [sym__qmd_attribute] = STATE(1239), + [sym_raw_attribute] = STATE(1239), + [sym_commonmark_attribute] = STATE(1239), + [sym_language_attribute] = STATE(1239), + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + [sym__strong_emphasis_close_underscore] = ACTIONS(4271), }, [STATE(772)] = { - [sym__qmd_attribute] = STATE(1247), - [sym_raw_attribute] = STATE(1247), - [sym_commonmark_attribute] = STATE(1247), - [sym_language_attribute] = STATE(1247), + [sym__qmd_attribute] = STATE(1248), + [sym_raw_attribute] = STATE(1248), + [sym_commonmark_attribute] = STATE(1248), + [sym_language_attribute] = STATE(1248), [sym__backslash_escape] = ACTIONS(4201), [sym_entity_reference] = ACTIONS(4201), [sym_numeric_character_reference] = ACTIONS(4201), @@ -100110,7 +100109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(4203), [anon_sym_CARET] = ACTIONS(4203), [anon_sym_BQUOTE] = ACTIONS(4201), - [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4249), [anon_sym_PIPE] = ACTIONS(4201), [anon_sym_TILDE] = ACTIONS(4201), [anon_sym_LPAREN] = ACTIONS(4201), @@ -100152,220 +100151,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_underscore] = ACTIONS(4201), }, [STATE(773)] = { - [sym__qmd_attribute] = STATE(1444), - [sym_raw_attribute] = STATE(1444), - [sym_commonmark_attribute] = STATE(1444), - [sym_language_attribute] = STATE(1444), - [sym__backslash_escape] = ACTIONS(4249), - [sym_entity_reference] = ACTIONS(4249), - [sym_numeric_character_reference] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(4251), - [anon_sym_GT] = ACTIONS(4249), - [anon_sym_BANG] = ACTIONS(4249), - [anon_sym_DQUOTE] = ACTIONS(4249), - [anon_sym_POUND] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(4249), - [anon_sym_PERCENT] = ACTIONS(4249), - [anon_sym_AMP] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4249), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_COMMA] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4251), - [anon_sym_DOT] = ACTIONS(4251), - [anon_sym_SLASH] = ACTIONS(4249), - [anon_sym_COLON] = ACTIONS(4249), - [anon_sym_SEMI] = ACTIONS(4249), - [anon_sym_EQ] = ACTIONS(4249), - [anon_sym_QMARK] = ACTIONS(4249), - [anon_sym_LBRACK] = ACTIONS(4251), - [anon_sym_BSLASH] = ACTIONS(4251), - [anon_sym_CARET] = ACTIONS(4251), - [anon_sym_BQUOTE] = ACTIONS(4249), + [sym__qmd_attribute] = STATE(1445), + [sym_raw_attribute] = STATE(1445), + [sym_commonmark_attribute] = STATE(1445), + [sym_language_attribute] = STATE(1445), + [sym__backslash_escape] = ACTIONS(4291), + [sym_entity_reference] = ACTIONS(4291), + [sym_numeric_character_reference] = ACTIONS(4291), + [anon_sym_LT] = ACTIONS(4293), + [anon_sym_GT] = ACTIONS(4291), + [anon_sym_BANG] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4291), + [anon_sym_POUND] = ACTIONS(4291), + [anon_sym_DOLLAR] = ACTIONS(4291), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_PLUS] = ACTIONS(4291), + [anon_sym_COMMA] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_DOT] = ACTIONS(4293), + [anon_sym_SLASH] = ACTIONS(4291), + [anon_sym_COLON] = ACTIONS(4291), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym_EQ] = ACTIONS(4291), + [anon_sym_QMARK] = ACTIONS(4291), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_BSLASH] = ACTIONS(4293), + [anon_sym_CARET] = ACTIONS(4293), + [anon_sym_BQUOTE] = ACTIONS(4291), [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_PIPE] = ACTIONS(4249), - [anon_sym_TILDE] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4249), - [anon_sym_RPAREN] = ACTIONS(4249), - [sym__newline_token] = ACTIONS(4249), - [aux_sym_insert_token1] = ACTIONS(4249), - [aux_sym_insert_token2] = ACTIONS(4249), - [aux_sym_delete_token1] = ACTIONS(4249), - [aux_sym_highlight_token1] = ACTIONS(4249), - [aux_sym_edit_comment_token1] = ACTIONS(4249), - [anon_sym_CARET_LBRACK] = ACTIONS(4249), - [anon_sym_LBRACK_CARET] = ACTIONS(4249), - [sym_uri_autolink] = ACTIONS(4249), - [sym_email_autolink] = ACTIONS(4249), - [sym__whitespace_ge_2] = ACTIONS(4251), - [aux_sym__whitespace_token1] = ACTIONS(4251), - [sym__word_no_digit] = ACTIONS(4249), - [sym__digits] = ACTIONS(4249), - [anon_sym_DASH_DASH] = ACTIONS(4251), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4249), - [sym__code_span_start] = ACTIONS(4249), - [sym__emphasis_open_star] = ACTIONS(4249), - [sym__emphasis_open_underscore] = ACTIONS(4249), - [sym__strikeout_open] = ACTIONS(4249), - [sym__latex_span_start] = ACTIONS(4249), - [sym__single_quote_open] = ACTIONS(4249), - [sym__double_quote_open] = ACTIONS(4249), - [sym__superscript_open] = ACTIONS(4249), - [sym__subscript_open] = ACTIONS(4249), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4249), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4249), - [sym__cite_author_in_text] = ACTIONS(4249), - [sym__cite_suppress_author] = ACTIONS(4249), - [sym__shortcode_open_escaped] = ACTIONS(4249), - [sym__shortcode_open] = ACTIONS(4249), - [sym__unclosed_span] = ACTIONS(4249), - [sym__strong_emphasis_open_star] = ACTIONS(4249), - [sym__strong_emphasis_open_underscore] = ACTIONS(4249), + [anon_sym_PIPE] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_RPAREN] = ACTIONS(4291), + [sym__newline_token] = ACTIONS(4291), + [aux_sym_insert_token1] = ACTIONS(4291), + [aux_sym_insert_token2] = ACTIONS(4291), + [aux_sym_delete_token1] = ACTIONS(4291), + [aux_sym_highlight_token1] = ACTIONS(4291), + [aux_sym_edit_comment_token1] = ACTIONS(4291), + [anon_sym_CARET_LBRACK] = ACTIONS(4291), + [anon_sym_LBRACK_CARET] = ACTIONS(4291), + [sym_uri_autolink] = ACTIONS(4291), + [sym_email_autolink] = ACTIONS(4291), + [sym__whitespace_ge_2] = ACTIONS(4293), + [aux_sym__whitespace_token1] = ACTIONS(4293), + [sym__word_no_digit] = ACTIONS(4291), + [sym__digits] = ACTIONS(4291), + [anon_sym_DASH_DASH] = ACTIONS(4293), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), + [sym__code_span_start] = ACTIONS(4291), + [sym__emphasis_open_star] = ACTIONS(4291), + [sym__emphasis_open_underscore] = ACTIONS(4291), + [sym__strikeout_open] = ACTIONS(4291), + [sym__latex_span_start] = ACTIONS(4291), + [sym__single_quote_open] = ACTIONS(4291), + [sym__double_quote_open] = ACTIONS(4291), + [sym__superscript_open] = ACTIONS(4291), + [sym__subscript_open] = ACTIONS(4291), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4291), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4291), + [sym__cite_author_in_text] = ACTIONS(4291), + [sym__cite_suppress_author] = ACTIONS(4291), + [sym__shortcode_open_escaped] = ACTIONS(4291), + [sym__shortcode_open] = ACTIONS(4291), + [sym__unclosed_span] = ACTIONS(4291), + [sym__strong_emphasis_open_star] = ACTIONS(4291), + [sym__strong_emphasis_open_underscore] = ACTIONS(4291), }, [STATE(774)] = { - [sym__qmd_attribute] = STATE(1448), - [sym_raw_attribute] = STATE(1448), - [sym_commonmark_attribute] = STATE(1448), - [sym_language_attribute] = STATE(1448), - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), + [sym__qmd_attribute] = STATE(1449), + [sym_raw_attribute] = STATE(1449), + [sym_commonmark_attribute] = STATE(1449), + [sym_language_attribute] = STATE(1449), + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_insert_token2] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4277), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_insert_token2] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4273), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), }, [STATE(775)] = { - [sym__qmd_attribute] = STATE(1249), - [sym_raw_attribute] = STATE(1249), - [sym_commonmark_attribute] = STATE(1249), - [sym_language_attribute] = STATE(1249), - [sym__backslash_escape] = ACTIONS(4205), - [sym_entity_reference] = ACTIONS(4205), - [sym_numeric_character_reference] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(4207), - [anon_sym_GT] = ACTIONS(4205), - [anon_sym_BANG] = ACTIONS(4205), - [anon_sym_DQUOTE] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(4205), - [anon_sym_DOLLAR] = ACTIONS(4205), - [anon_sym_PERCENT] = ACTIONS(4205), - [anon_sym_AMP] = ACTIONS(4207), - [anon_sym_SQUOTE] = ACTIONS(4205), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_COMMA] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4207), - [anon_sym_DOT] = ACTIONS(4207), - [anon_sym_SLASH] = ACTIONS(4205), - [anon_sym_COLON] = ACTIONS(4205), - [anon_sym_SEMI] = ACTIONS(4205), - [anon_sym_EQ] = ACTIONS(4205), - [anon_sym_QMARK] = ACTIONS(4205), - [anon_sym_LBRACK] = ACTIONS(4207), - [anon_sym_BSLASH] = ACTIONS(4207), - [anon_sym_CARET] = ACTIONS(4207), - [anon_sym_BQUOTE] = ACTIONS(4205), + [sym__qmd_attribute] = STATE(1491), + [sym_raw_attribute] = STATE(1491), + [sym_commonmark_attribute] = STATE(1491), + [sym_language_attribute] = STATE(1491), + [ts_builtin_sym_end] = ACTIONS(4181), + [sym__backslash_escape] = ACTIONS(4181), + [sym_entity_reference] = ACTIONS(4181), + [sym_numeric_character_reference] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4181), + [anon_sym_DQUOTE] = ACTIONS(4181), + [anon_sym_POUND] = ACTIONS(4181), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_PERCENT] = ACTIONS(4181), + [anon_sym_AMP] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_EQ] = ACTIONS(4181), + [anon_sym_QMARK] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(4183), + [anon_sym_BSLASH] = ACTIONS(4183), + [anon_sym_CARET] = ACTIONS(4183), + [anon_sym_BQUOTE] = ACTIONS(4181), [anon_sym_LBRACE] = ACTIONS(4255), - [anon_sym_PIPE] = ACTIONS(4205), - [anon_sym_TILDE] = ACTIONS(4205), - [anon_sym_LPAREN] = ACTIONS(4205), - [anon_sym_RPAREN] = ACTIONS(4205), - [sym__newline_token] = ACTIONS(4205), - [aux_sym_insert_token1] = ACTIONS(4205), - [aux_sym_delete_token1] = ACTIONS(4205), - [aux_sym_highlight_token1] = ACTIONS(4205), - [aux_sym_edit_comment_token1] = ACTIONS(4205), - [anon_sym_CARET_LBRACK] = ACTIONS(4205), - [anon_sym_LBRACK_CARET] = ACTIONS(4205), - [sym_uri_autolink] = ACTIONS(4205), - [sym_email_autolink] = ACTIONS(4205), - [sym__whitespace_ge_2] = ACTIONS(4205), - [aux_sym__whitespace_token1] = ACTIONS(4207), - [sym__word_no_digit] = ACTIONS(4205), - [sym__digits] = ACTIONS(4205), - [anon_sym_DASH_DASH] = ACTIONS(4207), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4205), - [sym__code_span_start] = ACTIONS(4205), - [sym__emphasis_open_star] = ACTIONS(4205), - [sym__emphasis_open_underscore] = ACTIONS(4205), - [sym__strikeout_open] = ACTIONS(4205), - [sym__latex_span_start] = ACTIONS(4205), - [sym__single_quote_open] = ACTIONS(4205), - [sym__double_quote_open] = ACTIONS(4205), - [sym__superscript_open] = ACTIONS(4205), - [sym__subscript_open] = ACTIONS(4205), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4205), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4205), - [sym__cite_author_in_text] = ACTIONS(4205), - [sym__cite_suppress_author] = ACTIONS(4205), - [sym__shortcode_open_escaped] = ACTIONS(4205), - [sym__shortcode_open] = ACTIONS(4205), - [sym__unclosed_span] = ACTIONS(4205), - [sym__strong_emphasis_open_star] = ACTIONS(4205), - [sym__strong_emphasis_open_underscore] = ACTIONS(4205), - [sym__strong_emphasis_close_underscore] = ACTIONS(4205), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_TILDE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(4181), + [sym__newline_token] = ACTIONS(4181), + [aux_sym_insert_token1] = ACTIONS(4181), + [aux_sym_delete_token1] = ACTIONS(4181), + [aux_sym_highlight_token1] = ACTIONS(4181), + [aux_sym_edit_comment_token1] = ACTIONS(4181), + [anon_sym_CARET_LBRACK] = ACTIONS(4181), + [anon_sym_LBRACK_CARET] = ACTIONS(4181), + [sym_uri_autolink] = ACTIONS(4181), + [sym_email_autolink] = ACTIONS(4181), + [sym__whitespace_ge_2] = ACTIONS(4181), + [aux_sym__whitespace_token1] = ACTIONS(4183), + [sym__word_no_digit] = ACTIONS(4181), + [sym__digits] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4183), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4181), + [sym__code_span_start] = ACTIONS(4181), + [sym__emphasis_open_star] = ACTIONS(4181), + [sym__emphasis_open_underscore] = ACTIONS(4181), + [sym__strikeout_open] = ACTIONS(4181), + [sym__latex_span_start] = ACTIONS(4181), + [sym__single_quote_open] = ACTIONS(4181), + [sym__double_quote_open] = ACTIONS(4181), + [sym__superscript_open] = ACTIONS(4181), + [sym__subscript_open] = ACTIONS(4181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4181), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4181), + [sym__cite_author_in_text] = ACTIONS(4181), + [sym__cite_suppress_author] = ACTIONS(4181), + [sym__shortcode_open_escaped] = ACTIONS(4181), + [sym__shortcode_open] = ACTIONS(4181), + [sym__unclosed_span] = ACTIONS(4181), + [sym__strong_emphasis_open_star] = ACTIONS(4181), + [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, [STATE(776)] = { - [sym__soft_line_break] = STATE(1747), + [sym__soft_line_break] = STATE(1299), [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -100389,6 +100388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4329), [anon_sym_LBRACK] = ACTIONS(4331), [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4329), [anon_sym_CARET] = ACTIONS(4331), [anon_sym_BQUOTE] = ACTIONS(4329), [anon_sym_LBRACE] = ACTIONS(4329), @@ -100396,7 +100396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(4329), [anon_sym_LPAREN] = ACTIONS(4329), [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(595), + [sym__newline_token] = ACTIONS(95), [aux_sym_insert_token1] = ACTIONS(4329), [aux_sym_delete_token1] = ACTIONS(4329), [aux_sym_highlight_token1] = ACTIONS(4329), @@ -100415,12 +100415,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4333), + [sym__last_token_punctuation] = ACTIONS(4333), [sym__strikeout_open] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), [sym__double_quote_open] = ACTIONS(4329), - [sym__double_quote_close] = ACTIONS(4329), [sym__superscript_open] = ACTIONS(4329), [sym__subscript_open] = ACTIONS(4329), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), @@ -100434,214 +100433,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, [STATE(777)] = { - [sym__soft_line_break] = STATE(985), - [ts_builtin_sym_end] = ACTIONS(4335), - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(19), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4339), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(778)] = { - [sym__soft_line_break] = STATE(1298), - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_RBRACK] = ACTIONS(4335), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(95), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4341), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(779)] = { - [sym__soft_line_break] = STATE(1495), - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__emphasis_close_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4343), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(780)] = { - [sym__soft_line_break] = STATE(1495), + [sym__soft_line_break] = STATE(981), + [ts_builtin_sym_end] = ACTIONS(4329), [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -100672,7 +100465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(4329), [anon_sym_LPAREN] = ACTIONS(4329), [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(213), + [sym__newline_token] = ACTIONS(19), [aux_sym_insert_token1] = ACTIONS(4329), [aux_sym_delete_token1] = ACTIONS(4329), [aux_sym_highlight_token1] = ACTIONS(4329), @@ -100691,8 +100484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__emphasis_close_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4345), + [sym__last_token_punctuation] = ACTIONS(4335), [sym__strikeout_open] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), @@ -100709,77 +100501,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4329), [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(781)] = { - [sym__soft_line_break] = STATE(1103), - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(815), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4347), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_close_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(778)] = { + [sym__soft_line_break] = STATE(1299), + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_RBRACK] = ACTIONS(4337), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4341), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), }, - [STATE(782)] = { - [sym__soft_line_break] = STATE(1103), + [STATE(779)] = { + [sym__soft_line_break] = STATE(1100), [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -100810,7 +100602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(4329), [anon_sym_LPAREN] = ACTIONS(4329), [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(815), + [sym__newline_token] = ACTIONS(813), [aux_sym_insert_token1] = ACTIONS(4329), [aux_sym_delete_token1] = ACTIONS(4329), [aux_sym_highlight_token1] = ACTIONS(4329), @@ -100829,7 +100621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4349), + [sym__last_token_punctuation] = ACTIONS(4343), [sym__strikeout_open] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), @@ -100847,77 +100639,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4329), [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(783)] = { - [sym__soft_line_break] = STATE(1670), - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(521), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4351), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__single_quote_close] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(780)] = { + [sym__soft_line_break] = STATE(1100), + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(813), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4345), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_close_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), }, - [STATE(784)] = { - [sym__soft_line_break] = STATE(1670), + [STATE(781)] = { + [sym__soft_line_break] = STATE(1483), [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -100948,7 +100740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(4329), [anon_sym_LPAREN] = ACTIONS(4329), [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(521), + [sym__newline_token] = ACTIONS(441), [aux_sym_insert_token1] = ACTIONS(4329), [aux_sym_delete_token1] = ACTIONS(4329), [aux_sym_highlight_token1] = ACTIONS(4329), @@ -100967,11 +100759,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4353), + [sym__emphasis_close_underscore] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4347), [sym__strikeout_open] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), - [sym__single_quote_close] = ACTIONS(4329), [sym__double_quote_open] = ACTIONS(4329), [sym__superscript_open] = ACTIONS(4329), [sym__subscript_open] = ACTIONS(4329), @@ -100985,77 +100777,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4329), [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(785)] = { - [sym__soft_line_break] = STATE(1174), - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(369), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__emphasis_close_star] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4355), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(786)] = { - [sym__soft_line_break] = STATE(1174), + [STATE(782)] = { + [sym__soft_line_break] = STATE(1664), [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -101086,7 +100809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(4329), [anon_sym_LPAREN] = ACTIONS(4329), [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(369), + [sym__newline_token] = ACTIONS(591), [aux_sym_insert_token1] = ACTIONS(4329), [aux_sym_delete_token1] = ACTIONS(4329), [aux_sym_highlight_token1] = ACTIONS(4329), @@ -101105,11 +100828,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__emphasis_close_star] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4357), + [sym__last_token_punctuation] = ACTIONS(4349), [sym__strikeout_open] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), + [sym__single_quote_close] = ACTIONS(4329), [sym__double_quote_open] = ACTIONS(4329), [sym__superscript_open] = ACTIONS(4329), [sym__subscript_open] = ACTIONS(4329), @@ -101123,146 +100846,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4329), [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(787)] = { - [sym__soft_line_break] = STATE(1583), - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(447), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4359), - [sym__strikeout_open] = ACTIONS(4335), - [sym__strikeout_close] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(783)] = { + [sym__soft_line_break] = STATE(1664), + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4351), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__single_quote_close] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), }, - [STATE(788)] = { - [sym__soft_line_break] = STATE(936), - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(667), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4361), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__superscript_close] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(784)] = { + [sym__soft_line_break] = STATE(1483), + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(441), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__emphasis_close_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4353), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), }, - [STATE(789)] = { - [sym__soft_line_break] = STATE(936), + [STATE(785)] = { + [sym__soft_line_break] = STATE(1151), [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -101293,7 +101016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(4329), [anon_sym_LPAREN] = ACTIONS(4329), [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(667), + [sym__newline_token] = ACTIONS(367), [aux_sym_insert_token1] = ACTIONS(4329), [aux_sym_delete_token1] = ACTIONS(4329), [aux_sym_highlight_token1] = ACTIONS(4329), @@ -101312,13 +101035,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4363), + [sym__emphasis_close_star] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4355), [sym__strikeout_open] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), [sym__double_quote_open] = ACTIONS(4329), [sym__superscript_open] = ACTIONS(4329), - [sym__superscript_close] = ACTIONS(4329), [sym__subscript_open] = ACTIONS(4329), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), @@ -101330,8 +101053,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4329), [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(790)] = { - [sym__soft_line_break] = STATE(1583), + [STATE(786)] = { + [sym__soft_line_break] = STATE(932), [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -101362,7 +101085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(4329), [anon_sym_LPAREN] = ACTIONS(4329), [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(447), + [sym__newline_token] = ACTIONS(213), [aux_sym_insert_token1] = ACTIONS(4329), [aux_sym_delete_token1] = ACTIONS(4329), [aux_sym_highlight_token1] = ACTIONS(4329), @@ -101381,13 +101104,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4365), + [sym__last_token_punctuation] = ACTIONS(4357), [sym__strikeout_open] = ACTIONS(4329), - [sym__strikeout_close] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), [sym__double_quote_open] = ACTIONS(4329), [sym__superscript_open] = ACTIONS(4329), + [sym__superscript_close] = ACTIONS(4329), [sym__subscript_open] = ACTIONS(4329), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), @@ -101399,8 +101122,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4329), [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(791)] = { - [sym__soft_line_break] = STATE(1298), + [STATE(787)] = { + [sym__soft_line_break] = STATE(932), + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4359), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__superscript_close] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), + }, + [STATE(788)] = { + [sym__soft_line_break] = STATE(1578), [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -101424,7 +101216,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4329), [anon_sym_LBRACK] = ACTIONS(4331), [anon_sym_BSLASH] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4329), [anon_sym_CARET] = ACTIONS(4331), [anon_sym_BQUOTE] = ACTIONS(4329), [anon_sym_LBRACE] = ACTIONS(4329), @@ -101432,7 +101223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(4329), [anon_sym_LPAREN] = ACTIONS(4329), [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(95), + [sym__newline_token] = ACTIONS(517), [aux_sym_insert_token1] = ACTIONS(4329), [aux_sym_delete_token1] = ACTIONS(4329), [aux_sym_highlight_token1] = ACTIONS(4329), @@ -101451,8 +101242,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4367), + [sym__last_token_punctuation] = ACTIONS(4361), [sym__strikeout_open] = ACTIONS(4329), + [sym__strikeout_close] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), [sym__double_quote_open] = ACTIONS(4329), @@ -101468,77 +101260,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4329), [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(792)] = { - [sym__soft_line_break] = STATE(1196), - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(889), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4369), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - [sym__strong_emphasis_close_underscore] = ACTIONS(4335), - }, - [STATE(793)] = { - [sym__soft_line_break] = STATE(1196), + [STATE(789)] = { + [sym__soft_line_break] = STATE(1578), + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(517), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4363), + [sym__strikeout_open] = ACTIONS(4337), + [sym__strikeout_close] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), + }, + [STATE(790)] = { + [sym__soft_line_break] = STATE(1151), + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(367), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__emphasis_close_star] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4365), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), + }, + [STATE(791)] = { + [sym__soft_line_break] = STATE(1195), [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -101569,7 +101430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(4329), [anon_sym_LPAREN] = ACTIONS(4329), [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(889), + [sym__newline_token] = ACTIONS(887), [aux_sym_insert_token1] = ACTIONS(4329), [aux_sym_delete_token1] = ACTIONS(4329), [aux_sym_highlight_token1] = ACTIONS(4329), @@ -101588,7 +101449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4371), + [sym__last_token_punctuation] = ACTIONS(4367), [sym__strikeout_open] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), @@ -101606,9 +101467,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4329), [sym__strong_emphasis_close_underscore] = ACTIONS(4329), }, + [STATE(792)] = { + [sym__soft_line_break] = STATE(1195), + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(887), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4369), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), + [sym__strong_emphasis_close_underscore] = ACTIONS(4337), + }, + [STATE(793)] = { + [sym__soft_line_break] = STATE(981), + [ts_builtin_sym_end] = ACTIONS(4337), + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(19), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4371), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), + }, [STATE(794)] = { - [sym__soft_line_break] = STATE(985), - [ts_builtin_sym_end] = ACTIONS(4329), + [sym__soft_line_break] = STATE(1406), [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -101639,8 +101637,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(4329), [anon_sym_LPAREN] = ACTIONS(4329), [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(19), + [sym__newline_token] = ACTIONS(287), [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_insert_token2] = ACTIONS(4329), [aux_sym_delete_token1] = ACTIONS(4329), [aux_sym_highlight_token1] = ACTIONS(4329), [aux_sym_edit_comment_token1] = ACTIONS(4329), @@ -101648,7 +101647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_CARET] = ACTIONS(4329), [sym_uri_autolink] = ACTIONS(4329), [sym_email_autolink] = ACTIONS(4329), - [sym__whitespace_ge_2] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4331), [aux_sym__whitespace_token1] = ACTIONS(4331), [sym__word_no_digit] = ACTIONS(4329), [sym__digits] = ACTIONS(4329), @@ -101658,7 +101657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4373), + [sym__last_token_punctuation] = ACTIONS(4373), [sym__strikeout_open] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), @@ -101676,76 +101675,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, [STATE(795)] = { - [sym__soft_line_break] = STATE(1405), - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), + [sym__soft_line_break] = STATE(1406), + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), [sym__newline_token] = ACTIONS(287), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_insert_token2] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4337), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4375), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_insert_token2] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4339), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4375), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), }, [STATE(796)] = { - [sym__soft_line_break] = STATE(1405), + [sym__soft_line_break] = STATE(1011), [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -101776,9 +101775,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(4329), [anon_sym_LPAREN] = ACTIONS(4329), [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(287), + [sym__newline_token] = ACTIONS(739), [aux_sym_insert_token1] = ACTIONS(4329), - [aux_sym_insert_token2] = ACTIONS(4329), [aux_sym_delete_token1] = ACTIONS(4329), [aux_sym_highlight_token1] = ACTIONS(4329), [aux_sym_edit_comment_token1] = ACTIONS(4329), @@ -101786,7 +101784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_CARET] = ACTIONS(4329), [sym_uri_autolink] = ACTIONS(4329), [sym_email_autolink] = ACTIONS(4329), - [sym__whitespace_ge_2] = ACTIONS(4331), + [sym__whitespace_ge_2] = ACTIONS(4329), [aux_sym__whitespace_token1] = ACTIONS(4331), [sym__word_no_digit] = ACTIONS(4329), [sym__digits] = ACTIONS(4329), @@ -101796,13 +101794,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4377), + [sym__last_token_punctuation] = ACTIONS(4377), [sym__strikeout_open] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), [sym__double_quote_open] = ACTIONS(4329), [sym__superscript_open] = ACTIONS(4329), [sym__subscript_open] = ACTIONS(4329), + [sym__subscript_close] = ACTIONS(4329), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), [sym__cite_author_in_text] = ACTIONS(4329), @@ -101814,76 +101813,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, [STATE(797)] = { - [sym__soft_line_break] = STATE(1016), - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(741), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4379), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__subscript_close] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [sym__soft_line_break] = STATE(1011), + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(739), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4379), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__subscript_close] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), }, [STATE(798)] = { - [sym__soft_line_break] = STATE(1016), + [sym__soft_line_break] = STATE(1742), [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -101914,7 +101913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(4329), [anon_sym_LPAREN] = ACTIONS(4329), [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(741), + [sym__newline_token] = ACTIONS(665), [aux_sym_insert_token1] = ACTIONS(4329), [aux_sym_delete_token1] = ACTIONS(4329), [aux_sym_highlight_token1] = ACTIONS(4329), @@ -101933,14 +101932,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4381), + [sym__last_token_punctuation] = ACTIONS(4381), [sym__strikeout_open] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), [sym__double_quote_open] = ACTIONS(4329), + [sym__double_quote_close] = ACTIONS(4329), [sym__superscript_open] = ACTIONS(4329), [sym__subscript_open] = ACTIONS(4329), - [sym__subscript_close] = ACTIONS(4329), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), [sym__cite_author_in_text] = ACTIONS(4329), @@ -101952,345 +101951,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, [STATE(799)] = { - [sym__soft_line_break] = STATE(1747), - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(595), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4383), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__double_quote_close] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [sym__soft_line_break] = STATE(1742), + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(665), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4383), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__double_quote_close] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), }, [STATE(800)] = { - [sym__backslash_escape] = ACTIONS(4329), - [sym_entity_reference] = ACTIONS(4329), - [sym_numeric_character_reference] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4331), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_DQUOTE] = ACTIONS(4329), - [anon_sym_POUND] = ACTIONS(4329), - [anon_sym_DOLLAR] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4331), - [anon_sym_SQUOTE] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(4329), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_EQ] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4331), - [anon_sym_BSLASH] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_BQUOTE] = ACTIONS(4329), - [anon_sym_LBRACE] = ACTIONS(4329), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_TILDE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(4329), - [aux_sym_insert_token1] = ACTIONS(4329), - [aux_sym_delete_token1] = ACTIONS(4329), - [aux_sym_highlight_token1] = ACTIONS(4329), - [aux_sym_edit_comment_token1] = ACTIONS(4329), - [anon_sym_CARET_LBRACK] = ACTIONS(4329), - [anon_sym_LBRACK_CARET] = ACTIONS(4329), - [sym_uri_autolink] = ACTIONS(4329), - [sym_email_autolink] = ACTIONS(4329), - [sym__whitespace_ge_2] = ACTIONS(4329), - [aux_sym__whitespace_token1] = ACTIONS(4331), - [sym__word_no_digit] = ACTIONS(4329), - [sym__digits] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), - [sym__code_span_start] = ACTIONS(4329), - [sym__emphasis_open_star] = ACTIONS(4329), - [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4349), - [sym__strikeout_open] = ACTIONS(4329), - [sym__latex_span_start] = ACTIONS(4329), - [sym__single_quote_open] = ACTIONS(4329), - [sym__double_quote_open] = ACTIONS(4329), - [sym__superscript_open] = ACTIONS(4329), - [sym__subscript_open] = ACTIONS(4329), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), - [sym__cite_author_in_text] = ACTIONS(4329), - [sym__cite_suppress_author] = ACTIONS(4329), - [sym__shortcode_open_escaped] = ACTIONS(4329), - [sym__shortcode_open] = ACTIONS(4329), - [sym__unclosed_span] = ACTIONS(4329), - [sym__strong_emphasis_open_star] = ACTIONS(4329), - [sym__strong_emphasis_close_star] = ACTIONS(4329), - [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + [ts_builtin_sym_end] = ACTIONS(4385), + [sym__backslash_escape] = ACTIONS(4385), + [sym_entity_reference] = ACTIONS(4385), + [sym_numeric_character_reference] = ACTIONS(4385), + [anon_sym_LT] = ACTIONS(4387), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_BANG] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(4385), + [anon_sym_POUND] = ACTIONS(4385), + [anon_sym_DOLLAR] = ACTIONS(4385), + [anon_sym_PERCENT] = ACTIONS(4385), + [anon_sym_AMP] = ACTIONS(4387), + [anon_sym_SQUOTE] = ACTIONS(4385), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_COMMA] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4387), + [anon_sym_SLASH] = ACTIONS(4385), + [anon_sym_COLON] = ACTIONS(4385), + [anon_sym_SEMI] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(4385), + [anon_sym_QMARK] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_BSLASH] = ACTIONS(4387), + [anon_sym_CARET] = ACTIONS(4387), + [anon_sym_BQUOTE] = ACTIONS(4385), + [anon_sym_LBRACE] = ACTIONS(4385), + [anon_sym_PIPE] = ACTIONS(4385), + [anon_sym_TILDE] = ACTIONS(4385), + [anon_sym_LPAREN] = ACTIONS(4385), + [anon_sym_RPAREN] = ACTIONS(4385), + [sym__newline_token] = ACTIONS(4385), + [aux_sym_insert_token1] = ACTIONS(4385), + [aux_sym_delete_token1] = ACTIONS(4385), + [aux_sym_highlight_token1] = ACTIONS(4385), + [aux_sym_edit_comment_token1] = ACTIONS(4385), + [anon_sym_CARET_LBRACK] = ACTIONS(4385), + [anon_sym_LBRACK_CARET] = ACTIONS(4385), + [sym_uri_autolink] = ACTIONS(4385), + [sym_email_autolink] = ACTIONS(4385), + [sym__whitespace_ge_2] = ACTIONS(4385), + [aux_sym__whitespace_token1] = ACTIONS(4387), + [sym__word_no_digit] = ACTIONS(4385), + [sym__digits] = ACTIONS(4385), + [anon_sym_DASH_DASH] = ACTIONS(4387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4385), + [sym__code_span_start] = ACTIONS(4385), + [sym__emphasis_open_star] = ACTIONS(4385), + [sym__emphasis_open_underscore] = ACTIONS(4385), + [sym__last_token_punctuation] = ACTIONS(4389), + [sym__strikeout_open] = ACTIONS(4385), + [sym__latex_span_start] = ACTIONS(4385), + [sym__single_quote_open] = ACTIONS(4385), + [sym__double_quote_open] = ACTIONS(4385), + [sym__superscript_open] = ACTIONS(4385), + [sym__subscript_open] = ACTIONS(4385), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4385), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4385), + [sym__cite_author_in_text] = ACTIONS(4385), + [sym__cite_suppress_author] = ACTIONS(4385), + [sym__shortcode_open_escaped] = ACTIONS(4385), + [sym__shortcode_open] = ACTIONS(4385), + [sym__unclosed_span] = ACTIONS(4385), + [sym__strong_emphasis_open_star] = ACTIONS(4385), + [sym__strong_emphasis_open_underscore] = ACTIONS(4385), }, [STATE(801)] = { - [sym__backslash_escape] = ACTIONS(4329), - [sym_entity_reference] = ACTIONS(4329), - [sym_numeric_character_reference] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4331), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_DQUOTE] = ACTIONS(4329), - [anon_sym_POUND] = ACTIONS(4329), - [anon_sym_DOLLAR] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4331), - [anon_sym_SQUOTE] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(4329), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_EQ] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4331), - [anon_sym_BSLASH] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_BQUOTE] = ACTIONS(4329), - [anon_sym_LBRACE] = ACTIONS(4329), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_TILDE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(4329), - [aux_sym_insert_token1] = ACTIONS(4329), - [aux_sym_delete_token1] = ACTIONS(4329), - [aux_sym_highlight_token1] = ACTIONS(4329), - [aux_sym_edit_comment_token1] = ACTIONS(4329), - [anon_sym_CARET_LBRACK] = ACTIONS(4329), - [anon_sym_LBRACK_CARET] = ACTIONS(4329), - [sym_uri_autolink] = ACTIONS(4329), - [sym_email_autolink] = ACTIONS(4329), - [sym__whitespace_ge_2] = ACTIONS(4329), - [aux_sym__whitespace_token1] = ACTIONS(4331), - [sym__word_no_digit] = ACTIONS(4329), - [sym__digits] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), - [sym__code_span_start] = ACTIONS(4329), - [sym__emphasis_open_star] = ACTIONS(4329), - [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4381), - [sym__strikeout_open] = ACTIONS(4329), - [sym__latex_span_start] = ACTIONS(4329), - [sym__single_quote_open] = ACTIONS(4329), - [sym__double_quote_open] = ACTIONS(4329), - [sym__superscript_open] = ACTIONS(4329), - [sym__subscript_open] = ACTIONS(4329), - [sym__subscript_close] = ACTIONS(4329), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), - [sym__cite_author_in_text] = ACTIONS(4329), - [sym__cite_suppress_author] = ACTIONS(4329), - [sym__shortcode_open_escaped] = ACTIONS(4329), - [sym__shortcode_open] = ACTIONS(4329), - [sym__unclosed_span] = ACTIONS(4329), - [sym__strong_emphasis_open_star] = ACTIONS(4329), - [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(4337), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4379), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__subscript_close] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), }, [STATE(802)] = { - [sym__backslash_escape] = ACTIONS(4329), - [sym_entity_reference] = ACTIONS(4329), - [sym_numeric_character_reference] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4331), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_DQUOTE] = ACTIONS(4329), - [anon_sym_POUND] = ACTIONS(4329), - [anon_sym_DOLLAR] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4331), - [anon_sym_SQUOTE] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(4329), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_EQ] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4331), - [anon_sym_BSLASH] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_BQUOTE] = ACTIONS(4329), - [anon_sym_LBRACE] = ACTIONS(4329), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_TILDE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(4329), - [aux_sym_insert_token1] = ACTIONS(4329), - [aux_sym_delete_token1] = ACTIONS(4329), - [aux_sym_highlight_token1] = ACTIONS(4329), - [aux_sym_edit_comment_token1] = ACTIONS(4329), - [anon_sym_CARET_LBRACK] = ACTIONS(4329), - [anon_sym_LBRACK_CARET] = ACTIONS(4329), - [sym_uri_autolink] = ACTIONS(4329), - [sym_email_autolink] = ACTIONS(4329), - [sym__whitespace_ge_2] = ACTIONS(4329), - [aux_sym__whitespace_token1] = ACTIONS(4331), - [sym__word_no_digit] = ACTIONS(4329), - [sym__digits] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), - [sym__code_span_start] = ACTIONS(4329), - [sym__emphasis_open_star] = ACTIONS(4329), - [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__emphasis_close_star] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4357), - [sym__strikeout_open] = ACTIONS(4329), - [sym__latex_span_start] = ACTIONS(4329), - [sym__single_quote_open] = ACTIONS(4329), - [sym__double_quote_open] = ACTIONS(4329), - [sym__superscript_open] = ACTIONS(4329), - [sym__subscript_open] = ACTIONS(4329), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), - [sym__cite_author_in_text] = ACTIONS(4329), - [sym__cite_suppress_author] = ACTIONS(4329), - [sym__shortcode_open_escaped] = ACTIONS(4329), - [sym__shortcode_open] = ACTIONS(4329), - [sym__unclosed_span] = ACTIONS(4329), - [sym__strong_emphasis_open_star] = ACTIONS(4329), - [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__last_token_punctuation] = ACTIONS(4395), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__subscript_close] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), }, [STATE(803)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4351), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__single_quote_close] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [sym__backslash_escape] = ACTIONS(4397), + [sym_entity_reference] = ACTIONS(4397), + [sym_numeric_character_reference] = ACTIONS(4397), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4397), + [anon_sym_POUND] = ACTIONS(4397), + [anon_sym_DOLLAR] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_COMMA] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_COLON] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), + [anon_sym_QMARK] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_BSLASH] = ACTIONS(4399), + [anon_sym_CARET] = ACTIONS(4399), + [anon_sym_BQUOTE] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_PIPE] = ACTIONS(4397), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_RPAREN] = ACTIONS(4397), + [sym__newline_token] = ACTIONS(4397), + [aux_sym_insert_token1] = ACTIONS(4397), + [aux_sym_delete_token1] = ACTIONS(4397), + [aux_sym_highlight_token1] = ACTIONS(4397), + [aux_sym_edit_comment_token1] = ACTIONS(4397), + [anon_sym_CARET_LBRACK] = ACTIONS(4397), + [anon_sym_LBRACK_CARET] = ACTIONS(4397), + [sym_uri_autolink] = ACTIONS(4397), + [sym_email_autolink] = ACTIONS(4397), + [sym__whitespace_ge_2] = ACTIONS(4397), + [aux_sym__whitespace_token1] = ACTIONS(4399), + [sym__word_no_digit] = ACTIONS(4397), + [sym__digits] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4397), + [sym__code_span_start] = ACTIONS(4397), + [sym__emphasis_open_star] = ACTIONS(4397), + [sym__emphasis_open_underscore] = ACTIONS(4397), + [sym__emphasis_close_star] = ACTIONS(4397), + [sym__last_token_whitespace] = ACTIONS(4401), + [sym__strikeout_open] = ACTIONS(4397), + [sym__latex_span_start] = ACTIONS(4397), + [sym__single_quote_open] = ACTIONS(4397), + [sym__double_quote_open] = ACTIONS(4397), + [sym__superscript_open] = ACTIONS(4397), + [sym__subscript_open] = ACTIONS(4397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4397), + [sym__cite_author_in_text] = ACTIONS(4397), + [sym__cite_suppress_author] = ACTIONS(4397), + [sym__shortcode_open_escaped] = ACTIONS(4397), + [sym__shortcode_open] = ACTIONS(4397), + [sym__unclosed_span] = ACTIONS(4397), + [sym__strong_emphasis_open_star] = ACTIONS(4397), + [sym__strong_emphasis_open_underscore] = ACTIONS(4397), }, [STATE(804)] = { [sym__backslash_escape] = ACTIONS(4385), @@ -102342,7 +102341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4385), [sym__emphasis_open_star] = ACTIONS(4385), [sym__emphasis_open_underscore] = ACTIONS(4385), - [sym__last_token_punctuation] = ACTIONS(4389), + [sym__last_token_punctuation] = ACTIONS(4403), [sym__strikeout_open] = ACTIONS(4385), [sym__latex_span_start] = ACTIONS(4385), [sym__single_quote_open] = ACTIONS(4385), @@ -102361,346 +102360,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4385), }, [STATE(805)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4351), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__single_quote_close] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(806)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__emphasis_close_star] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4355), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(807)] = { - [sym__backslash_escape] = ACTIONS(4393), - [sym_entity_reference] = ACTIONS(4393), - [sym_numeric_character_reference] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_DQUOTE] = ACTIONS(4393), - [anon_sym_POUND] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_QMARK] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_BSLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym_BQUOTE] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4393), - [anon_sym_TILDE] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [sym__newline_token] = ACTIONS(4393), - [aux_sym_insert_token1] = ACTIONS(4393), - [aux_sym_delete_token1] = ACTIONS(4393), - [aux_sym_highlight_token1] = ACTIONS(4393), - [aux_sym_edit_comment_token1] = ACTIONS(4393), - [anon_sym_CARET_LBRACK] = ACTIONS(4393), - [anon_sym_LBRACK_CARET] = ACTIONS(4393), - [sym_uri_autolink] = ACTIONS(4393), - [sym_email_autolink] = ACTIONS(4393), - [sym__whitespace_ge_2] = ACTIONS(4393), - [aux_sym__whitespace_token1] = ACTIONS(4395), - [sym__word_no_digit] = ACTIONS(4393), - [sym__digits] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4393), - [sym__code_span_start] = ACTIONS(4393), - [sym__emphasis_open_star] = ACTIONS(4393), - [sym__emphasis_open_underscore] = ACTIONS(4393), - [sym__last_token_whitespace] = ACTIONS(4397), - [sym__strikeout_open] = ACTIONS(4393), - [sym__strikeout_close] = ACTIONS(4393), - [sym__latex_span_start] = ACTIONS(4393), - [sym__single_quote_open] = ACTIONS(4393), - [sym__double_quote_open] = ACTIONS(4393), - [sym__superscript_open] = ACTIONS(4393), - [sym__subscript_open] = ACTIONS(4393), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4393), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4393), - [sym__cite_author_in_text] = ACTIONS(4393), - [sym__cite_suppress_author] = ACTIONS(4393), - [sym__shortcode_open_escaped] = ACTIONS(4393), - [sym__shortcode_open] = ACTIONS(4393), - [sym__unclosed_span] = ACTIONS(4393), - [sym__strong_emphasis_open_star] = ACTIONS(4393), - [sym__strong_emphasis_open_underscore] = ACTIONS(4393), - }, - [STATE(808)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__emphasis_close_star] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4355), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(809)] = { - [ts_builtin_sym_end] = ACTIONS(4393), - [sym__backslash_escape] = ACTIONS(4393), - [sym_entity_reference] = ACTIONS(4393), - [sym_numeric_character_reference] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_DQUOTE] = ACTIONS(4393), - [anon_sym_POUND] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_QMARK] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_BSLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym_BQUOTE] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4393), - [anon_sym_TILDE] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [sym__newline_token] = ACTIONS(4393), - [aux_sym_insert_token1] = ACTIONS(4393), - [aux_sym_delete_token1] = ACTIONS(4393), - [aux_sym_highlight_token1] = ACTIONS(4393), - [aux_sym_edit_comment_token1] = ACTIONS(4393), - [anon_sym_CARET_LBRACK] = ACTIONS(4393), - [anon_sym_LBRACK_CARET] = ACTIONS(4393), - [sym_uri_autolink] = ACTIONS(4393), - [sym_email_autolink] = ACTIONS(4393), - [sym__whitespace_ge_2] = ACTIONS(4393), - [aux_sym__whitespace_token1] = ACTIONS(4395), - [sym__word_no_digit] = ACTIONS(4393), - [sym__digits] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4393), - [sym__code_span_start] = ACTIONS(4393), - [sym__emphasis_open_star] = ACTIONS(4393), - [sym__emphasis_open_underscore] = ACTIONS(4393), - [sym__last_token_whitespace] = ACTIONS(4399), - [sym__strikeout_open] = ACTIONS(4393), - [sym__latex_span_start] = ACTIONS(4393), - [sym__single_quote_open] = ACTIONS(4393), - [sym__double_quote_open] = ACTIONS(4393), - [sym__superscript_open] = ACTIONS(4393), - [sym__subscript_open] = ACTIONS(4393), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4393), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4393), - [sym__cite_author_in_text] = ACTIONS(4393), - [sym__cite_suppress_author] = ACTIONS(4393), - [sym__shortcode_open_escaped] = ACTIONS(4393), - [sym__shortcode_open] = ACTIONS(4393), - [sym__unclosed_span] = ACTIONS(4393), - [sym__strong_emphasis_open_star] = ACTIONS(4393), - [sym__strong_emphasis_open_underscore] = ACTIONS(4393), - }, - [STATE(810)] = { [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -102750,11 +102409,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4365), + [sym__last_token_punctuation] = ACTIONS(4349), [sym__strikeout_open] = ACTIONS(4329), - [sym__strikeout_close] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), + [sym__single_quote_close] = ACTIONS(4329), [sym__double_quote_open] = ACTIONS(4329), [sym__superscript_open] = ACTIONS(4329), [sym__subscript_open] = ACTIONS(4329), @@ -102768,619 +102427,415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4329), [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(811)] = { - [sym__backslash_escape] = ACTIONS(4385), - [sym_entity_reference] = ACTIONS(4385), - [sym_numeric_character_reference] = ACTIONS(4385), - [anon_sym_LT] = ACTIONS(4387), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_POUND] = ACTIONS(4385), - [anon_sym_DOLLAR] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(4387), - [anon_sym_SQUOTE] = ACTIONS(4385), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_COMMA] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4387), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_COLON] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_QMARK] = ACTIONS(4385), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_BSLASH] = ACTIONS(4387), - [anon_sym_CARET] = ACTIONS(4387), - [anon_sym_BQUOTE] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4385), - [anon_sym_PIPE] = ACTIONS(4385), - [anon_sym_TILDE] = ACTIONS(4385), - [anon_sym_LPAREN] = ACTIONS(4385), - [anon_sym_RPAREN] = ACTIONS(4385), - [sym__newline_token] = ACTIONS(4385), - [aux_sym_insert_token1] = ACTIONS(4385), - [aux_sym_delete_token1] = ACTIONS(4385), - [aux_sym_highlight_token1] = ACTIONS(4385), - [aux_sym_edit_comment_token1] = ACTIONS(4385), - [anon_sym_CARET_LBRACK] = ACTIONS(4385), - [anon_sym_LBRACK_CARET] = ACTIONS(4385), - [sym_uri_autolink] = ACTIONS(4385), - [sym_email_autolink] = ACTIONS(4385), - [sym__whitespace_ge_2] = ACTIONS(4385), - [aux_sym__whitespace_token1] = ACTIONS(4387), - [sym__word_no_digit] = ACTIONS(4385), - [sym__digits] = ACTIONS(4385), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4385), - [sym__code_span_start] = ACTIONS(4385), - [sym__emphasis_open_star] = ACTIONS(4385), - [sym__emphasis_open_underscore] = ACTIONS(4385), - [sym__last_token_punctuation] = ACTIONS(4401), - [sym__strikeout_open] = ACTIONS(4385), - [sym__latex_span_start] = ACTIONS(4385), - [sym__single_quote_open] = ACTIONS(4385), - [sym__double_quote_open] = ACTIONS(4385), - [sym__superscript_open] = ACTIONS(4385), - [sym__subscript_open] = ACTIONS(4385), - [sym__subscript_close] = ACTIONS(4385), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4385), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4385), - [sym__cite_author_in_text] = ACTIONS(4385), - [sym__cite_suppress_author] = ACTIONS(4385), - [sym__shortcode_open_escaped] = ACTIONS(4385), - [sym__shortcode_open] = ACTIONS(4385), - [sym__unclosed_span] = ACTIONS(4385), - [sym__strong_emphasis_open_star] = ACTIONS(4385), - [sym__strong_emphasis_open_underscore] = ACTIONS(4385), - }, - [STATE(812)] = { - [sym__backslash_escape] = ACTIONS(4403), - [sym_entity_reference] = ACTIONS(4403), - [sym_numeric_character_reference] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4403), - [anon_sym_DQUOTE] = ACTIONS(4403), - [anon_sym_POUND] = ACTIONS(4403), - [anon_sym_DOLLAR] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_AMP] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4403), - [anon_sym_COMMA] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_COLON] = ACTIONS(4403), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_EQ] = ACTIONS(4403), - [anon_sym_QMARK] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_BSLASH] = ACTIONS(4405), - [anon_sym_CARET] = ACTIONS(4405), - [anon_sym_BQUOTE] = ACTIONS(4403), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_PIPE] = ACTIONS(4403), - [anon_sym_TILDE] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_RPAREN] = ACTIONS(4403), - [sym__newline_token] = ACTIONS(4403), - [aux_sym_insert_token1] = ACTIONS(4403), - [aux_sym_delete_token1] = ACTIONS(4403), - [aux_sym_highlight_token1] = ACTIONS(4403), - [aux_sym_edit_comment_token1] = ACTIONS(4403), - [anon_sym_CARET_LBRACK] = ACTIONS(4403), - [anon_sym_LBRACK_CARET] = ACTIONS(4403), - [sym_uri_autolink] = ACTIONS(4403), - [sym_email_autolink] = ACTIONS(4403), - [sym__whitespace_ge_2] = ACTIONS(4403), - [aux_sym__whitespace_token1] = ACTIONS(4405), - [sym__word_no_digit] = ACTIONS(4403), - [sym__digits] = ACTIONS(4403), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4403), - [sym__code_span_start] = ACTIONS(4403), - [sym__emphasis_open_star] = ACTIONS(4403), - [sym__emphasis_open_underscore] = ACTIONS(4403), - [sym__last_token_punctuation] = ACTIONS(4407), - [sym__strikeout_open] = ACTIONS(4403), - [sym__latex_span_start] = ACTIONS(4403), - [sym__single_quote_open] = ACTIONS(4403), - [sym__double_quote_open] = ACTIONS(4403), - [sym__superscript_open] = ACTIONS(4403), - [sym__subscript_open] = ACTIONS(4403), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4403), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4403), - [sym__cite_author_in_text] = ACTIONS(4403), - [sym__cite_suppress_author] = ACTIONS(4403), - [sym__shortcode_open_escaped] = ACTIONS(4403), - [sym__shortcode_open] = ACTIONS(4403), - [sym__unclosed_span] = ACTIONS(4403), - [sym__strong_emphasis_open_star] = ACTIONS(4403), - [sym__strong_emphasis_close_star] = ACTIONS(4403), - [sym__strong_emphasis_open_underscore] = ACTIONS(4403), - }, - [STATE(813)] = { - [sym__backslash_escape] = ACTIONS(4403), - [sym_entity_reference] = ACTIONS(4403), - [sym_numeric_character_reference] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4403), - [anon_sym_DQUOTE] = ACTIONS(4403), - [anon_sym_POUND] = ACTIONS(4403), - [anon_sym_DOLLAR] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_AMP] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4403), - [anon_sym_COMMA] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_COLON] = ACTIONS(4403), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_EQ] = ACTIONS(4403), - [anon_sym_QMARK] = ACTIONS(4403), + [STATE(806)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_BSLASH] = ACTIONS(4405), - [anon_sym_CARET] = ACTIONS(4405), - [anon_sym_BQUOTE] = ACTIONS(4403), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_PIPE] = ACTIONS(4403), - [anon_sym_TILDE] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_RPAREN] = ACTIONS(4403), - [sym__newline_token] = ACTIONS(4403), - [aux_sym_insert_token1] = ACTIONS(4403), - [aux_sym_delete_token1] = ACTIONS(4403), - [aux_sym_highlight_token1] = ACTIONS(4403), - [aux_sym_edit_comment_token1] = ACTIONS(4403), - [anon_sym_CARET_LBRACK] = ACTIONS(4403), - [anon_sym_LBRACK_CARET] = ACTIONS(4403), - [sym_uri_autolink] = ACTIONS(4403), - [sym_email_autolink] = ACTIONS(4403), - [sym__whitespace_ge_2] = ACTIONS(4403), - [aux_sym__whitespace_token1] = ACTIONS(4405), - [sym__word_no_digit] = ACTIONS(4403), - [sym__digits] = ACTIONS(4403), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4403), - [sym__code_span_start] = ACTIONS(4403), - [sym__emphasis_open_star] = ACTIONS(4403), - [sym__emphasis_open_underscore] = ACTIONS(4403), - [sym__last_token_punctuation] = ACTIONS(4409), - [sym__strikeout_open] = ACTIONS(4403), - [sym__latex_span_start] = ACTIONS(4403), - [sym__single_quote_open] = ACTIONS(4403), - [sym__double_quote_open] = ACTIONS(4403), - [sym__double_quote_close] = ACTIONS(4403), - [sym__superscript_open] = ACTIONS(4403), - [sym__subscript_open] = ACTIONS(4403), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4403), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4403), - [sym__cite_author_in_text] = ACTIONS(4403), - [sym__cite_suppress_author] = ACTIONS(4403), - [sym__shortcode_open_escaped] = ACTIONS(4403), - [sym__shortcode_open] = ACTIONS(4403), - [sym__unclosed_span] = ACTIONS(4403), - [sym__strong_emphasis_open_star] = ACTIONS(4403), - [sym__strong_emphasis_open_underscore] = ACTIONS(4403), - }, - [STATE(814)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4359), - [sym__strikeout_open] = ACTIONS(4335), - [sym__strikeout_close] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4349), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__single_quote_close] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(815)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4359), - [sym__strikeout_open] = ACTIONS(4335), - [sym__strikeout_close] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(807)] = { + [sym__backslash_escape] = ACTIONS(4407), + [sym_entity_reference] = ACTIONS(4407), + [sym_numeric_character_reference] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [anon_sym_POUND] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_COMMA] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_COLON] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_QMARK] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_BSLASH] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4409), + [anon_sym_BQUOTE] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(4407), + [sym__newline_token] = ACTIONS(4407), + [aux_sym_insert_token1] = ACTIONS(4407), + [aux_sym_delete_token1] = ACTIONS(4407), + [aux_sym_highlight_token1] = ACTIONS(4407), + [aux_sym_edit_comment_token1] = ACTIONS(4407), + [anon_sym_CARET_LBRACK] = ACTIONS(4407), + [anon_sym_LBRACK_CARET] = ACTIONS(4407), + [sym_uri_autolink] = ACTIONS(4407), + [sym_email_autolink] = ACTIONS(4407), + [sym__whitespace_ge_2] = ACTIONS(4407), + [aux_sym__whitespace_token1] = ACTIONS(4409), + [sym__word_no_digit] = ACTIONS(4407), + [sym__digits] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4407), + [sym__code_span_start] = ACTIONS(4407), + [sym__emphasis_open_star] = ACTIONS(4407), + [sym__emphasis_open_underscore] = ACTIONS(4407), + [sym__last_token_punctuation] = ACTIONS(4411), + [sym__strikeout_open] = ACTIONS(4407), + [sym__latex_span_start] = ACTIONS(4407), + [sym__single_quote_open] = ACTIONS(4407), + [sym__double_quote_open] = ACTIONS(4407), + [sym__superscript_open] = ACTIONS(4407), + [sym__subscript_open] = ACTIONS(4407), + [sym__subscript_close] = ACTIONS(4407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4407), + [sym__cite_author_in_text] = ACTIONS(4407), + [sym__cite_suppress_author] = ACTIONS(4407), + [sym__shortcode_open_escaped] = ACTIONS(4407), + [sym__shortcode_open] = ACTIONS(4407), + [sym__unclosed_span] = ACTIONS(4407), + [sym__strong_emphasis_open_star] = ACTIONS(4407), + [sym__strong_emphasis_open_underscore] = ACTIONS(4407), }, - [STATE(816)] = { - [sym__backslash_escape] = ACTIONS(4393), - [sym_entity_reference] = ACTIONS(4393), - [sym_numeric_character_reference] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_DQUOTE] = ACTIONS(4393), - [anon_sym_POUND] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_QMARK] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_BSLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym_BQUOTE] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4393), - [anon_sym_TILDE] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [sym__newline_token] = ACTIONS(4393), - [aux_sym_insert_token1] = ACTIONS(4393), - [aux_sym_insert_token2] = ACTIONS(4393), - [aux_sym_delete_token1] = ACTIONS(4393), - [aux_sym_highlight_token1] = ACTIONS(4393), - [aux_sym_edit_comment_token1] = ACTIONS(4393), - [anon_sym_CARET_LBRACK] = ACTIONS(4393), - [anon_sym_LBRACK_CARET] = ACTIONS(4393), - [sym_uri_autolink] = ACTIONS(4393), - [sym_email_autolink] = ACTIONS(4393), - [sym__whitespace_ge_2] = ACTIONS(4395), - [aux_sym__whitespace_token1] = ACTIONS(4395), - [sym__word_no_digit] = ACTIONS(4393), - [sym__digits] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4393), - [sym__code_span_start] = ACTIONS(4393), - [sym__emphasis_open_star] = ACTIONS(4393), - [sym__emphasis_open_underscore] = ACTIONS(4393), - [sym__last_token_whitespace] = ACTIONS(4411), - [sym__strikeout_open] = ACTIONS(4393), - [sym__latex_span_start] = ACTIONS(4393), - [sym__single_quote_open] = ACTIONS(4393), - [sym__double_quote_open] = ACTIONS(4393), - [sym__superscript_open] = ACTIONS(4393), - [sym__subscript_open] = ACTIONS(4393), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4393), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4393), - [sym__cite_author_in_text] = ACTIONS(4393), - [sym__cite_suppress_author] = ACTIONS(4393), - [sym__shortcode_open_escaped] = ACTIONS(4393), - [sym__shortcode_open] = ACTIONS(4393), - [sym__unclosed_span] = ACTIONS(4393), - [sym__strong_emphasis_open_star] = ACTIONS(4393), - [sym__strong_emphasis_open_underscore] = ACTIONS(4393), + [STATE(808)] = { + [sym__backslash_escape] = ACTIONS(4397), + [sym_entity_reference] = ACTIONS(4397), + [sym_numeric_character_reference] = ACTIONS(4397), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4397), + [anon_sym_POUND] = ACTIONS(4397), + [anon_sym_DOLLAR] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_COMMA] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_COLON] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), + [anon_sym_QMARK] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_BSLASH] = ACTIONS(4399), + [anon_sym_CARET] = ACTIONS(4399), + [anon_sym_BQUOTE] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_PIPE] = ACTIONS(4397), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_RPAREN] = ACTIONS(4397), + [sym__newline_token] = ACTIONS(4397), + [aux_sym_insert_token1] = ACTIONS(4397), + [aux_sym_delete_token1] = ACTIONS(4397), + [aux_sym_highlight_token1] = ACTIONS(4397), + [aux_sym_edit_comment_token1] = ACTIONS(4397), + [anon_sym_CARET_LBRACK] = ACTIONS(4397), + [anon_sym_LBRACK_CARET] = ACTIONS(4397), + [sym_uri_autolink] = ACTIONS(4397), + [sym_email_autolink] = ACTIONS(4397), + [sym__whitespace_ge_2] = ACTIONS(4397), + [aux_sym__whitespace_token1] = ACTIONS(4399), + [sym__word_no_digit] = ACTIONS(4397), + [sym__digits] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4397), + [sym__code_span_start] = ACTIONS(4397), + [sym__emphasis_open_star] = ACTIONS(4397), + [sym__emphasis_open_underscore] = ACTIONS(4397), + [sym__last_token_whitespace] = ACTIONS(4413), + [sym__strikeout_open] = ACTIONS(4397), + [sym__strikeout_close] = ACTIONS(4397), + [sym__latex_span_start] = ACTIONS(4397), + [sym__single_quote_open] = ACTIONS(4397), + [sym__double_quote_open] = ACTIONS(4397), + [sym__superscript_open] = ACTIONS(4397), + [sym__subscript_open] = ACTIONS(4397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4397), + [sym__cite_author_in_text] = ACTIONS(4397), + [sym__cite_suppress_author] = ACTIONS(4397), + [sym__shortcode_open_escaped] = ACTIONS(4397), + [sym__shortcode_open] = ACTIONS(4397), + [sym__unclosed_span] = ACTIONS(4397), + [sym__strong_emphasis_open_star] = ACTIONS(4397), + [sym__strong_emphasis_open_underscore] = ACTIONS(4397), }, - [STATE(817)] = { - [ts_builtin_sym_end] = ACTIONS(4335), - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4339), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(809)] = { + [ts_builtin_sym_end] = ACTIONS(4397), + [sym__backslash_escape] = ACTIONS(4397), + [sym_entity_reference] = ACTIONS(4397), + [sym_numeric_character_reference] = ACTIONS(4397), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4397), + [anon_sym_POUND] = ACTIONS(4397), + [anon_sym_DOLLAR] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_COMMA] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_COLON] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), + [anon_sym_QMARK] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_BSLASH] = ACTIONS(4399), + [anon_sym_CARET] = ACTIONS(4399), + [anon_sym_BQUOTE] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_PIPE] = ACTIONS(4397), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_RPAREN] = ACTIONS(4397), + [sym__newline_token] = ACTIONS(4397), + [aux_sym_insert_token1] = ACTIONS(4397), + [aux_sym_delete_token1] = ACTIONS(4397), + [aux_sym_highlight_token1] = ACTIONS(4397), + [aux_sym_edit_comment_token1] = ACTIONS(4397), + [anon_sym_CARET_LBRACK] = ACTIONS(4397), + [anon_sym_LBRACK_CARET] = ACTIONS(4397), + [sym_uri_autolink] = ACTIONS(4397), + [sym_email_autolink] = ACTIONS(4397), + [sym__whitespace_ge_2] = ACTIONS(4397), + [aux_sym__whitespace_token1] = ACTIONS(4399), + [sym__word_no_digit] = ACTIONS(4397), + [sym__digits] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4397), + [sym__code_span_start] = ACTIONS(4397), + [sym__emphasis_open_star] = ACTIONS(4397), + [sym__emphasis_open_underscore] = ACTIONS(4397), + [sym__last_token_whitespace] = ACTIONS(4415), + [sym__strikeout_open] = ACTIONS(4397), + [sym__latex_span_start] = ACTIONS(4397), + [sym__single_quote_open] = ACTIONS(4397), + [sym__double_quote_open] = ACTIONS(4397), + [sym__superscript_open] = ACTIONS(4397), + [sym__subscript_open] = ACTIONS(4397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4397), + [sym__cite_author_in_text] = ACTIONS(4397), + [sym__cite_suppress_author] = ACTIONS(4397), + [sym__shortcode_open_escaped] = ACTIONS(4397), + [sym__shortcode_open] = ACTIONS(4397), + [sym__unclosed_span] = ACTIONS(4397), + [sym__strong_emphasis_open_star] = ACTIONS(4397), + [sym__strong_emphasis_open_underscore] = ACTIONS(4397), }, - [STATE(818)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4361), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__superscript_close] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(810)] = { + [sym__backslash_escape] = ACTIONS(4397), + [sym_entity_reference] = ACTIONS(4397), + [sym_numeric_character_reference] = ACTIONS(4397), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4397), + [anon_sym_POUND] = ACTIONS(4397), + [anon_sym_DOLLAR] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_COMMA] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_COLON] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), + [anon_sym_QMARK] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_BSLASH] = ACTIONS(4399), + [anon_sym_RBRACK] = ACTIONS(4397), + [anon_sym_CARET] = ACTIONS(4399), + [anon_sym_BQUOTE] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_PIPE] = ACTIONS(4397), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_RPAREN] = ACTIONS(4397), + [sym__newline_token] = ACTIONS(4397), + [aux_sym_insert_token1] = ACTIONS(4397), + [aux_sym_delete_token1] = ACTIONS(4397), + [aux_sym_highlight_token1] = ACTIONS(4397), + [aux_sym_edit_comment_token1] = ACTIONS(4397), + [anon_sym_CARET_LBRACK] = ACTIONS(4397), + [anon_sym_LBRACK_CARET] = ACTIONS(4397), + [sym_uri_autolink] = ACTIONS(4397), + [sym_email_autolink] = ACTIONS(4397), + [sym__whitespace_ge_2] = ACTIONS(4397), + [aux_sym__whitespace_token1] = ACTIONS(4399), + [sym__word_no_digit] = ACTIONS(4397), + [sym__digits] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4397), + [sym__code_span_start] = ACTIONS(4397), + [sym__emphasis_open_star] = ACTIONS(4397), + [sym__emphasis_open_underscore] = ACTIONS(4397), + [sym__last_token_whitespace] = ACTIONS(4417), + [sym__strikeout_open] = ACTIONS(4397), + [sym__latex_span_start] = ACTIONS(4397), + [sym__single_quote_open] = ACTIONS(4397), + [sym__double_quote_open] = ACTIONS(4397), + [sym__superscript_open] = ACTIONS(4397), + [sym__subscript_open] = ACTIONS(4397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4397), + [sym__cite_author_in_text] = ACTIONS(4397), + [sym__cite_suppress_author] = ACTIONS(4397), + [sym__shortcode_open_escaped] = ACTIONS(4397), + [sym__shortcode_open] = ACTIONS(4397), + [sym__unclosed_span] = ACTIONS(4397), + [sym__strong_emphasis_open_star] = ACTIONS(4397), + [sym__strong_emphasis_open_underscore] = ACTIONS(4397), }, - [STATE(819)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__last_token_punctuation] = ACTIONS(4417), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_close_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), + [STATE(811)] = { + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(4337), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4363), + [sym__strikeout_open] = ACTIONS(4337), + [sym__strikeout_close] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), }, - [STATE(820)] = { + [STATE(812)] = { [sym__backslash_escape] = ACTIONS(4419), [sym_entity_reference] = ACTIONS(4419), [sym_numeric_character_reference] = ACTIONS(4419), @@ -103448,143 +102903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4419), [sym__strong_emphasis_open_underscore] = ACTIONS(4419), }, - [STATE(821)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4361), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__superscript_close] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(822)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__emphasis_close_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4343), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(823)] = { + [STATE(813)] = { [sym__backslash_escape] = ACTIONS(4385), [sym_entity_reference] = ACTIONS(4385), [sym_numeric_character_reference] = ACTIONS(4385), @@ -103634,6 +102953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4385), [sym__emphasis_open_star] = ACTIONS(4385), [sym__emphasis_open_underscore] = ACTIONS(4385), + [sym__emphasis_close_underscore] = ACTIONS(4385), [sym__last_token_punctuation] = ACTIONS(4425), [sym__strikeout_open] = ACTIONS(4385), [sym__latex_span_start] = ACTIONS(4385), @@ -103649,350 +102969,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__shortcode_open] = ACTIONS(4385), [sym__unclosed_span] = ACTIONS(4385), [sym__strong_emphasis_open_star] = ACTIONS(4385), - [sym__strong_emphasis_close_star] = ACTIONS(4385), [sym__strong_emphasis_open_underscore] = ACTIONS(4385), }, - [STATE(824)] = { - [sym__backslash_escape] = ACTIONS(4393), - [sym_entity_reference] = ACTIONS(4393), - [sym_numeric_character_reference] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_DQUOTE] = ACTIONS(4393), - [anon_sym_POUND] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_QMARK] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_BSLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym_BQUOTE] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4393), - [anon_sym_TILDE] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [sym__newline_token] = ACTIONS(4393), - [aux_sym_insert_token1] = ACTIONS(4393), - [aux_sym_delete_token1] = ACTIONS(4393), - [aux_sym_highlight_token1] = ACTIONS(4393), - [aux_sym_edit_comment_token1] = ACTIONS(4393), - [anon_sym_CARET_LBRACK] = ACTIONS(4393), - [anon_sym_LBRACK_CARET] = ACTIONS(4393), - [sym_uri_autolink] = ACTIONS(4393), - [sym_email_autolink] = ACTIONS(4393), - [sym__whitespace_ge_2] = ACTIONS(4393), - [aux_sym__whitespace_token1] = ACTIONS(4395), - [sym__word_no_digit] = ACTIONS(4393), - [sym__digits] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4393), - [sym__code_span_start] = ACTIONS(4393), - [sym__emphasis_open_star] = ACTIONS(4393), - [sym__emphasis_open_underscore] = ACTIONS(4393), - [sym__last_token_whitespace] = ACTIONS(4427), - [sym__strikeout_open] = ACTIONS(4393), - [sym__latex_span_start] = ACTIONS(4393), - [sym__single_quote_open] = ACTIONS(4393), - [sym__single_quote_close] = ACTIONS(4393), - [sym__double_quote_open] = ACTIONS(4393), - [sym__superscript_open] = ACTIONS(4393), - [sym__subscript_open] = ACTIONS(4393), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4393), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4393), - [sym__cite_author_in_text] = ACTIONS(4393), - [sym__cite_suppress_author] = ACTIONS(4393), - [sym__shortcode_open_escaped] = ACTIONS(4393), - [sym__shortcode_open] = ACTIONS(4393), - [sym__unclosed_span] = ACTIONS(4393), - [sym__strong_emphasis_open_star] = ACTIONS(4393), - [sym__strong_emphasis_open_underscore] = ACTIONS(4393), - }, - [STATE(825)] = { - [sym__backslash_escape] = ACTIONS(4393), - [sym_entity_reference] = ACTIONS(4393), - [sym_numeric_character_reference] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_DQUOTE] = ACTIONS(4393), - [anon_sym_POUND] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_QMARK] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_BSLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym_BQUOTE] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4393), - [anon_sym_TILDE] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [sym__newline_token] = ACTIONS(4393), - [aux_sym_insert_token1] = ACTIONS(4393), - [aux_sym_delete_token1] = ACTIONS(4393), - [aux_sym_highlight_token1] = ACTIONS(4393), - [aux_sym_edit_comment_token1] = ACTIONS(4393), - [anon_sym_CARET_LBRACK] = ACTIONS(4393), - [anon_sym_LBRACK_CARET] = ACTIONS(4393), - [sym_uri_autolink] = ACTIONS(4393), - [sym_email_autolink] = ACTIONS(4393), - [sym__whitespace_ge_2] = ACTIONS(4393), - [aux_sym__whitespace_token1] = ACTIONS(4395), - [sym__word_no_digit] = ACTIONS(4393), - [sym__digits] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4393), - [sym__code_span_start] = ACTIONS(4393), - [sym__emphasis_open_star] = ACTIONS(4393), - [sym__emphasis_open_underscore] = ACTIONS(4393), - [sym__last_token_whitespace] = ACTIONS(4429), - [sym__strikeout_open] = ACTIONS(4393), - [sym__latex_span_start] = ACTIONS(4393), - [sym__single_quote_open] = ACTIONS(4393), - [sym__double_quote_open] = ACTIONS(4393), - [sym__superscript_open] = ACTIONS(4393), - [sym__subscript_open] = ACTIONS(4393), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4393), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4393), - [sym__cite_author_in_text] = ACTIONS(4393), - [sym__cite_suppress_author] = ACTIONS(4393), - [sym__shortcode_open_escaped] = ACTIONS(4393), - [sym__shortcode_open] = ACTIONS(4393), - [sym__unclosed_span] = ACTIONS(4393), - [sym__strong_emphasis_open_star] = ACTIONS(4393), - [sym__strong_emphasis_close_star] = ACTIONS(4393), - [sym__strong_emphasis_open_underscore] = ACTIONS(4393), - }, - [STATE(826)] = { - [sym__backslash_escape] = ACTIONS(4329), - [sym_entity_reference] = ACTIONS(4329), - [sym_numeric_character_reference] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4331), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_DQUOTE] = ACTIONS(4329), - [anon_sym_POUND] = ACTIONS(4329), - [anon_sym_DOLLAR] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4331), - [anon_sym_SQUOTE] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(4329), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_EQ] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4331), - [anon_sym_BSLASH] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_BQUOTE] = ACTIONS(4329), - [anon_sym_LBRACE] = ACTIONS(4329), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_TILDE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(4329), - [aux_sym_insert_token1] = ACTIONS(4329), - [aux_sym_delete_token1] = ACTIONS(4329), - [aux_sym_highlight_token1] = ACTIONS(4329), - [aux_sym_edit_comment_token1] = ACTIONS(4329), - [anon_sym_CARET_LBRACK] = ACTIONS(4329), - [anon_sym_LBRACK_CARET] = ACTIONS(4329), - [sym_uri_autolink] = ACTIONS(4329), - [sym_email_autolink] = ACTIONS(4329), - [sym__whitespace_ge_2] = ACTIONS(4329), - [aux_sym__whitespace_token1] = ACTIONS(4331), - [sym__word_no_digit] = ACTIONS(4329), - [sym__digits] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), - [sym__code_span_start] = ACTIONS(4329), - [sym__emphasis_open_star] = ACTIONS(4329), - [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4333), - [sym__strikeout_open] = ACTIONS(4329), - [sym__latex_span_start] = ACTIONS(4329), - [sym__single_quote_open] = ACTIONS(4329), - [sym__double_quote_open] = ACTIONS(4329), - [sym__double_quote_close] = ACTIONS(4329), - [sym__superscript_open] = ACTIONS(4329), - [sym__subscript_open] = ACTIONS(4329), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), - [sym__cite_author_in_text] = ACTIONS(4329), - [sym__cite_suppress_author] = ACTIONS(4329), - [sym__shortcode_open_escaped] = ACTIONS(4329), - [sym__shortcode_open] = ACTIONS(4329), - [sym__unclosed_span] = ACTIONS(4329), - [sym__strong_emphasis_open_star] = ACTIONS(4329), - [sym__strong_emphasis_open_underscore] = ACTIONS(4329), - }, - [STATE(827)] = { - [sym__backslash_escape] = ACTIONS(4393), - [sym_entity_reference] = ACTIONS(4393), - [sym_numeric_character_reference] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_DQUOTE] = ACTIONS(4393), - [anon_sym_POUND] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_QMARK] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_BSLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym_BQUOTE] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4393), - [anon_sym_TILDE] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [sym__newline_token] = ACTIONS(4393), - [aux_sym_insert_token1] = ACTIONS(4393), - [aux_sym_delete_token1] = ACTIONS(4393), - [aux_sym_highlight_token1] = ACTIONS(4393), - [aux_sym_edit_comment_token1] = ACTIONS(4393), - [anon_sym_CARET_LBRACK] = ACTIONS(4393), - [anon_sym_LBRACK_CARET] = ACTIONS(4393), - [sym_uri_autolink] = ACTIONS(4393), - [sym_email_autolink] = ACTIONS(4393), - [sym__whitespace_ge_2] = ACTIONS(4393), - [aux_sym__whitespace_token1] = ACTIONS(4395), - [sym__word_no_digit] = ACTIONS(4393), - [sym__digits] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4393), - [sym__code_span_start] = ACTIONS(4393), - [sym__emphasis_open_star] = ACTIONS(4393), - [sym__emphasis_open_underscore] = ACTIONS(4393), - [sym__emphasis_close_underscore] = ACTIONS(4393), - [sym__last_token_whitespace] = ACTIONS(4431), - [sym__strikeout_open] = ACTIONS(4393), - [sym__latex_span_start] = ACTIONS(4393), - [sym__single_quote_open] = ACTIONS(4393), - [sym__double_quote_open] = ACTIONS(4393), - [sym__superscript_open] = ACTIONS(4393), - [sym__subscript_open] = ACTIONS(4393), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4393), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4393), - [sym__cite_author_in_text] = ACTIONS(4393), - [sym__cite_suppress_author] = ACTIONS(4393), - [sym__shortcode_open_escaped] = ACTIONS(4393), - [sym__shortcode_open] = ACTIONS(4393), - [sym__unclosed_span] = ACTIONS(4393), - [sym__strong_emphasis_open_star] = ACTIONS(4393), - [sym__strong_emphasis_open_underscore] = ACTIONS(4393), - }, - [STATE(828)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__emphasis_close_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4343), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(814)] = { + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(4337), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__emphasis_close_star] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4365), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), }, - [STATE(829)] = { + [STATE(815)] = { [sym__backslash_escape] = ACTIONS(4385), [sym_entity_reference] = ACTIONS(4385), [sym_numeric_character_reference] = ACTIONS(4385), @@ -104042,14 +103089,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4385), [sym__emphasis_open_star] = ACTIONS(4385), [sym__emphasis_open_underscore] = ACTIONS(4385), - [sym__last_token_punctuation] = ACTIONS(4433), + [sym__last_token_punctuation] = ACTIONS(4427), [sym__strikeout_open] = ACTIONS(4385), - [sym__strikeout_close] = ACTIONS(4385), [sym__latex_span_start] = ACTIONS(4385), [sym__single_quote_open] = ACTIONS(4385), [sym__double_quote_open] = ACTIONS(4385), [sym__superscript_open] = ACTIONS(4385), [sym__subscript_open] = ACTIONS(4385), + [sym__subscript_close] = ACTIONS(4385), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4385), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4385), [sym__cite_author_in_text] = ACTIONS(4385), @@ -104060,7 +103107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4385), [sym__strong_emphasis_open_underscore] = ACTIONS(4385), }, - [STATE(830)] = { + [STATE(816)] = { [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -104110,9 +103157,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__emphasis_close_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4345), + [sym__last_token_punctuation] = ACTIONS(4361), [sym__strikeout_open] = ACTIONS(4329), + [sym__strikeout_close] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), [sym__double_quote_open] = ACTIONS(4329), @@ -104128,143 +103175,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4329), [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(831)] = { - [ts_builtin_sym_end] = ACTIONS(4385), - [sym__backslash_escape] = ACTIONS(4385), - [sym_entity_reference] = ACTIONS(4385), - [sym_numeric_character_reference] = ACTIONS(4385), - [anon_sym_LT] = ACTIONS(4387), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_POUND] = ACTIONS(4385), - [anon_sym_DOLLAR] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(4387), - [anon_sym_SQUOTE] = ACTIONS(4385), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_COMMA] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4387), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_COLON] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_QMARK] = ACTIONS(4385), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_BSLASH] = ACTIONS(4387), - [anon_sym_CARET] = ACTIONS(4387), - [anon_sym_BQUOTE] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4385), - [anon_sym_PIPE] = ACTIONS(4385), - [anon_sym_TILDE] = ACTIONS(4385), - [anon_sym_LPAREN] = ACTIONS(4385), - [anon_sym_RPAREN] = ACTIONS(4385), - [sym__newline_token] = ACTIONS(4385), - [aux_sym_insert_token1] = ACTIONS(4385), - [aux_sym_delete_token1] = ACTIONS(4385), - [aux_sym_highlight_token1] = ACTIONS(4385), - [aux_sym_edit_comment_token1] = ACTIONS(4385), - [anon_sym_CARET_LBRACK] = ACTIONS(4385), - [anon_sym_LBRACK_CARET] = ACTIONS(4385), - [sym_uri_autolink] = ACTIONS(4385), - [sym_email_autolink] = ACTIONS(4385), - [sym__whitespace_ge_2] = ACTIONS(4385), - [aux_sym__whitespace_token1] = ACTIONS(4387), - [sym__word_no_digit] = ACTIONS(4385), - [sym__digits] = ACTIONS(4385), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4385), - [sym__code_span_start] = ACTIONS(4385), - [sym__emphasis_open_star] = ACTIONS(4385), - [sym__emphasis_open_underscore] = ACTIONS(4385), - [sym__last_token_punctuation] = ACTIONS(4435), - [sym__strikeout_open] = ACTIONS(4385), - [sym__latex_span_start] = ACTIONS(4385), - [sym__single_quote_open] = ACTIONS(4385), - [sym__double_quote_open] = ACTIONS(4385), - [sym__superscript_open] = ACTIONS(4385), - [sym__subscript_open] = ACTIONS(4385), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4385), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4385), - [sym__cite_author_in_text] = ACTIONS(4385), - [sym__cite_suppress_author] = ACTIONS(4385), - [sym__shortcode_open_escaped] = ACTIONS(4385), - [sym__shortcode_open] = ACTIONS(4385), - [sym__unclosed_span] = ACTIONS(4385), - [sym__strong_emphasis_open_star] = ACTIONS(4385), - [sym__strong_emphasis_open_underscore] = ACTIONS(4385), - }, - [STATE(832)] = { - [sym__backslash_escape] = ACTIONS(4403), - [sym_entity_reference] = ACTIONS(4403), - [sym_numeric_character_reference] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4403), - [anon_sym_DQUOTE] = ACTIONS(4403), - [anon_sym_POUND] = ACTIONS(4403), - [anon_sym_DOLLAR] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_AMP] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4403), - [anon_sym_COMMA] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_COLON] = ACTIONS(4403), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_EQ] = ACTIONS(4403), - [anon_sym_QMARK] = ACTIONS(4403), + [STATE(817)] = { + [ts_builtin_sym_end] = ACTIONS(4329), + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_BSLASH] = ACTIONS(4405), - [anon_sym_CARET] = ACTIONS(4405), - [anon_sym_BQUOTE] = ACTIONS(4403), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_PIPE] = ACTIONS(4403), - [anon_sym_TILDE] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_RPAREN] = ACTIONS(4403), - [sym__newline_token] = ACTIONS(4403), - [aux_sym_insert_token1] = ACTIONS(4403), - [aux_sym_delete_token1] = ACTIONS(4403), - [aux_sym_highlight_token1] = ACTIONS(4403), - [aux_sym_edit_comment_token1] = ACTIONS(4403), - [anon_sym_CARET_LBRACK] = ACTIONS(4403), - [anon_sym_LBRACK_CARET] = ACTIONS(4403), - [sym_uri_autolink] = ACTIONS(4403), - [sym_email_autolink] = ACTIONS(4403), - [sym__whitespace_ge_2] = ACTIONS(4403), - [aux_sym__whitespace_token1] = ACTIONS(4405), - [sym__word_no_digit] = ACTIONS(4403), - [sym__digits] = ACTIONS(4403), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4403), - [sym__code_span_start] = ACTIONS(4403), - [sym__emphasis_open_star] = ACTIONS(4403), - [sym__emphasis_open_underscore] = ACTIONS(4403), - [sym__last_token_punctuation] = ACTIONS(4437), - [sym__strikeout_open] = ACTIONS(4403), - [sym__latex_span_start] = ACTIONS(4403), - [sym__single_quote_open] = ACTIONS(4403), - [sym__single_quote_close] = ACTIONS(4403), - [sym__double_quote_open] = ACTIONS(4403), - [sym__superscript_open] = ACTIONS(4403), - [sym__subscript_open] = ACTIONS(4403), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4403), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4403), - [sym__cite_author_in_text] = ACTIONS(4403), - [sym__cite_suppress_author] = ACTIONS(4403), - [sym__shortcode_open_escaped] = ACTIONS(4403), - [sym__shortcode_open] = ACTIONS(4403), - [sym__unclosed_span] = ACTIONS(4403), - [sym__strong_emphasis_open_star] = ACTIONS(4403), - [sym__strong_emphasis_open_underscore] = ACTIONS(4403), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4335), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(833)] = { + [STATE(818)] = { [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -104297,7 +103276,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(4329), [sym__newline_token] = ACTIONS(4329), [aux_sym_insert_token1] = ACTIONS(4329), - [aux_sym_insert_token2] = ACTIONS(4329), [aux_sym_delete_token1] = ACTIONS(4329), [aux_sym_highlight_token1] = ACTIONS(4329), [aux_sym_edit_comment_token1] = ACTIONS(4329), @@ -104305,7 +103283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_CARET] = ACTIONS(4329), [sym_uri_autolink] = ACTIONS(4329), [sym_email_autolink] = ACTIONS(4329), - [sym__whitespace_ge_2] = ACTIONS(4331), + [sym__whitespace_ge_2] = ACTIONS(4329), [aux_sym__whitespace_token1] = ACTIONS(4331), [sym__word_no_digit] = ACTIONS(4329), [sym__digits] = ACTIONS(4329), @@ -104315,12 +103293,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4377), + [sym__last_token_punctuation] = ACTIONS(4357), [sym__strikeout_open] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), [sym__double_quote_open] = ACTIONS(4329), [sym__superscript_open] = ACTIONS(4329), + [sym__superscript_close] = ACTIONS(4329), [sym__subscript_open] = ACTIONS(4329), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), @@ -104332,416 +103311,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4329), [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(834)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_RBRACK] = ACTIONS(4335), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4341), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(835)] = { - [sym__backslash_escape] = ACTIONS(4385), - [sym_entity_reference] = ACTIONS(4385), - [sym_numeric_character_reference] = ACTIONS(4385), - [anon_sym_LT] = ACTIONS(4387), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_POUND] = ACTIONS(4385), - [anon_sym_DOLLAR] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(4387), - [anon_sym_SQUOTE] = ACTIONS(4385), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_COMMA] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4387), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_COLON] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_QMARK] = ACTIONS(4385), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_BSLASH] = ACTIONS(4387), - [anon_sym_CARET] = ACTIONS(4387), - [anon_sym_BQUOTE] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4385), - [anon_sym_PIPE] = ACTIONS(4385), - [anon_sym_TILDE] = ACTIONS(4385), - [anon_sym_LPAREN] = ACTIONS(4385), - [anon_sym_RPAREN] = ACTIONS(4385), - [sym__newline_token] = ACTIONS(4385), - [aux_sym_insert_token1] = ACTIONS(4385), - [aux_sym_delete_token1] = ACTIONS(4385), - [aux_sym_highlight_token1] = ACTIONS(4385), - [aux_sym_edit_comment_token1] = ACTIONS(4385), - [anon_sym_CARET_LBRACK] = ACTIONS(4385), - [anon_sym_LBRACK_CARET] = ACTIONS(4385), - [sym_uri_autolink] = ACTIONS(4385), - [sym_email_autolink] = ACTIONS(4385), - [sym__whitespace_ge_2] = ACTIONS(4385), - [aux_sym__whitespace_token1] = ACTIONS(4387), - [sym__word_no_digit] = ACTIONS(4385), - [sym__digits] = ACTIONS(4385), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4385), - [sym__code_span_start] = ACTIONS(4385), - [sym__emphasis_open_star] = ACTIONS(4385), - [sym__emphasis_open_underscore] = ACTIONS(4385), - [sym__last_token_punctuation] = ACTIONS(4439), - [sym__strikeout_open] = ACTIONS(4385), - [sym__latex_span_start] = ACTIONS(4385), - [sym__single_quote_open] = ACTIONS(4385), - [sym__double_quote_open] = ACTIONS(4385), - [sym__superscript_open] = ACTIONS(4385), - [sym__subscript_open] = ACTIONS(4385), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4385), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4385), - [sym__cite_author_in_text] = ACTIONS(4385), - [sym__cite_suppress_author] = ACTIONS(4385), - [sym__shortcode_open_escaped] = ACTIONS(4385), - [sym__shortcode_open] = ACTIONS(4385), - [sym__unclosed_span] = ACTIONS(4385), - [sym__strong_emphasis_open_star] = ACTIONS(4385), - [sym__strong_emphasis_open_underscore] = ACTIONS(4385), - [sym__strong_emphasis_close_underscore] = ACTIONS(4385), - }, - [STATE(836)] = { - [sym__backslash_escape] = ACTIONS(4403), - [sym_entity_reference] = ACTIONS(4403), - [sym_numeric_character_reference] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4403), - [anon_sym_DQUOTE] = ACTIONS(4403), - [anon_sym_POUND] = ACTIONS(4403), - [anon_sym_DOLLAR] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_AMP] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4403), - [anon_sym_COMMA] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_COLON] = ACTIONS(4403), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_EQ] = ACTIONS(4403), - [anon_sym_QMARK] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_BSLASH] = ACTIONS(4405), - [anon_sym_CARET] = ACTIONS(4405), - [anon_sym_BQUOTE] = ACTIONS(4403), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_PIPE] = ACTIONS(4403), - [anon_sym_TILDE] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_RPAREN] = ACTIONS(4403), - [sym__newline_token] = ACTIONS(4403), - [aux_sym_insert_token1] = ACTIONS(4403), - [aux_sym_delete_token1] = ACTIONS(4403), - [aux_sym_highlight_token1] = ACTIONS(4403), - [aux_sym_edit_comment_token1] = ACTIONS(4403), - [anon_sym_CARET_LBRACK] = ACTIONS(4403), - [anon_sym_LBRACK_CARET] = ACTIONS(4403), - [sym_uri_autolink] = ACTIONS(4403), - [sym_email_autolink] = ACTIONS(4403), - [sym__whitespace_ge_2] = ACTIONS(4403), - [aux_sym__whitespace_token1] = ACTIONS(4405), - [sym__word_no_digit] = ACTIONS(4403), - [sym__digits] = ACTIONS(4403), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4403), - [sym__code_span_start] = ACTIONS(4403), - [sym__emphasis_open_star] = ACTIONS(4403), - [sym__emphasis_open_underscore] = ACTIONS(4403), - [sym__last_token_punctuation] = ACTIONS(4441), - [sym__strikeout_open] = ACTIONS(4403), - [sym__latex_span_start] = ACTIONS(4403), - [sym__single_quote_open] = ACTIONS(4403), - [sym__double_quote_open] = ACTIONS(4403), - [sym__superscript_open] = ACTIONS(4403), - [sym__superscript_close] = ACTIONS(4403), - [sym__subscript_open] = ACTIONS(4403), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4403), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4403), - [sym__cite_author_in_text] = ACTIONS(4403), - [sym__cite_suppress_author] = ACTIONS(4403), - [sym__shortcode_open_escaped] = ACTIONS(4403), - [sym__shortcode_open] = ACTIONS(4403), - [sym__unclosed_span] = ACTIONS(4403), - [sym__strong_emphasis_open_star] = ACTIONS(4403), - [sym__strong_emphasis_open_underscore] = ACTIONS(4403), - }, - [STATE(837)] = { - [sym__backslash_escape] = ACTIONS(4403), - [sym_entity_reference] = ACTIONS(4403), - [sym_numeric_character_reference] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4403), - [anon_sym_DQUOTE] = ACTIONS(4403), - [anon_sym_POUND] = ACTIONS(4403), - [anon_sym_DOLLAR] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_AMP] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4403), - [anon_sym_COMMA] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_COLON] = ACTIONS(4403), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_EQ] = ACTIONS(4403), - [anon_sym_QMARK] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_BSLASH] = ACTIONS(4405), - [anon_sym_RBRACK] = ACTIONS(4403), - [anon_sym_CARET] = ACTIONS(4405), - [anon_sym_BQUOTE] = ACTIONS(4403), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_PIPE] = ACTIONS(4403), - [anon_sym_TILDE] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_RPAREN] = ACTIONS(4403), - [sym__newline_token] = ACTIONS(4403), - [aux_sym_insert_token1] = ACTIONS(4403), - [aux_sym_delete_token1] = ACTIONS(4403), - [aux_sym_highlight_token1] = ACTIONS(4403), - [aux_sym_edit_comment_token1] = ACTIONS(4403), - [anon_sym_CARET_LBRACK] = ACTIONS(4403), - [anon_sym_LBRACK_CARET] = ACTIONS(4403), - [sym_uri_autolink] = ACTIONS(4403), - [sym_email_autolink] = ACTIONS(4403), - [sym__whitespace_ge_2] = ACTIONS(4403), - [aux_sym__whitespace_token1] = ACTIONS(4405), - [sym__word_no_digit] = ACTIONS(4403), - [sym__digits] = ACTIONS(4403), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4403), - [sym__code_span_start] = ACTIONS(4403), - [sym__emphasis_open_star] = ACTIONS(4403), - [sym__emphasis_open_underscore] = ACTIONS(4403), - [sym__last_token_punctuation] = ACTIONS(4443), - [sym__strikeout_open] = ACTIONS(4403), - [sym__latex_span_start] = ACTIONS(4403), - [sym__single_quote_open] = ACTIONS(4403), - [sym__double_quote_open] = ACTIONS(4403), - [sym__superscript_open] = ACTIONS(4403), - [sym__subscript_open] = ACTIONS(4403), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4403), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4403), - [sym__cite_author_in_text] = ACTIONS(4403), - [sym__cite_suppress_author] = ACTIONS(4403), - [sym__shortcode_open_escaped] = ACTIONS(4403), - [sym__shortcode_open] = ACTIONS(4403), - [sym__unclosed_span] = ACTIONS(4403), - [sym__strong_emphasis_open_star] = ACTIONS(4403), - [sym__strong_emphasis_open_underscore] = ACTIONS(4403), - }, - [STATE(838)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__last_token_punctuation] = ACTIONS(4445), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), - [sym__strong_emphasis_close_underscore] = ACTIONS(4413), + [STATE(819)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__last_token_punctuation] = ACTIONS(4429), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_close_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), }, - [STATE(839)] = { - [ts_builtin_sym_end] = ACTIONS(4335), - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4339), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(820)] = { + [sym__backslash_escape] = ACTIONS(4407), + [sym_entity_reference] = ACTIONS(4407), + [sym_numeric_character_reference] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [anon_sym_POUND] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_COMMA] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_COLON] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_QMARK] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_BSLASH] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4409), + [anon_sym_BQUOTE] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(4407), + [sym__newline_token] = ACTIONS(4407), + [aux_sym_insert_token1] = ACTIONS(4407), + [aux_sym_delete_token1] = ACTIONS(4407), + [aux_sym_highlight_token1] = ACTIONS(4407), + [aux_sym_edit_comment_token1] = ACTIONS(4407), + [anon_sym_CARET_LBRACK] = ACTIONS(4407), + [anon_sym_LBRACK_CARET] = ACTIONS(4407), + [sym_uri_autolink] = ACTIONS(4407), + [sym_email_autolink] = ACTIONS(4407), + [sym__whitespace_ge_2] = ACTIONS(4407), + [aux_sym__whitespace_token1] = ACTIONS(4409), + [sym__word_no_digit] = ACTIONS(4407), + [sym__digits] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4407), + [sym__code_span_start] = ACTIONS(4407), + [sym__emphasis_open_star] = ACTIONS(4407), + [sym__emphasis_open_underscore] = ACTIONS(4407), + [sym__last_token_punctuation] = ACTIONS(4431), + [sym__strikeout_open] = ACTIONS(4407), + [sym__latex_span_start] = ACTIONS(4407), + [sym__single_quote_open] = ACTIONS(4407), + [sym__double_quote_open] = ACTIONS(4407), + [sym__superscript_open] = ACTIONS(4407), + [sym__subscript_open] = ACTIONS(4407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4407), + [sym__cite_author_in_text] = ACTIONS(4407), + [sym__cite_suppress_author] = ACTIONS(4407), + [sym__shortcode_open_escaped] = ACTIONS(4407), + [sym__shortcode_open] = ACTIONS(4407), + [sym__unclosed_span] = ACTIONS(4407), + [sym__strong_emphasis_open_star] = ACTIONS(4407), + [sym__strong_emphasis_close_star] = ACTIONS(4407), + [sym__strong_emphasis_open_underscore] = ACTIONS(4407), }, - [STATE(840)] = { - [ts_builtin_sym_end] = ACTIONS(4329), + [STATE(821)] = { [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -104763,7 +103469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(4329), [anon_sym_EQ] = ACTIONS(4329), [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4405), [anon_sym_BSLASH] = ACTIONS(4331), [anon_sym_CARET] = ACTIONS(4331), [anon_sym_BQUOTE] = ACTIONS(4329), @@ -104791,12 +103497,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4373), + [sym__last_token_punctuation] = ACTIONS(4357), [sym__strikeout_open] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), [sym__double_quote_open] = ACTIONS(4329), [sym__superscript_open] = ACTIONS(4329), + [sym__superscript_close] = ACTIONS(4329), [sym__subscript_open] = ACTIONS(4329), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), @@ -104808,143 +103515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4329), [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(841)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__emphasis_close_star] = ACTIONS(4413), - [sym__last_token_punctuation] = ACTIONS(4447), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), - }, - [STATE(842)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4369), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - [sym__strong_emphasis_close_underscore] = ACTIONS(4335), - }, - [STATE(843)] = { + [STATE(822)] = { [sym__backslash_escape] = ACTIONS(4419), [sym_entity_reference] = ACTIONS(4419), [sym_numeric_character_reference] = ACTIONS(4419), @@ -104994,80 +103565,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4419), [sym__emphasis_open_star] = ACTIONS(4419), [sym__emphasis_open_underscore] = ACTIONS(4419), - [sym__emphasis_close_star] = ACTIONS(4419), - [sym__last_token_punctuation] = ACTIONS(4449), - [sym__strikeout_open] = ACTIONS(4419), - [sym__latex_span_start] = ACTIONS(4419), - [sym__single_quote_open] = ACTIONS(4419), - [sym__double_quote_open] = ACTIONS(4419), - [sym__superscript_open] = ACTIONS(4419), - [sym__subscript_open] = ACTIONS(4419), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4419), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4419), - [sym__cite_author_in_text] = ACTIONS(4419), - [sym__cite_suppress_author] = ACTIONS(4419), - [sym__shortcode_open_escaped] = ACTIONS(4419), - [sym__shortcode_open] = ACTIONS(4419), - [sym__unclosed_span] = ACTIONS(4419), - [sym__strong_emphasis_open_star] = ACTIONS(4419), - [sym__strong_emphasis_open_underscore] = ACTIONS(4419), - }, - [STATE(844)] = { - [sym__backslash_escape] = ACTIONS(4419), - [sym_entity_reference] = ACTIONS(4419), - [sym_numeric_character_reference] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4421), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_DQUOTE] = ACTIONS(4419), - [anon_sym_POUND] = ACTIONS(4419), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_AMP] = ACTIONS(4421), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_COMMA] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4421), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_BSLASH] = ACTIONS(4421), - [anon_sym_CARET] = ACTIONS(4421), - [anon_sym_BQUOTE] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_TILDE] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4419), - [anon_sym_RPAREN] = ACTIONS(4419), - [sym__newline_token] = ACTIONS(4419), - [aux_sym_insert_token1] = ACTIONS(4419), - [aux_sym_insert_token2] = ACTIONS(4419), - [aux_sym_delete_token1] = ACTIONS(4419), - [aux_sym_highlight_token1] = ACTIONS(4419), - [aux_sym_edit_comment_token1] = ACTIONS(4419), - [anon_sym_CARET_LBRACK] = ACTIONS(4419), - [anon_sym_LBRACK_CARET] = ACTIONS(4419), - [sym_uri_autolink] = ACTIONS(4419), - [sym_email_autolink] = ACTIONS(4419), - [sym__whitespace_ge_2] = ACTIONS(4421), - [aux_sym__whitespace_token1] = ACTIONS(4421), - [sym__word_no_digit] = ACTIONS(4419), - [sym__digits] = ACTIONS(4419), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4419), - [sym__code_span_start] = ACTIONS(4419), - [sym__emphasis_open_star] = ACTIONS(4419), - [sym__emphasis_open_underscore] = ACTIONS(4419), - [sym__last_token_punctuation] = ACTIONS(4451), + [sym__last_token_punctuation] = ACTIONS(4433), [sym__strikeout_open] = ACTIONS(4419), [sym__latex_span_start] = ACTIONS(4419), [sym__single_quote_open] = ACTIONS(4419), [sym__double_quote_open] = ACTIONS(4419), + [sym__double_quote_close] = ACTIONS(4419), [sym__superscript_open] = ACTIONS(4419), [sym__subscript_open] = ACTIONS(4419), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4419), @@ -105080,7 +103583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4419), [sym__strong_emphasis_open_underscore] = ACTIONS(4419), }, - [STATE(845)] = { + [STATE(823)] = { [sym__backslash_escape] = ACTIONS(4385), [sym_entity_reference] = ACTIONS(4385), [sym_numeric_character_reference] = ACTIONS(4385), @@ -105113,7 +103616,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(4385), [sym__newline_token] = ACTIONS(4385), [aux_sym_insert_token1] = ACTIONS(4385), - [aux_sym_insert_token2] = ACTIONS(4385), [aux_sym_delete_token1] = ACTIONS(4385), [aux_sym_highlight_token1] = ACTIONS(4385), [aux_sym_edit_comment_token1] = ACTIONS(4385), @@ -105121,7 +103623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_CARET] = ACTIONS(4385), [sym_uri_autolink] = ACTIONS(4385), [sym_email_autolink] = ACTIONS(4385), - [sym__whitespace_ge_2] = ACTIONS(4387), + [sym__whitespace_ge_2] = ACTIONS(4385), [aux_sym__whitespace_token1] = ACTIONS(4387), [sym__word_no_digit] = ACTIONS(4385), [sym__digits] = ACTIONS(4385), @@ -105131,7 +103633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4385), [sym__emphasis_open_star] = ACTIONS(4385), [sym__emphasis_open_underscore] = ACTIONS(4385), - [sym__last_token_punctuation] = ACTIONS(4453), + [sym__last_token_punctuation] = ACTIONS(4435), [sym__strikeout_open] = ACTIONS(4385), [sym__latex_span_start] = ACTIONS(4385), [sym__single_quote_open] = ACTIONS(4385), @@ -105146,145 +103648,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__shortcode_open] = ACTIONS(4385), [sym__unclosed_span] = ACTIONS(4385), [sym__strong_emphasis_open_star] = ACTIONS(4385), + [sym__strong_emphasis_close_star] = ACTIONS(4385), [sym__strong_emphasis_open_underscore] = ACTIONS(4385), }, - [STATE(846)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_RBRACK] = ACTIONS(4413), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__last_token_punctuation] = ACTIONS(4455), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), + [STATE(824)] = { + [sym__backslash_escape] = ACTIONS(4397), + [sym_entity_reference] = ACTIONS(4397), + [sym_numeric_character_reference] = ACTIONS(4397), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4397), + [anon_sym_POUND] = ACTIONS(4397), + [anon_sym_DOLLAR] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_COMMA] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_COLON] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), + [anon_sym_QMARK] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_BSLASH] = ACTIONS(4399), + [anon_sym_CARET] = ACTIONS(4399), + [anon_sym_BQUOTE] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_PIPE] = ACTIONS(4397), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_RPAREN] = ACTIONS(4397), + [sym__newline_token] = ACTIONS(4397), + [aux_sym_insert_token1] = ACTIONS(4397), + [aux_sym_delete_token1] = ACTIONS(4397), + [aux_sym_highlight_token1] = ACTIONS(4397), + [aux_sym_edit_comment_token1] = ACTIONS(4397), + [anon_sym_CARET_LBRACK] = ACTIONS(4397), + [anon_sym_LBRACK_CARET] = ACTIONS(4397), + [sym_uri_autolink] = ACTIONS(4397), + [sym_email_autolink] = ACTIONS(4397), + [sym__whitespace_ge_2] = ACTIONS(4397), + [aux_sym__whitespace_token1] = ACTIONS(4399), + [sym__word_no_digit] = ACTIONS(4397), + [sym__digits] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4397), + [sym__code_span_start] = ACTIONS(4397), + [sym__emphasis_open_star] = ACTIONS(4397), + [sym__emphasis_open_underscore] = ACTIONS(4397), + [sym__last_token_whitespace] = ACTIONS(4437), + [sym__strikeout_open] = ACTIONS(4397), + [sym__latex_span_start] = ACTIONS(4397), + [sym__single_quote_open] = ACTIONS(4397), + [sym__single_quote_close] = ACTIONS(4397), + [sym__double_quote_open] = ACTIONS(4397), + [sym__superscript_open] = ACTIONS(4397), + [sym__subscript_open] = ACTIONS(4397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4397), + [sym__cite_author_in_text] = ACTIONS(4397), + [sym__cite_suppress_author] = ACTIONS(4397), + [sym__shortcode_open_escaped] = ACTIONS(4397), + [sym__shortcode_open] = ACTIONS(4397), + [sym__unclosed_span] = ACTIONS(4397), + [sym__strong_emphasis_open_star] = ACTIONS(4397), + [sym__strong_emphasis_open_underscore] = ACTIONS(4397), }, - [STATE(847)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4369), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - [sym__strong_emphasis_close_underscore] = ACTIONS(4335), + [STATE(825)] = { + [sym__backslash_escape] = ACTIONS(4397), + [sym_entity_reference] = ACTIONS(4397), + [sym_numeric_character_reference] = ACTIONS(4397), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4397), + [anon_sym_POUND] = ACTIONS(4397), + [anon_sym_DOLLAR] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_COMMA] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_COLON] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), + [anon_sym_QMARK] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_BSLASH] = ACTIONS(4399), + [anon_sym_CARET] = ACTIONS(4399), + [anon_sym_BQUOTE] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_PIPE] = ACTIONS(4397), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_RPAREN] = ACTIONS(4397), + [sym__newline_token] = ACTIONS(4397), + [aux_sym_insert_token1] = ACTIONS(4397), + [aux_sym_delete_token1] = ACTIONS(4397), + [aux_sym_highlight_token1] = ACTIONS(4397), + [aux_sym_edit_comment_token1] = ACTIONS(4397), + [anon_sym_CARET_LBRACK] = ACTIONS(4397), + [anon_sym_LBRACK_CARET] = ACTIONS(4397), + [sym_uri_autolink] = ACTIONS(4397), + [sym_email_autolink] = ACTIONS(4397), + [sym__whitespace_ge_2] = ACTIONS(4397), + [aux_sym__whitespace_token1] = ACTIONS(4399), + [sym__word_no_digit] = ACTIONS(4397), + [sym__digits] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4397), + [sym__code_span_start] = ACTIONS(4397), + [sym__emphasis_open_star] = ACTIONS(4397), + [sym__emphasis_open_underscore] = ACTIONS(4397), + [sym__last_token_whitespace] = ACTIONS(4439), + [sym__strikeout_open] = ACTIONS(4397), + [sym__latex_span_start] = ACTIONS(4397), + [sym__single_quote_open] = ACTIONS(4397), + [sym__double_quote_open] = ACTIONS(4397), + [sym__superscript_open] = ACTIONS(4397), + [sym__subscript_open] = ACTIONS(4397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4397), + [sym__cite_author_in_text] = ACTIONS(4397), + [sym__cite_suppress_author] = ACTIONS(4397), + [sym__shortcode_open_escaped] = ACTIONS(4397), + [sym__shortcode_open] = ACTIONS(4397), + [sym__unclosed_span] = ACTIONS(4397), + [sym__strong_emphasis_open_star] = ACTIONS(4397), + [sym__strong_emphasis_close_star] = ACTIONS(4397), + [sym__strong_emphasis_open_underscore] = ACTIONS(4397), }, - [STATE(848)] = { + [STATE(826)] = { + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(4337), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4383), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__double_quote_close] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), + }, + [STATE(827)] = { [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -105306,9 +103877,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(4329), [anon_sym_EQ] = ACTIONS(4329), [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4405), [anon_sym_BSLASH] = ACTIONS(4331), - [anon_sym_RBRACK] = ACTIONS(4329), [anon_sym_CARET] = ACTIONS(4331), [anon_sym_BQUOTE] = ACTIONS(4329), [anon_sym_LBRACE] = ACTIONS(4329), @@ -105335,8 +103905,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4367), + [sym__last_token_punctuation] = ACTIONS(4361), [sym__strikeout_open] = ACTIONS(4329), + [sym__strikeout_close] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), [sym__double_quote_open] = ACTIONS(4329), @@ -105352,211 +103923,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4329), [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(849)] = { - [sym__backslash_escape] = ACTIONS(4419), - [sym_entity_reference] = ACTIONS(4419), - [sym_numeric_character_reference] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4421), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_DQUOTE] = ACTIONS(4419), - [anon_sym_POUND] = ACTIONS(4419), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_AMP] = ACTIONS(4421), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_COMMA] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4421), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_BSLASH] = ACTIONS(4421), - [anon_sym_RBRACK] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4421), - [anon_sym_BQUOTE] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_TILDE] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4419), - [anon_sym_RPAREN] = ACTIONS(4419), - [sym__newline_token] = ACTIONS(4419), - [aux_sym_insert_token1] = ACTIONS(4419), - [aux_sym_delete_token1] = ACTIONS(4419), - [aux_sym_highlight_token1] = ACTIONS(4419), - [aux_sym_edit_comment_token1] = ACTIONS(4419), - [anon_sym_CARET_LBRACK] = ACTIONS(4419), - [anon_sym_LBRACK_CARET] = ACTIONS(4419), - [sym_uri_autolink] = ACTIONS(4419), - [sym_email_autolink] = ACTIONS(4419), - [sym__whitespace_ge_2] = ACTIONS(4419), - [aux_sym__whitespace_token1] = ACTIONS(4421), - [sym__word_no_digit] = ACTIONS(4419), - [sym__digits] = ACTIONS(4419), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4419), - [sym__code_span_start] = ACTIONS(4419), - [sym__emphasis_open_star] = ACTIONS(4419), - [sym__emphasis_open_underscore] = ACTIONS(4419), - [sym__last_token_punctuation] = ACTIONS(4457), - [sym__strikeout_open] = ACTIONS(4419), - [sym__latex_span_start] = ACTIONS(4419), - [sym__single_quote_open] = ACTIONS(4419), - [sym__double_quote_open] = ACTIONS(4419), - [sym__superscript_open] = ACTIONS(4419), - [sym__subscript_open] = ACTIONS(4419), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4419), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4419), - [sym__cite_author_in_text] = ACTIONS(4419), - [sym__cite_suppress_author] = ACTIONS(4419), - [sym__shortcode_open_escaped] = ACTIONS(4419), - [sym__shortcode_open] = ACTIONS(4419), - [sym__unclosed_span] = ACTIONS(4419), - [sym__strong_emphasis_open_star] = ACTIONS(4419), - [sym__strong_emphasis_open_underscore] = ACTIONS(4419), + [STATE(828)] = { + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_RBRACK] = ACTIONS(4337), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(4337), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4341), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), }, - [STATE(850)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__last_token_punctuation] = ACTIONS(4459), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__single_quote_close] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), + [STATE(829)] = { + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(4337), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4345), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_close_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), }, - [STATE(851)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__last_token_punctuation] = ACTIONS(4461), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__superscript_close] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), + [STATE(830)] = { + [sym__backslash_escape] = ACTIONS(4397), + [sym_entity_reference] = ACTIONS(4397), + [sym_numeric_character_reference] = ACTIONS(4397), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4397), + [anon_sym_POUND] = ACTIONS(4397), + [anon_sym_DOLLAR] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_COMMA] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_COLON] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), + [anon_sym_QMARK] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_BSLASH] = ACTIONS(4399), + [anon_sym_CARET] = ACTIONS(4399), + [anon_sym_BQUOTE] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_PIPE] = ACTIONS(4397), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_RPAREN] = ACTIONS(4397), + [sym__newline_token] = ACTIONS(4397), + [aux_sym_insert_token1] = ACTIONS(4397), + [aux_sym_delete_token1] = ACTIONS(4397), + [aux_sym_highlight_token1] = ACTIONS(4397), + [aux_sym_edit_comment_token1] = ACTIONS(4397), + [anon_sym_CARET_LBRACK] = ACTIONS(4397), + [anon_sym_LBRACK_CARET] = ACTIONS(4397), + [sym_uri_autolink] = ACTIONS(4397), + [sym_email_autolink] = ACTIONS(4397), + [sym__whitespace_ge_2] = ACTIONS(4397), + [aux_sym__whitespace_token1] = ACTIONS(4399), + [sym__word_no_digit] = ACTIONS(4397), + [sym__digits] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4397), + [sym__code_span_start] = ACTIONS(4397), + [sym__emphasis_open_star] = ACTIONS(4397), + [sym__emphasis_open_underscore] = ACTIONS(4397), + [sym__emphasis_close_underscore] = ACTIONS(4397), + [sym__last_token_whitespace] = ACTIONS(4441), + [sym__strikeout_open] = ACTIONS(4397), + [sym__latex_span_start] = ACTIONS(4397), + [sym__single_quote_open] = ACTIONS(4397), + [sym__double_quote_open] = ACTIONS(4397), + [sym__superscript_open] = ACTIONS(4397), + [sym__subscript_open] = ACTIONS(4397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4397), + [sym__cite_author_in_text] = ACTIONS(4397), + [sym__cite_suppress_author] = ACTIONS(4397), + [sym__shortcode_open_escaped] = ACTIONS(4397), + [sym__shortcode_open] = ACTIONS(4397), + [sym__unclosed_span] = ACTIONS(4397), + [sym__strong_emphasis_open_star] = ACTIONS(4397), + [sym__strong_emphasis_open_underscore] = ACTIONS(4397), }, - [STATE(852)] = { + [STATE(831)] = { [sym__backslash_escape] = ACTIONS(4385), [sym_entity_reference] = ACTIONS(4385), [sym_numeric_character_reference] = ACTIONS(4385), @@ -105580,7 +104151,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4385), [anon_sym_LBRACK] = ACTIONS(4387), [anon_sym_BSLASH] = ACTIONS(4387), - [anon_sym_RBRACK] = ACTIONS(4385), [anon_sym_CARET] = ACTIONS(4387), [anon_sym_BQUOTE] = ACTIONS(4385), [anon_sym_LBRACE] = ACTIONS(4385), @@ -105607,8 +104177,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4385), [sym__emphasis_open_star] = ACTIONS(4385), [sym__emphasis_open_underscore] = ACTIONS(4385), - [sym__last_token_punctuation] = ACTIONS(4463), + [sym__last_token_punctuation] = ACTIONS(4443), [sym__strikeout_open] = ACTIONS(4385), + [sym__strikeout_close] = ACTIONS(4385), [sym__latex_span_start] = ACTIONS(4385), [sym__single_quote_open] = ACTIONS(4385), [sym__double_quote_open] = ACTIONS(4385), @@ -105624,143 +104195,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4385), [sym__strong_emphasis_open_underscore] = ACTIONS(4385), }, - [STATE(853)] = { - [sym__backslash_escape] = ACTIONS(4393), - [sym_entity_reference] = ACTIONS(4393), - [sym_numeric_character_reference] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_DQUOTE] = ACTIONS(4393), - [anon_sym_POUND] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_QMARK] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_BSLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym_BQUOTE] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4393), - [anon_sym_TILDE] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [sym__newline_token] = ACTIONS(4393), - [aux_sym_insert_token1] = ACTIONS(4393), - [aux_sym_delete_token1] = ACTIONS(4393), - [aux_sym_highlight_token1] = ACTIONS(4393), - [aux_sym_edit_comment_token1] = ACTIONS(4393), - [anon_sym_CARET_LBRACK] = ACTIONS(4393), - [anon_sym_LBRACK_CARET] = ACTIONS(4393), - [sym_uri_autolink] = ACTIONS(4393), - [sym_email_autolink] = ACTIONS(4393), - [sym__whitespace_ge_2] = ACTIONS(4393), - [aux_sym__whitespace_token1] = ACTIONS(4395), - [sym__word_no_digit] = ACTIONS(4393), - [sym__digits] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4393), - [sym__code_span_start] = ACTIONS(4393), - [sym__emphasis_open_star] = ACTIONS(4393), - [sym__emphasis_open_underscore] = ACTIONS(4393), - [sym__last_token_whitespace] = ACTIONS(4465), - [sym__strikeout_open] = ACTIONS(4393), - [sym__latex_span_start] = ACTIONS(4393), - [sym__single_quote_open] = ACTIONS(4393), - [sym__double_quote_open] = ACTIONS(4393), - [sym__superscript_open] = ACTIONS(4393), - [sym__subscript_open] = ACTIONS(4393), - [sym__subscript_close] = ACTIONS(4393), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4393), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4393), - [sym__cite_author_in_text] = ACTIONS(4393), - [sym__cite_suppress_author] = ACTIONS(4393), - [sym__shortcode_open_escaped] = ACTIONS(4393), - [sym__shortcode_open] = ACTIONS(4393), - [sym__unclosed_span] = ACTIONS(4393), - [sym__strong_emphasis_open_star] = ACTIONS(4393), - [sym__strong_emphasis_open_underscore] = ACTIONS(4393), + [STATE(832)] = { + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(4337), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__emphasis_close_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4353), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), }, - [STATE(854)] = { - [sym__backslash_escape] = ACTIONS(4385), - [sym_entity_reference] = ACTIONS(4385), - [sym_numeric_character_reference] = ACTIONS(4385), - [anon_sym_LT] = ACTIONS(4387), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_POUND] = ACTIONS(4385), - [anon_sym_DOLLAR] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(4387), - [anon_sym_SQUOTE] = ACTIONS(4385), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_COMMA] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4387), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_COLON] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_QMARK] = ACTIONS(4385), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_BSLASH] = ACTIONS(4387), - [anon_sym_CARET] = ACTIONS(4387), - [anon_sym_BQUOTE] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4385), - [anon_sym_PIPE] = ACTIONS(4385), - [anon_sym_TILDE] = ACTIONS(4385), - [anon_sym_LPAREN] = ACTIONS(4385), - [anon_sym_RPAREN] = ACTIONS(4385), - [sym__newline_token] = ACTIONS(4385), - [aux_sym_insert_token1] = ACTIONS(4385), - [aux_sym_delete_token1] = ACTIONS(4385), - [aux_sym_highlight_token1] = ACTIONS(4385), - [aux_sym_edit_comment_token1] = ACTIONS(4385), - [anon_sym_CARET_LBRACK] = ACTIONS(4385), - [anon_sym_LBRACK_CARET] = ACTIONS(4385), - [sym_uri_autolink] = ACTIONS(4385), - [sym_email_autolink] = ACTIONS(4385), - [sym__whitespace_ge_2] = ACTIONS(4385), - [aux_sym__whitespace_token1] = ACTIONS(4387), - [sym__word_no_digit] = ACTIONS(4385), - [sym__digits] = ACTIONS(4385), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4385), - [sym__code_span_start] = ACTIONS(4385), - [sym__emphasis_open_star] = ACTIONS(4385), - [sym__emphasis_open_underscore] = ACTIONS(4385), - [sym__emphasis_close_underscore] = ACTIONS(4385), - [sym__last_token_punctuation] = ACTIONS(4467), - [sym__strikeout_open] = ACTIONS(4385), - [sym__latex_span_start] = ACTIONS(4385), - [sym__single_quote_open] = ACTIONS(4385), - [sym__double_quote_open] = ACTIONS(4385), - [sym__superscript_open] = ACTIONS(4385), - [sym__subscript_open] = ACTIONS(4385), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4385), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4385), - [sym__cite_author_in_text] = ACTIONS(4385), - [sym__cite_suppress_author] = ACTIONS(4385), - [sym__shortcode_open_escaped] = ACTIONS(4385), - [sym__shortcode_open] = ACTIONS(4385), - [sym__unclosed_span] = ACTIONS(4385), - [sym__strong_emphasis_open_star] = ACTIONS(4385), - [sym__strong_emphasis_open_underscore] = ACTIONS(4385), + [STATE(833)] = { + [sym__backslash_escape] = ACTIONS(4419), + [sym_entity_reference] = ACTIONS(4419), + [sym_numeric_character_reference] = ACTIONS(4419), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_BANG] = ACTIONS(4419), + [anon_sym_DQUOTE] = ACTIONS(4419), + [anon_sym_POUND] = ACTIONS(4419), + [anon_sym_DOLLAR] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_AMP] = ACTIONS(4421), + [anon_sym_SQUOTE] = ACTIONS(4419), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_COMMA] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_COLON] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4419), + [anon_sym_QMARK] = ACTIONS(4419), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_BSLASH] = ACTIONS(4421), + [anon_sym_CARET] = ACTIONS(4421), + [anon_sym_BQUOTE] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4419), + [anon_sym_PIPE] = ACTIONS(4419), + [anon_sym_TILDE] = ACTIONS(4419), + [anon_sym_LPAREN] = ACTIONS(4419), + [anon_sym_RPAREN] = ACTIONS(4419), + [sym__newline_token] = ACTIONS(4419), + [aux_sym_insert_token1] = ACTIONS(4419), + [aux_sym_delete_token1] = ACTIONS(4419), + [aux_sym_highlight_token1] = ACTIONS(4419), + [aux_sym_edit_comment_token1] = ACTIONS(4419), + [anon_sym_CARET_LBRACK] = ACTIONS(4419), + [anon_sym_LBRACK_CARET] = ACTIONS(4419), + [sym_uri_autolink] = ACTIONS(4419), + [sym_email_autolink] = ACTIONS(4419), + [sym__whitespace_ge_2] = ACTIONS(4419), + [aux_sym__whitespace_token1] = ACTIONS(4421), + [sym__word_no_digit] = ACTIONS(4419), + [sym__digits] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4419), + [sym__code_span_start] = ACTIONS(4419), + [sym__emphasis_open_star] = ACTIONS(4419), + [sym__emphasis_open_underscore] = ACTIONS(4419), + [sym__last_token_punctuation] = ACTIONS(4445), + [sym__strikeout_open] = ACTIONS(4419), + [sym__latex_span_start] = ACTIONS(4419), + [sym__single_quote_open] = ACTIONS(4419), + [sym__single_quote_close] = ACTIONS(4419), + [sym__double_quote_open] = ACTIONS(4419), + [sym__superscript_open] = ACTIONS(4419), + [sym__subscript_open] = ACTIONS(4419), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4419), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4419), + [sym__cite_author_in_text] = ACTIONS(4419), + [sym__cite_suppress_author] = ACTIONS(4419), + [sym__shortcode_open_escaped] = ACTIONS(4419), + [sym__shortcode_open] = ACTIONS(4419), + [sym__unclosed_span] = ACTIONS(4419), + [sym__strong_emphasis_open_star] = ACTIONS(4419), + [sym__strong_emphasis_open_underscore] = ACTIONS(4419), }, - [STATE(855)] = { + [STATE(834)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__emphasis_close_star] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4355), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + }, + [STATE(835)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4333), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + }, + [STATE(836)] = { [sym__backslash_escape] = ACTIONS(4419), [sym_entity_reference] = ACTIONS(4419), [sym_numeric_character_reference] = ACTIONS(4419), @@ -105810,7 +104517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4419), [sym__emphasis_open_star] = ACTIONS(4419), [sym__emphasis_open_underscore] = ACTIONS(4419), - [sym__last_token_punctuation] = ACTIONS(4469), + [sym__last_token_punctuation] = ACTIONS(4447), [sym__strikeout_open] = ACTIONS(4419), [sym__latex_span_start] = ACTIONS(4419), [sym__single_quote_open] = ACTIONS(4419), @@ -105828,7 +104535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4419), [sym__strong_emphasis_open_underscore] = ACTIONS(4419), }, - [STATE(856)] = { + [STATE(837)] = { [sym__backslash_escape] = ACTIONS(4419), [sym_entity_reference] = ACTIONS(4419), [sym_numeric_character_reference] = ACTIONS(4419), @@ -105852,6 +104559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4419), [anon_sym_LBRACK] = ACTIONS(4421), [anon_sym_BSLASH] = ACTIONS(4421), + [anon_sym_RBRACK] = ACTIONS(4419), [anon_sym_CARET] = ACTIONS(4421), [anon_sym_BQUOTE] = ACTIONS(4419), [anon_sym_LBRACE] = ACTIONS(4419), @@ -105878,11 +104586,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4419), [sym__emphasis_open_star] = ACTIONS(4419), [sym__emphasis_open_underscore] = ACTIONS(4419), - [sym__last_token_punctuation] = ACTIONS(4471), + [sym__last_token_punctuation] = ACTIONS(4449), [sym__strikeout_open] = ACTIONS(4419), [sym__latex_span_start] = ACTIONS(4419), [sym__single_quote_open] = ACTIONS(4419), - [sym__single_quote_close] = ACTIONS(4419), [sym__double_quote_open] = ACTIONS(4419), [sym__superscript_open] = ACTIONS(4419), [sym__subscript_open] = ACTIONS(4419), @@ -105896,75 +104603,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4419), [sym__strong_emphasis_open_underscore] = ACTIONS(4419), }, - [STATE(857)] = { - [sym__backslash_escape] = ACTIONS(4403), - [sym_entity_reference] = ACTIONS(4403), - [sym_numeric_character_reference] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4403), - [anon_sym_DQUOTE] = ACTIONS(4403), - [anon_sym_POUND] = ACTIONS(4403), - [anon_sym_DOLLAR] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_AMP] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4403), - [anon_sym_COMMA] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_COLON] = ACTIONS(4403), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_EQ] = ACTIONS(4403), - [anon_sym_QMARK] = ACTIONS(4403), + [STATE(838)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__last_token_punctuation] = ACTIONS(4451), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), + [sym__strong_emphasis_close_underscore] = ACTIONS(4391), + }, + [STATE(839)] = { + [ts_builtin_sym_end] = ACTIONS(4329), + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4335), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + }, + [STATE(840)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_BSLASH] = ACTIONS(4405), - [anon_sym_CARET] = ACTIONS(4405), - [anon_sym_BQUOTE] = ACTIONS(4403), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_PIPE] = ACTIONS(4403), - [anon_sym_TILDE] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_RPAREN] = ACTIONS(4403), - [sym__newline_token] = ACTIONS(4403), - [aux_sym_insert_token1] = ACTIONS(4403), - [aux_sym_delete_token1] = ACTIONS(4403), - [aux_sym_highlight_token1] = ACTIONS(4403), - [aux_sym_edit_comment_token1] = ACTIONS(4403), - [anon_sym_CARET_LBRACK] = ACTIONS(4403), - [anon_sym_LBRACK_CARET] = ACTIONS(4403), - [sym_uri_autolink] = ACTIONS(4403), - [sym_email_autolink] = ACTIONS(4403), - [sym__whitespace_ge_2] = ACTIONS(4403), - [aux_sym__whitespace_token1] = ACTIONS(4405), - [sym__word_no_digit] = ACTIONS(4403), - [sym__digits] = ACTIONS(4403), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4403), - [sym__code_span_start] = ACTIONS(4403), - [sym__emphasis_open_star] = ACTIONS(4403), - [sym__emphasis_open_underscore] = ACTIONS(4403), - [sym__emphasis_close_underscore] = ACTIONS(4403), - [sym__last_token_punctuation] = ACTIONS(4473), - [sym__strikeout_open] = ACTIONS(4403), - [sym__latex_span_start] = ACTIONS(4403), - [sym__single_quote_open] = ACTIONS(4403), - [sym__double_quote_open] = ACTIONS(4403), - [sym__superscript_open] = ACTIONS(4403), - [sym__subscript_open] = ACTIONS(4403), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4403), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4403), - [sym__cite_author_in_text] = ACTIONS(4403), - [sym__cite_suppress_author] = ACTIONS(4403), - [sym__shortcode_open_escaped] = ACTIONS(4403), - [sym__shortcode_open] = ACTIONS(4403), - [sym__unclosed_span] = ACTIONS(4403), - [sym__strong_emphasis_open_star] = ACTIONS(4403), - [sym__strong_emphasis_open_underscore] = ACTIONS(4403), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4333), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(858)] = { + [STATE(841)] = { + [sym__backslash_escape] = ACTIONS(4397), + [sym_entity_reference] = ACTIONS(4397), + [sym_numeric_character_reference] = ACTIONS(4397), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4397), + [anon_sym_POUND] = ACTIONS(4397), + [anon_sym_DOLLAR] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_COMMA] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_COLON] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), + [anon_sym_QMARK] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_BSLASH] = ACTIONS(4399), + [anon_sym_CARET] = ACTIONS(4399), + [anon_sym_BQUOTE] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_PIPE] = ACTIONS(4397), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_RPAREN] = ACTIONS(4397), + [sym__newline_token] = ACTIONS(4397), + [aux_sym_insert_token1] = ACTIONS(4397), + [aux_sym_insert_token2] = ACTIONS(4397), + [aux_sym_delete_token1] = ACTIONS(4397), + [aux_sym_highlight_token1] = ACTIONS(4397), + [aux_sym_edit_comment_token1] = ACTIONS(4397), + [anon_sym_CARET_LBRACK] = ACTIONS(4397), + [anon_sym_LBRACK_CARET] = ACTIONS(4397), + [sym_uri_autolink] = ACTIONS(4397), + [sym_email_autolink] = ACTIONS(4397), + [sym__whitespace_ge_2] = ACTIONS(4399), + [aux_sym__whitespace_token1] = ACTIONS(4399), + [sym__word_no_digit] = ACTIONS(4397), + [sym__digits] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4397), + [sym__code_span_start] = ACTIONS(4397), + [sym__emphasis_open_star] = ACTIONS(4397), + [sym__emphasis_open_underscore] = ACTIONS(4397), + [sym__last_token_whitespace] = ACTIONS(4453), + [sym__strikeout_open] = ACTIONS(4397), + [sym__latex_span_start] = ACTIONS(4397), + [sym__single_quote_open] = ACTIONS(4397), + [sym__double_quote_open] = ACTIONS(4397), + [sym__superscript_open] = ACTIONS(4397), + [sym__subscript_open] = ACTIONS(4397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4397), + [sym__cite_author_in_text] = ACTIONS(4397), + [sym__cite_suppress_author] = ACTIONS(4397), + [sym__shortcode_open_escaped] = ACTIONS(4397), + [sym__shortcode_open] = ACTIONS(4397), + [sym__unclosed_span] = ACTIONS(4397), + [sym__strong_emphasis_open_star] = ACTIONS(4397), + [sym__strong_emphasis_open_underscore] = ACTIONS(4397), + }, + [STATE(842)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4367), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + [sym__strong_emphasis_close_underscore] = ACTIONS(4329), + }, + [STATE(843)] = { [sym__backslash_escape] = ACTIONS(4385), [sym_entity_reference] = ACTIONS(4385), [sym_numeric_character_reference] = ACTIONS(4385), @@ -106014,13 +104993,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4385), [sym__emphasis_open_star] = ACTIONS(4385), [sym__emphasis_open_underscore] = ACTIONS(4385), - [sym__last_token_punctuation] = ACTIONS(4475), + [sym__last_token_punctuation] = ACTIONS(4455), [sym__strikeout_open] = ACTIONS(4385), [sym__latex_span_start] = ACTIONS(4385), [sym__single_quote_open] = ACTIONS(4385), [sym__double_quote_open] = ACTIONS(4385), [sym__superscript_open] = ACTIONS(4385), - [sym__superscript_close] = ACTIONS(4385), [sym__subscript_open] = ACTIONS(4385), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4385), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4385), @@ -106031,8 +105009,553 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unclosed_span] = ACTIONS(4385), [sym__strong_emphasis_open_star] = ACTIONS(4385), [sym__strong_emphasis_open_underscore] = ACTIONS(4385), + [sym__strong_emphasis_close_underscore] = ACTIONS(4385), }, - [STATE(859)] = { + [STATE(844)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__emphasis_close_star] = ACTIONS(4391), + [sym__last_token_punctuation] = ACTIONS(4457), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), + }, + [STATE(845)] = { + [sym__backslash_escape] = ACTIONS(4407), + [sym_entity_reference] = ACTIONS(4407), + [sym_numeric_character_reference] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [anon_sym_POUND] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_COMMA] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_COLON] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_QMARK] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_BSLASH] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4409), + [anon_sym_BQUOTE] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(4407), + [sym__newline_token] = ACTIONS(4407), + [aux_sym_insert_token1] = ACTIONS(4407), + [aux_sym_delete_token1] = ACTIONS(4407), + [aux_sym_highlight_token1] = ACTIONS(4407), + [aux_sym_edit_comment_token1] = ACTIONS(4407), + [anon_sym_CARET_LBRACK] = ACTIONS(4407), + [anon_sym_LBRACK_CARET] = ACTIONS(4407), + [sym_uri_autolink] = ACTIONS(4407), + [sym_email_autolink] = ACTIONS(4407), + [sym__whitespace_ge_2] = ACTIONS(4407), + [aux_sym__whitespace_token1] = ACTIONS(4409), + [sym__word_no_digit] = ACTIONS(4407), + [sym__digits] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4407), + [sym__code_span_start] = ACTIONS(4407), + [sym__emphasis_open_star] = ACTIONS(4407), + [sym__emphasis_open_underscore] = ACTIONS(4407), + [sym__emphasis_close_star] = ACTIONS(4407), + [sym__last_token_punctuation] = ACTIONS(4459), + [sym__strikeout_open] = ACTIONS(4407), + [sym__latex_span_start] = ACTIONS(4407), + [sym__single_quote_open] = ACTIONS(4407), + [sym__double_quote_open] = ACTIONS(4407), + [sym__superscript_open] = ACTIONS(4407), + [sym__subscript_open] = ACTIONS(4407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4407), + [sym__cite_author_in_text] = ACTIONS(4407), + [sym__cite_suppress_author] = ACTIONS(4407), + [sym__shortcode_open_escaped] = ACTIONS(4407), + [sym__shortcode_open] = ACTIONS(4407), + [sym__unclosed_span] = ACTIONS(4407), + [sym__strong_emphasis_open_star] = ACTIONS(4407), + [sym__strong_emphasis_open_underscore] = ACTIONS(4407), + }, + [STATE(846)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_RBRACK] = ACTIONS(4391), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__last_token_punctuation] = ACTIONS(4461), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), + }, + [STATE(847)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4367), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + [sym__strong_emphasis_close_underscore] = ACTIONS(4329), + }, + [STATE(848)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__emphasis_close_underscore] = ACTIONS(4391), + [sym__last_token_punctuation] = ACTIONS(4463), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), + }, + [STATE(849)] = { + [sym__backslash_escape] = ACTIONS(4407), + [sym_entity_reference] = ACTIONS(4407), + [sym_numeric_character_reference] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [anon_sym_POUND] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_COMMA] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_COLON] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_QMARK] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_BSLASH] = ACTIONS(4409), + [anon_sym_RBRACK] = ACTIONS(4407), + [anon_sym_CARET] = ACTIONS(4409), + [anon_sym_BQUOTE] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(4407), + [sym__newline_token] = ACTIONS(4407), + [aux_sym_insert_token1] = ACTIONS(4407), + [aux_sym_delete_token1] = ACTIONS(4407), + [aux_sym_highlight_token1] = ACTIONS(4407), + [aux_sym_edit_comment_token1] = ACTIONS(4407), + [anon_sym_CARET_LBRACK] = ACTIONS(4407), + [anon_sym_LBRACK_CARET] = ACTIONS(4407), + [sym_uri_autolink] = ACTIONS(4407), + [sym_email_autolink] = ACTIONS(4407), + [sym__whitespace_ge_2] = ACTIONS(4407), + [aux_sym__whitespace_token1] = ACTIONS(4409), + [sym__word_no_digit] = ACTIONS(4407), + [sym__digits] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4407), + [sym__code_span_start] = ACTIONS(4407), + [sym__emphasis_open_star] = ACTIONS(4407), + [sym__emphasis_open_underscore] = ACTIONS(4407), + [sym__last_token_punctuation] = ACTIONS(4465), + [sym__strikeout_open] = ACTIONS(4407), + [sym__latex_span_start] = ACTIONS(4407), + [sym__single_quote_open] = ACTIONS(4407), + [sym__double_quote_open] = ACTIONS(4407), + [sym__superscript_open] = ACTIONS(4407), + [sym__subscript_open] = ACTIONS(4407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4407), + [sym__cite_author_in_text] = ACTIONS(4407), + [sym__cite_suppress_author] = ACTIONS(4407), + [sym__shortcode_open_escaped] = ACTIONS(4407), + [sym__shortcode_open] = ACTIONS(4407), + [sym__unclosed_span] = ACTIONS(4407), + [sym__strong_emphasis_open_star] = ACTIONS(4407), + [sym__strong_emphasis_open_underscore] = ACTIONS(4407), + }, + [STATE(850)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__last_token_punctuation] = ACTIONS(4467), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__single_quote_close] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), + }, + [STATE(851)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__last_token_punctuation] = ACTIONS(4469), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__superscript_close] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), + }, + [STATE(852)] = { [sym__backslash_escape] = ACTIONS(4385), [sym_entity_reference] = ACTIONS(4385), [sym_numeric_character_reference] = ACTIONS(4385), @@ -106056,6 +105579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4385), [anon_sym_LBRACK] = ACTIONS(4387), [anon_sym_BSLASH] = ACTIONS(4387), + [anon_sym_RBRACK] = ACTIONS(4385), [anon_sym_CARET] = ACTIONS(4387), [anon_sym_BQUOTE] = ACTIONS(4385), [anon_sym_LBRACE] = ACTIONS(4385), @@ -106082,8 +105606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4385), [sym__emphasis_open_star] = ACTIONS(4385), [sym__emphasis_open_underscore] = ACTIONS(4385), - [sym__emphasis_close_star] = ACTIONS(4385), - [sym__last_token_punctuation] = ACTIONS(4477), + [sym__last_token_punctuation] = ACTIONS(4471), [sym__strikeout_open] = ACTIONS(4385), [sym__latex_span_start] = ACTIONS(4385), [sym__single_quote_open] = ACTIONS(4385), @@ -106100,7 +105623,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4385), [sym__strong_emphasis_open_underscore] = ACTIONS(4385), }, - [STATE(860)] = { + [STATE(853)] = { + [sym__backslash_escape] = ACTIONS(4397), + [sym_entity_reference] = ACTIONS(4397), + [sym_numeric_character_reference] = ACTIONS(4397), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4397), + [anon_sym_POUND] = ACTIONS(4397), + [anon_sym_DOLLAR] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_COMMA] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_COLON] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), + [anon_sym_QMARK] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_BSLASH] = ACTIONS(4399), + [anon_sym_CARET] = ACTIONS(4399), + [anon_sym_BQUOTE] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_PIPE] = ACTIONS(4397), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_RPAREN] = ACTIONS(4397), + [sym__newline_token] = ACTIONS(4397), + [aux_sym_insert_token1] = ACTIONS(4397), + [aux_sym_delete_token1] = ACTIONS(4397), + [aux_sym_highlight_token1] = ACTIONS(4397), + [aux_sym_edit_comment_token1] = ACTIONS(4397), + [anon_sym_CARET_LBRACK] = ACTIONS(4397), + [anon_sym_LBRACK_CARET] = ACTIONS(4397), + [sym_uri_autolink] = ACTIONS(4397), + [sym_email_autolink] = ACTIONS(4397), + [sym__whitespace_ge_2] = ACTIONS(4397), + [aux_sym__whitespace_token1] = ACTIONS(4399), + [sym__word_no_digit] = ACTIONS(4397), + [sym__digits] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4397), + [sym__code_span_start] = ACTIONS(4397), + [sym__emphasis_open_star] = ACTIONS(4397), + [sym__emphasis_open_underscore] = ACTIONS(4397), + [sym__last_token_whitespace] = ACTIONS(4473), + [sym__strikeout_open] = ACTIONS(4397), + [sym__latex_span_start] = ACTIONS(4397), + [sym__single_quote_open] = ACTIONS(4397), + [sym__double_quote_open] = ACTIONS(4397), + [sym__superscript_open] = ACTIONS(4397), + [sym__subscript_open] = ACTIONS(4397), + [sym__subscript_close] = ACTIONS(4397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4397), + [sym__cite_author_in_text] = ACTIONS(4397), + [sym__cite_suppress_author] = ACTIONS(4397), + [sym__shortcode_open_escaped] = ACTIONS(4397), + [sym__shortcode_open] = ACTIONS(4397), + [sym__unclosed_span] = ACTIONS(4397), + [sym__strong_emphasis_open_star] = ACTIONS(4397), + [sym__strong_emphasis_open_underscore] = ACTIONS(4397), + }, + [STATE(854)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__emphasis_close_underscore] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4347), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + }, + [STATE(855)] = { + [sym__backslash_escape] = ACTIONS(4407), + [sym_entity_reference] = ACTIONS(4407), + [sym_numeric_character_reference] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [anon_sym_POUND] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_COMMA] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_COLON] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_QMARK] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_BSLASH] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4409), + [anon_sym_BQUOTE] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(4407), + [sym__newline_token] = ACTIONS(4407), + [aux_sym_insert_token1] = ACTIONS(4407), + [aux_sym_delete_token1] = ACTIONS(4407), + [aux_sym_highlight_token1] = ACTIONS(4407), + [aux_sym_edit_comment_token1] = ACTIONS(4407), + [anon_sym_CARET_LBRACK] = ACTIONS(4407), + [anon_sym_LBRACK_CARET] = ACTIONS(4407), + [sym_uri_autolink] = ACTIONS(4407), + [sym_email_autolink] = ACTIONS(4407), + [sym__whitespace_ge_2] = ACTIONS(4407), + [aux_sym__whitespace_token1] = ACTIONS(4409), + [sym__word_no_digit] = ACTIONS(4407), + [sym__digits] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4407), + [sym__code_span_start] = ACTIONS(4407), + [sym__emphasis_open_star] = ACTIONS(4407), + [sym__emphasis_open_underscore] = ACTIONS(4407), + [sym__last_token_punctuation] = ACTIONS(4475), + [sym__strikeout_open] = ACTIONS(4407), + [sym__latex_span_start] = ACTIONS(4407), + [sym__single_quote_open] = ACTIONS(4407), + [sym__double_quote_open] = ACTIONS(4407), + [sym__superscript_open] = ACTIONS(4407), + [sym__superscript_close] = ACTIONS(4407), + [sym__subscript_open] = ACTIONS(4407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4407), + [sym__cite_author_in_text] = ACTIONS(4407), + [sym__cite_suppress_author] = ACTIONS(4407), + [sym__shortcode_open_escaped] = ACTIONS(4407), + [sym__shortcode_open] = ACTIONS(4407), + [sym__unclosed_span] = ACTIONS(4407), + [sym__strong_emphasis_open_star] = ACTIONS(4407), + [sym__strong_emphasis_open_underscore] = ACTIONS(4407), + }, + [STATE(856)] = { + [sym__backslash_escape] = ACTIONS(4407), + [sym_entity_reference] = ACTIONS(4407), + [sym_numeric_character_reference] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [anon_sym_POUND] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_COMMA] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_COLON] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_QMARK] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_BSLASH] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4409), + [anon_sym_BQUOTE] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(4407), + [sym__newline_token] = ACTIONS(4407), + [aux_sym_insert_token1] = ACTIONS(4407), + [aux_sym_delete_token1] = ACTIONS(4407), + [aux_sym_highlight_token1] = ACTIONS(4407), + [aux_sym_edit_comment_token1] = ACTIONS(4407), + [anon_sym_CARET_LBRACK] = ACTIONS(4407), + [anon_sym_LBRACK_CARET] = ACTIONS(4407), + [sym_uri_autolink] = ACTIONS(4407), + [sym_email_autolink] = ACTIONS(4407), + [sym__whitespace_ge_2] = ACTIONS(4407), + [aux_sym__whitespace_token1] = ACTIONS(4409), + [sym__word_no_digit] = ACTIONS(4407), + [sym__digits] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4407), + [sym__code_span_start] = ACTIONS(4407), + [sym__emphasis_open_star] = ACTIONS(4407), + [sym__emphasis_open_underscore] = ACTIONS(4407), + [sym__last_token_punctuation] = ACTIONS(4477), + [sym__strikeout_open] = ACTIONS(4407), + [sym__latex_span_start] = ACTIONS(4407), + [sym__single_quote_open] = ACTIONS(4407), + [sym__single_quote_close] = ACTIONS(4407), + [sym__double_quote_open] = ACTIONS(4407), + [sym__superscript_open] = ACTIONS(4407), + [sym__subscript_open] = ACTIONS(4407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4407), + [sym__cite_author_in_text] = ACTIONS(4407), + [sym__cite_suppress_author] = ACTIONS(4407), + [sym__shortcode_open_escaped] = ACTIONS(4407), + [sym__shortcode_open] = ACTIONS(4407), + [sym__unclosed_span] = ACTIONS(4407), + [sym__strong_emphasis_open_star] = ACTIONS(4407), + [sym__strong_emphasis_open_underscore] = ACTIONS(4407), + }, + [STATE(857)] = { + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(4337), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_insert_token2] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4339), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4375), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), + }, + [STATE(858)] = { [sym__backslash_escape] = ACTIONS(4385), [sym_entity_reference] = ACTIONS(4385), [sym_numeric_character_reference] = ACTIONS(4385), @@ -106154,9 +106017,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strikeout_open] = ACTIONS(4385), [sym__latex_span_start] = ACTIONS(4385), [sym__single_quote_open] = ACTIONS(4385), - [sym__single_quote_close] = ACTIONS(4385), [sym__double_quote_open] = ACTIONS(4385), [sym__superscript_open] = ACTIONS(4385), + [sym__superscript_close] = ACTIONS(4385), [sym__subscript_open] = ACTIONS(4385), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4385), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4385), @@ -106168,619 +106031,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4385), [sym__strong_emphasis_open_underscore] = ACTIONS(4385), }, - [STATE(861)] = { - [sym__backslash_escape] = ACTIONS(4403), - [sym_entity_reference] = ACTIONS(4403), - [sym_numeric_character_reference] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4403), - [anon_sym_DQUOTE] = ACTIONS(4403), - [anon_sym_POUND] = ACTIONS(4403), - [anon_sym_DOLLAR] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_AMP] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4403), - [anon_sym_COMMA] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_COLON] = ACTIONS(4403), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_EQ] = ACTIONS(4403), - [anon_sym_QMARK] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_BSLASH] = ACTIONS(4405), - [anon_sym_CARET] = ACTIONS(4405), - [anon_sym_BQUOTE] = ACTIONS(4403), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_PIPE] = ACTIONS(4403), - [anon_sym_TILDE] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_RPAREN] = ACTIONS(4403), - [sym__newline_token] = ACTIONS(4403), - [aux_sym_insert_token1] = ACTIONS(4403), - [aux_sym_delete_token1] = ACTIONS(4403), - [aux_sym_highlight_token1] = ACTIONS(4403), - [aux_sym_edit_comment_token1] = ACTIONS(4403), - [anon_sym_CARET_LBRACK] = ACTIONS(4403), - [anon_sym_LBRACK_CARET] = ACTIONS(4403), - [sym_uri_autolink] = ACTIONS(4403), - [sym_email_autolink] = ACTIONS(4403), - [sym__whitespace_ge_2] = ACTIONS(4403), - [aux_sym__whitespace_token1] = ACTIONS(4405), - [sym__word_no_digit] = ACTIONS(4403), - [sym__digits] = ACTIONS(4403), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4403), - [sym__code_span_start] = ACTIONS(4403), - [sym__emphasis_open_star] = ACTIONS(4403), - [sym__emphasis_open_underscore] = ACTIONS(4403), - [sym__last_token_punctuation] = ACTIONS(4481), - [sym__strikeout_open] = ACTIONS(4403), - [sym__strikeout_close] = ACTIONS(4403), - [sym__latex_span_start] = ACTIONS(4403), - [sym__single_quote_open] = ACTIONS(4403), - [sym__double_quote_open] = ACTIONS(4403), - [sym__superscript_open] = ACTIONS(4403), - [sym__subscript_open] = ACTIONS(4403), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4403), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4403), - [sym__cite_author_in_text] = ACTIONS(4403), - [sym__cite_suppress_author] = ACTIONS(4403), - [sym__shortcode_open_escaped] = ACTIONS(4403), - [sym__shortcode_open] = ACTIONS(4403), - [sym__unclosed_span] = ACTIONS(4403), - [sym__strong_emphasis_open_star] = ACTIONS(4403), - [sym__strong_emphasis_open_underscore] = ACTIONS(4403), - }, - [STATE(862)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_insert_token2] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4415), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__last_token_punctuation] = ACTIONS(4483), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), - }, - [STATE(863)] = { - [sym__backslash_escape] = ACTIONS(4393), - [sym_entity_reference] = ACTIONS(4393), - [sym_numeric_character_reference] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_DQUOTE] = ACTIONS(4393), - [anon_sym_POUND] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_QMARK] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_BSLASH] = ACTIONS(4395), - [anon_sym_RBRACK] = ACTIONS(4393), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym_BQUOTE] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4393), - [anon_sym_TILDE] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [sym__newline_token] = ACTIONS(4393), - [aux_sym_insert_token1] = ACTIONS(4393), - [aux_sym_delete_token1] = ACTIONS(4393), - [aux_sym_highlight_token1] = ACTIONS(4393), - [aux_sym_edit_comment_token1] = ACTIONS(4393), - [anon_sym_CARET_LBRACK] = ACTIONS(4393), - [anon_sym_LBRACK_CARET] = ACTIONS(4393), - [sym_uri_autolink] = ACTIONS(4393), - [sym_email_autolink] = ACTIONS(4393), - [sym__whitespace_ge_2] = ACTIONS(4393), - [aux_sym__whitespace_token1] = ACTIONS(4395), - [sym__word_no_digit] = ACTIONS(4393), - [sym__digits] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4393), - [sym__code_span_start] = ACTIONS(4393), - [sym__emphasis_open_star] = ACTIONS(4393), - [sym__emphasis_open_underscore] = ACTIONS(4393), - [sym__last_token_whitespace] = ACTIONS(4485), - [sym__strikeout_open] = ACTIONS(4393), - [sym__latex_span_start] = ACTIONS(4393), - [sym__single_quote_open] = ACTIONS(4393), - [sym__double_quote_open] = ACTIONS(4393), - [sym__superscript_open] = ACTIONS(4393), - [sym__subscript_open] = ACTIONS(4393), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4393), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4393), - [sym__cite_author_in_text] = ACTIONS(4393), - [sym__cite_suppress_author] = ACTIONS(4393), - [sym__shortcode_open_escaped] = ACTIONS(4393), - [sym__shortcode_open] = ACTIONS(4393), - [sym__unclosed_span] = ACTIONS(4393), - [sym__strong_emphasis_open_star] = ACTIONS(4393), - [sym__strong_emphasis_open_underscore] = ACTIONS(4393), - }, - [STATE(864)] = { - [ts_builtin_sym_end] = ACTIONS(4403), - [sym__backslash_escape] = ACTIONS(4403), - [sym_entity_reference] = ACTIONS(4403), - [sym_numeric_character_reference] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4403), - [anon_sym_DQUOTE] = ACTIONS(4403), - [anon_sym_POUND] = ACTIONS(4403), - [anon_sym_DOLLAR] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_AMP] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4403), - [anon_sym_COMMA] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_COLON] = ACTIONS(4403), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_EQ] = ACTIONS(4403), - [anon_sym_QMARK] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_BSLASH] = ACTIONS(4405), - [anon_sym_CARET] = ACTIONS(4405), - [anon_sym_BQUOTE] = ACTIONS(4403), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_PIPE] = ACTIONS(4403), - [anon_sym_TILDE] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_RPAREN] = ACTIONS(4403), - [sym__newline_token] = ACTIONS(4403), - [aux_sym_insert_token1] = ACTIONS(4403), - [aux_sym_delete_token1] = ACTIONS(4403), - [aux_sym_highlight_token1] = ACTIONS(4403), - [aux_sym_edit_comment_token1] = ACTIONS(4403), - [anon_sym_CARET_LBRACK] = ACTIONS(4403), - [anon_sym_LBRACK_CARET] = ACTIONS(4403), - [sym_uri_autolink] = ACTIONS(4403), - [sym_email_autolink] = ACTIONS(4403), - [sym__whitespace_ge_2] = ACTIONS(4403), - [aux_sym__whitespace_token1] = ACTIONS(4405), - [sym__word_no_digit] = ACTIONS(4403), - [sym__digits] = ACTIONS(4403), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4403), - [sym__code_span_start] = ACTIONS(4403), - [sym__emphasis_open_star] = ACTIONS(4403), - [sym__emphasis_open_underscore] = ACTIONS(4403), - [sym__last_token_punctuation] = ACTIONS(4487), - [sym__strikeout_open] = ACTIONS(4403), - [sym__latex_span_start] = ACTIONS(4403), - [sym__single_quote_open] = ACTIONS(4403), - [sym__double_quote_open] = ACTIONS(4403), - [sym__superscript_open] = ACTIONS(4403), - [sym__subscript_open] = ACTIONS(4403), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4403), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4403), - [sym__cite_author_in_text] = ACTIONS(4403), - [sym__cite_suppress_author] = ACTIONS(4403), - [sym__shortcode_open_escaped] = ACTIONS(4403), - [sym__shortcode_open] = ACTIONS(4403), - [sym__unclosed_span] = ACTIONS(4403), - [sym__strong_emphasis_open_star] = ACTIONS(4403), - [sym__strong_emphasis_open_underscore] = ACTIONS(4403), - }, - [STATE(865)] = { - [ts_builtin_sym_end] = ACTIONS(4413), - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__last_token_punctuation] = ACTIONS(4489), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), - }, - [STATE(866)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__last_token_punctuation] = ACTIONS(4491), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__double_quote_close] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), - }, - [STATE(867)] = { - [sym__backslash_escape] = ACTIONS(4403), - [sym_entity_reference] = ACTIONS(4403), - [sym_numeric_character_reference] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4403), - [anon_sym_DQUOTE] = ACTIONS(4403), - [anon_sym_POUND] = ACTIONS(4403), - [anon_sym_DOLLAR] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_AMP] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4403), - [anon_sym_COMMA] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_COLON] = ACTIONS(4403), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_EQ] = ACTIONS(4403), - [anon_sym_QMARK] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_BSLASH] = ACTIONS(4405), - [anon_sym_CARET] = ACTIONS(4405), - [anon_sym_BQUOTE] = ACTIONS(4403), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_PIPE] = ACTIONS(4403), - [anon_sym_TILDE] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_RPAREN] = ACTIONS(4403), - [sym__newline_token] = ACTIONS(4403), - [aux_sym_insert_token1] = ACTIONS(4403), - [aux_sym_delete_token1] = ACTIONS(4403), - [aux_sym_highlight_token1] = ACTIONS(4403), - [aux_sym_edit_comment_token1] = ACTIONS(4403), - [anon_sym_CARET_LBRACK] = ACTIONS(4403), - [anon_sym_LBRACK_CARET] = ACTIONS(4403), - [sym_uri_autolink] = ACTIONS(4403), - [sym_email_autolink] = ACTIONS(4403), - [sym__whitespace_ge_2] = ACTIONS(4403), - [aux_sym__whitespace_token1] = ACTIONS(4405), - [sym__word_no_digit] = ACTIONS(4403), - [sym__digits] = ACTIONS(4403), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4403), - [sym__code_span_start] = ACTIONS(4403), - [sym__emphasis_open_star] = ACTIONS(4403), - [sym__emphasis_open_underscore] = ACTIONS(4403), - [sym__emphasis_close_star] = ACTIONS(4403), - [sym__last_token_punctuation] = ACTIONS(4493), - [sym__strikeout_open] = ACTIONS(4403), - [sym__latex_span_start] = ACTIONS(4403), - [sym__single_quote_open] = ACTIONS(4403), - [sym__double_quote_open] = ACTIONS(4403), - [sym__superscript_open] = ACTIONS(4403), - [sym__subscript_open] = ACTIONS(4403), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4403), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4403), - [sym__cite_author_in_text] = ACTIONS(4403), - [sym__cite_suppress_author] = ACTIONS(4403), - [sym__shortcode_open_escaped] = ACTIONS(4403), - [sym__shortcode_open] = ACTIONS(4403), - [sym__unclosed_span] = ACTIONS(4403), - [sym__strong_emphasis_open_star] = ACTIONS(4403), - [sym__strong_emphasis_open_underscore] = ACTIONS(4403), - }, - [STATE(868)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_insert_token2] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), + [STATE(859)] = { + [ts_builtin_sym_end] = ACTIONS(4337), + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(4337), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), [sym__whitespace_ge_2] = ACTIONS(4337), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4375), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4371), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), }, - [STATE(869)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_insert_token2] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4337), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4375), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(860)] = { + [sym__backslash_escape] = ACTIONS(4385), + [sym_entity_reference] = ACTIONS(4385), + [sym_numeric_character_reference] = ACTIONS(4385), + [anon_sym_LT] = ACTIONS(4387), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_BANG] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(4385), + [anon_sym_POUND] = ACTIONS(4385), + [anon_sym_DOLLAR] = ACTIONS(4385), + [anon_sym_PERCENT] = ACTIONS(4385), + [anon_sym_AMP] = ACTIONS(4387), + [anon_sym_SQUOTE] = ACTIONS(4385), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_COMMA] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4387), + [anon_sym_SLASH] = ACTIONS(4385), + [anon_sym_COLON] = ACTIONS(4385), + [anon_sym_SEMI] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(4385), + [anon_sym_QMARK] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_BSLASH] = ACTIONS(4387), + [anon_sym_CARET] = ACTIONS(4387), + [anon_sym_BQUOTE] = ACTIONS(4385), + [anon_sym_LBRACE] = ACTIONS(4385), + [anon_sym_PIPE] = ACTIONS(4385), + [anon_sym_TILDE] = ACTIONS(4385), + [anon_sym_LPAREN] = ACTIONS(4385), + [anon_sym_RPAREN] = ACTIONS(4385), + [sym__newline_token] = ACTIONS(4385), + [aux_sym_insert_token1] = ACTIONS(4385), + [aux_sym_delete_token1] = ACTIONS(4385), + [aux_sym_highlight_token1] = ACTIONS(4385), + [aux_sym_edit_comment_token1] = ACTIONS(4385), + [anon_sym_CARET_LBRACK] = ACTIONS(4385), + [anon_sym_LBRACK_CARET] = ACTIONS(4385), + [sym_uri_autolink] = ACTIONS(4385), + [sym_email_autolink] = ACTIONS(4385), + [sym__whitespace_ge_2] = ACTIONS(4385), + [aux_sym__whitespace_token1] = ACTIONS(4387), + [sym__word_no_digit] = ACTIONS(4385), + [sym__digits] = ACTIONS(4385), + [anon_sym_DASH_DASH] = ACTIONS(4387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4385), + [sym__code_span_start] = ACTIONS(4385), + [sym__emphasis_open_star] = ACTIONS(4385), + [sym__emphasis_open_underscore] = ACTIONS(4385), + [sym__last_token_punctuation] = ACTIONS(4481), + [sym__strikeout_open] = ACTIONS(4385), + [sym__latex_span_start] = ACTIONS(4385), + [sym__single_quote_open] = ACTIONS(4385), + [sym__single_quote_close] = ACTIONS(4385), + [sym__double_quote_open] = ACTIONS(4385), + [sym__superscript_open] = ACTIONS(4385), + [sym__subscript_open] = ACTIONS(4385), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4385), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4385), + [sym__cite_author_in_text] = ACTIONS(4385), + [sym__cite_suppress_author] = ACTIONS(4385), + [sym__shortcode_open_escaped] = ACTIONS(4385), + [sym__shortcode_open] = ACTIONS(4385), + [sym__unclosed_span] = ACTIONS(4385), + [sym__strong_emphasis_open_star] = ACTIONS(4385), + [sym__strong_emphasis_open_underscore] = ACTIONS(4385), }, - [STATE(870)] = { + [STATE(861)] = { [sym__backslash_escape] = ACTIONS(4419), [sym_entity_reference] = ACTIONS(4419), [sym_numeric_character_reference] = ACTIONS(4419), @@ -106830,12 +106217,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4419), [sym__emphasis_open_star] = ACTIONS(4419), [sym__emphasis_open_underscore] = ACTIONS(4419), - [sym__last_token_punctuation] = ACTIONS(4495), + [sym__emphasis_close_underscore] = ACTIONS(4419), + [sym__last_token_punctuation] = ACTIONS(4483), [sym__strikeout_open] = ACTIONS(4419), [sym__latex_span_start] = ACTIONS(4419), [sym__single_quote_open] = ACTIONS(4419), [sym__double_quote_open] = ACTIONS(4419), - [sym__double_quote_close] = ACTIONS(4419), [sym__superscript_open] = ACTIONS(4419), [sym__subscript_open] = ACTIONS(4419), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4419), @@ -106848,8 +106235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4419), [sym__strong_emphasis_open_underscore] = ACTIONS(4419), }, - [STATE(871)] = { - [ts_builtin_sym_end] = ACTIONS(4419), + [STATE(862)] = { [sym__backslash_escape] = ACTIONS(4419), [sym_entity_reference] = ACTIONS(4419), [sym_numeric_character_reference] = ACTIONS(4419), @@ -106899,8 +106285,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4419), [sym__emphasis_open_star] = ACTIONS(4419), [sym__emphasis_open_underscore] = ACTIONS(4419), - [sym__last_token_punctuation] = ACTIONS(4497), + [sym__last_token_punctuation] = ACTIONS(4485), [sym__strikeout_open] = ACTIONS(4419), + [sym__strikeout_close] = ACTIONS(4419), [sym__latex_span_start] = ACTIONS(4419), [sym__single_quote_open] = ACTIONS(4419), [sym__double_quote_open] = ACTIONS(4419), @@ -106916,211 +106303,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4419), [sym__strong_emphasis_open_underscore] = ACTIONS(4419), }, - [STATE(872)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4379), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__subscript_close] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(873)] = { - [sym__backslash_escape] = ACTIONS(4393), - [sym_entity_reference] = ACTIONS(4393), - [sym_numeric_character_reference] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_DQUOTE] = ACTIONS(4393), - [anon_sym_POUND] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_QMARK] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_BSLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym_BQUOTE] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4393), - [anon_sym_TILDE] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [sym__newline_token] = ACTIONS(4393), - [aux_sym_insert_token1] = ACTIONS(4393), - [aux_sym_delete_token1] = ACTIONS(4393), - [aux_sym_highlight_token1] = ACTIONS(4393), - [aux_sym_edit_comment_token1] = ACTIONS(4393), - [anon_sym_CARET_LBRACK] = ACTIONS(4393), - [anon_sym_LBRACK_CARET] = ACTIONS(4393), - [sym_uri_autolink] = ACTIONS(4393), - [sym_email_autolink] = ACTIONS(4393), - [sym__whitespace_ge_2] = ACTIONS(4393), - [aux_sym__whitespace_token1] = ACTIONS(4395), - [sym__word_no_digit] = ACTIONS(4393), - [sym__digits] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4393), - [sym__code_span_start] = ACTIONS(4393), - [sym__emphasis_open_star] = ACTIONS(4393), - [sym__emphasis_open_underscore] = ACTIONS(4393), - [sym__last_token_whitespace] = ACTIONS(4499), - [sym__strikeout_open] = ACTIONS(4393), - [sym__latex_span_start] = ACTIONS(4393), - [sym__single_quote_open] = ACTIONS(4393), - [sym__double_quote_open] = ACTIONS(4393), - [sym__superscript_open] = ACTIONS(4393), - [sym__subscript_open] = ACTIONS(4393), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4393), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4393), - [sym__cite_author_in_text] = ACTIONS(4393), - [sym__cite_suppress_author] = ACTIONS(4393), - [sym__shortcode_open_escaped] = ACTIONS(4393), - [sym__shortcode_open] = ACTIONS(4393), - [sym__unclosed_span] = ACTIONS(4393), - [sym__strong_emphasis_open_star] = ACTIONS(4393), - [sym__strong_emphasis_open_underscore] = ACTIONS(4393), - [sym__strong_emphasis_close_underscore] = ACTIONS(4393), + [STATE(863)] = { + [sym__backslash_escape] = ACTIONS(4385), + [sym_entity_reference] = ACTIONS(4385), + [sym_numeric_character_reference] = ACTIONS(4385), + [anon_sym_LT] = ACTIONS(4387), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_BANG] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(4385), + [anon_sym_POUND] = ACTIONS(4385), + [anon_sym_DOLLAR] = ACTIONS(4385), + [anon_sym_PERCENT] = ACTIONS(4385), + [anon_sym_AMP] = ACTIONS(4387), + [anon_sym_SQUOTE] = ACTIONS(4385), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_COMMA] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4387), + [anon_sym_SLASH] = ACTIONS(4385), + [anon_sym_COLON] = ACTIONS(4385), + [anon_sym_SEMI] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(4385), + [anon_sym_QMARK] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_BSLASH] = ACTIONS(4387), + [anon_sym_CARET] = ACTIONS(4387), + [anon_sym_BQUOTE] = ACTIONS(4385), + [anon_sym_LBRACE] = ACTIONS(4385), + [anon_sym_PIPE] = ACTIONS(4385), + [anon_sym_TILDE] = ACTIONS(4385), + [anon_sym_LPAREN] = ACTIONS(4385), + [anon_sym_RPAREN] = ACTIONS(4385), + [sym__newline_token] = ACTIONS(4385), + [aux_sym_insert_token1] = ACTIONS(4385), + [aux_sym_delete_token1] = ACTIONS(4385), + [aux_sym_highlight_token1] = ACTIONS(4385), + [aux_sym_edit_comment_token1] = ACTIONS(4385), + [anon_sym_CARET_LBRACK] = ACTIONS(4385), + [anon_sym_LBRACK_CARET] = ACTIONS(4385), + [sym_uri_autolink] = ACTIONS(4385), + [sym_email_autolink] = ACTIONS(4385), + [sym__whitespace_ge_2] = ACTIONS(4385), + [aux_sym__whitespace_token1] = ACTIONS(4387), + [sym__word_no_digit] = ACTIONS(4385), + [sym__digits] = ACTIONS(4385), + [anon_sym_DASH_DASH] = ACTIONS(4387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4385), + [sym__code_span_start] = ACTIONS(4385), + [sym__emphasis_open_star] = ACTIONS(4385), + [sym__emphasis_open_underscore] = ACTIONS(4385), + [sym__emphasis_close_star] = ACTIONS(4385), + [sym__last_token_punctuation] = ACTIONS(4487), + [sym__strikeout_open] = ACTIONS(4385), + [sym__latex_span_start] = ACTIONS(4385), + [sym__single_quote_open] = ACTIONS(4385), + [sym__double_quote_open] = ACTIONS(4385), + [sym__superscript_open] = ACTIONS(4385), + [sym__subscript_open] = ACTIONS(4385), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4385), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4385), + [sym__cite_author_in_text] = ACTIONS(4385), + [sym__cite_suppress_author] = ACTIONS(4385), + [sym__shortcode_open_escaped] = ACTIONS(4385), + [sym__shortcode_open] = ACTIONS(4385), + [sym__unclosed_span] = ACTIONS(4385), + [sym__strong_emphasis_open_star] = ACTIONS(4385), + [sym__strong_emphasis_open_underscore] = ACTIONS(4385), }, - [STATE(874)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4347), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_close_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(864)] = { + [sym__backslash_escape] = ACTIONS(4407), + [sym_entity_reference] = ACTIONS(4407), + [sym_numeric_character_reference] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [anon_sym_POUND] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_COMMA] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_COLON] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_QMARK] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_BSLASH] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4409), + [anon_sym_BQUOTE] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(4407), + [sym__newline_token] = ACTIONS(4407), + [aux_sym_insert_token1] = ACTIONS(4407), + [aux_sym_insert_token2] = ACTIONS(4407), + [aux_sym_delete_token1] = ACTIONS(4407), + [aux_sym_highlight_token1] = ACTIONS(4407), + [aux_sym_edit_comment_token1] = ACTIONS(4407), + [anon_sym_CARET_LBRACK] = ACTIONS(4407), + [anon_sym_LBRACK_CARET] = ACTIONS(4407), + [sym_uri_autolink] = ACTIONS(4407), + [sym_email_autolink] = ACTIONS(4407), + [sym__whitespace_ge_2] = ACTIONS(4409), + [aux_sym__whitespace_token1] = ACTIONS(4409), + [sym__word_no_digit] = ACTIONS(4407), + [sym__digits] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4407), + [sym__code_span_start] = ACTIONS(4407), + [sym__emphasis_open_star] = ACTIONS(4407), + [sym__emphasis_open_underscore] = ACTIONS(4407), + [sym__last_token_punctuation] = ACTIONS(4489), + [sym__strikeout_open] = ACTIONS(4407), + [sym__latex_span_start] = ACTIONS(4407), + [sym__single_quote_open] = ACTIONS(4407), + [sym__double_quote_open] = ACTIONS(4407), + [sym__superscript_open] = ACTIONS(4407), + [sym__subscript_open] = ACTIONS(4407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4407), + [sym__cite_author_in_text] = ACTIONS(4407), + [sym__cite_suppress_author] = ACTIONS(4407), + [sym__shortcode_open_escaped] = ACTIONS(4407), + [sym__shortcode_open] = ACTIONS(4407), + [sym__unclosed_span] = ACTIONS(4407), + [sym__strong_emphasis_open_star] = ACTIONS(4407), + [sym__strong_emphasis_open_underscore] = ACTIONS(4407), }, - [STATE(875)] = { + [STATE(865)] = { [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -107142,7 +106461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(4329), [anon_sym_EQ] = ACTIONS(4329), [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4405), [anon_sym_BSLASH] = ACTIONS(4331), [anon_sym_CARET] = ACTIONS(4331), [anon_sym_BQUOTE] = ACTIONS(4329), @@ -107170,353 +106489,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4371), - [sym__strikeout_open] = ACTIONS(4329), - [sym__latex_span_start] = ACTIONS(4329), - [sym__single_quote_open] = ACTIONS(4329), - [sym__double_quote_open] = ACTIONS(4329), - [sym__superscript_open] = ACTIONS(4329), - [sym__subscript_open] = ACTIONS(4329), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), - [sym__cite_author_in_text] = ACTIONS(4329), - [sym__cite_suppress_author] = ACTIONS(4329), - [sym__shortcode_open_escaped] = ACTIONS(4329), - [sym__shortcode_open] = ACTIONS(4329), - [sym__unclosed_span] = ACTIONS(4329), - [sym__strong_emphasis_open_star] = ACTIONS(4329), - [sym__strong_emphasis_open_underscore] = ACTIONS(4329), - [sym__strong_emphasis_close_underscore] = ACTIONS(4329), - }, - [STATE(876)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4379), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__subscript_close] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(877)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), + [sym__emphasis_close_underscore] = ACTIONS(4329), [sym__last_token_punctuation] = ACTIONS(4347), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_close_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(878)] = { - [sym__backslash_escape] = ACTIONS(4393), - [sym_entity_reference] = ACTIONS(4393), - [sym_numeric_character_reference] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_DQUOTE] = ACTIONS(4393), - [anon_sym_POUND] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_QMARK] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_BSLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym_BQUOTE] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4393), - [anon_sym_TILDE] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [sym__newline_token] = ACTIONS(4393), - [aux_sym_insert_token1] = ACTIONS(4393), - [aux_sym_delete_token1] = ACTIONS(4393), - [aux_sym_highlight_token1] = ACTIONS(4393), - [aux_sym_edit_comment_token1] = ACTIONS(4393), - [anon_sym_CARET_LBRACK] = ACTIONS(4393), - [anon_sym_LBRACK_CARET] = ACTIONS(4393), - [sym_uri_autolink] = ACTIONS(4393), - [sym_email_autolink] = ACTIONS(4393), - [sym__whitespace_ge_2] = ACTIONS(4393), - [aux_sym__whitespace_token1] = ACTIONS(4395), - [sym__word_no_digit] = ACTIONS(4393), - [sym__digits] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4393), - [sym__code_span_start] = ACTIONS(4393), - [sym__emphasis_open_star] = ACTIONS(4393), - [sym__emphasis_open_underscore] = ACTIONS(4393), - [sym__last_token_whitespace] = ACTIONS(4501), - [sym__strikeout_open] = ACTIONS(4393), - [sym__latex_span_start] = ACTIONS(4393), - [sym__single_quote_open] = ACTIONS(4393), - [sym__double_quote_open] = ACTIONS(4393), - [sym__double_quote_close] = ACTIONS(4393), - [sym__superscript_open] = ACTIONS(4393), - [sym__subscript_open] = ACTIONS(4393), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4393), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4393), - [sym__cite_author_in_text] = ACTIONS(4393), - [sym__cite_suppress_author] = ACTIONS(4393), - [sym__shortcode_open_escaped] = ACTIONS(4393), - [sym__shortcode_open] = ACTIONS(4393), - [sym__unclosed_span] = ACTIONS(4393), - [sym__strong_emphasis_open_star] = ACTIONS(4393), - [sym__strong_emphasis_open_underscore] = ACTIONS(4393), - }, - [STATE(879)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__last_token_punctuation] = ACTIONS(4503), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__subscript_close] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), - }, - [STATE(880)] = { - [sym__backslash_escape] = ACTIONS(4329), - [sym_entity_reference] = ACTIONS(4329), - [sym_numeric_character_reference] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4331), - [anon_sym_GT] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4329), - [anon_sym_DQUOTE] = ACTIONS(4329), - [anon_sym_POUND] = ACTIONS(4329), - [anon_sym_DOLLAR] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_AMP] = ACTIONS(4331), - [anon_sym_SQUOTE] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(4329), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_EQ] = ACTIONS(4329), - [anon_sym_QMARK] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4331), - [anon_sym_BSLASH] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_BQUOTE] = ACTIONS(4329), - [anon_sym_LBRACE] = ACTIONS(4329), - [anon_sym_PIPE] = ACTIONS(4329), - [anon_sym_TILDE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_RPAREN] = ACTIONS(4329), - [sym__newline_token] = ACTIONS(4329), - [aux_sym_insert_token1] = ACTIONS(4329), - [aux_sym_delete_token1] = ACTIONS(4329), - [aux_sym_highlight_token1] = ACTIONS(4329), - [aux_sym_edit_comment_token1] = ACTIONS(4329), - [anon_sym_CARET_LBRACK] = ACTIONS(4329), - [anon_sym_LBRACK_CARET] = ACTIONS(4329), - [sym_uri_autolink] = ACTIONS(4329), - [sym_email_autolink] = ACTIONS(4329), - [sym__whitespace_ge_2] = ACTIONS(4329), - [aux_sym__whitespace_token1] = ACTIONS(4331), - [sym__word_no_digit] = ACTIONS(4329), - [sym__digits] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), - [sym__code_span_start] = ACTIONS(4329), - [sym__emphasis_open_star] = ACTIONS(4329), - [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4363), [sym__strikeout_open] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), [sym__double_quote_open] = ACTIONS(4329), [sym__superscript_open] = ACTIONS(4329), - [sym__superscript_close] = ACTIONS(4329), [sym__subscript_open] = ACTIONS(4329), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), @@ -107528,7 +106507,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4329), [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(881)] = { + [STATE(866)] = { + [ts_builtin_sym_end] = ACTIONS(4419), [sym__backslash_escape] = ACTIONS(4419), [sym_entity_reference] = ACTIONS(4419), [sym_numeric_character_reference] = ACTIONS(4419), @@ -107578,7 +106558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4419), [sym__emphasis_open_star] = ACTIONS(4419), [sym__emphasis_open_underscore] = ACTIONS(4419), - [sym__last_token_punctuation] = ACTIONS(4505), + [sym__last_token_punctuation] = ACTIONS(4491), [sym__strikeout_open] = ACTIONS(4419), [sym__latex_span_start] = ACTIONS(4419), [sym__single_quote_open] = ACTIONS(4419), @@ -107594,417 +106574,1096 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unclosed_span] = ACTIONS(4419), [sym__strong_emphasis_open_star] = ACTIONS(4419), [sym__strong_emphasis_open_underscore] = ACTIONS(4419), - [sym__strong_emphasis_close_underscore] = ACTIONS(4419), }, - [STATE(882)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__last_token_punctuation] = ACTIONS(4507), - [sym__strikeout_open] = ACTIONS(4413), - [sym__strikeout_close] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), + [STATE(867)] = { + [ts_builtin_sym_end] = ACTIONS(4391), + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__last_token_punctuation] = ACTIONS(4493), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), }, - [STATE(883)] = { - [sym__backslash_escape] = ACTIONS(4403), - [sym_entity_reference] = ACTIONS(4403), - [sym_numeric_character_reference] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4403), - [anon_sym_DQUOTE] = ACTIONS(4403), - [anon_sym_POUND] = ACTIONS(4403), - [anon_sym_DOLLAR] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_AMP] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4403), - [anon_sym_COMMA] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_COLON] = ACTIONS(4403), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_EQ] = ACTIONS(4403), - [anon_sym_QMARK] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_BSLASH] = ACTIONS(4405), - [anon_sym_CARET] = ACTIONS(4405), - [anon_sym_BQUOTE] = ACTIONS(4403), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_PIPE] = ACTIONS(4403), - [anon_sym_TILDE] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_RPAREN] = ACTIONS(4403), - [sym__newline_token] = ACTIONS(4403), - [aux_sym_insert_token1] = ACTIONS(4403), - [aux_sym_delete_token1] = ACTIONS(4403), - [aux_sym_highlight_token1] = ACTIONS(4403), - [aux_sym_edit_comment_token1] = ACTIONS(4403), - [anon_sym_CARET_LBRACK] = ACTIONS(4403), - [anon_sym_LBRACK_CARET] = ACTIONS(4403), - [sym_uri_autolink] = ACTIONS(4403), - [sym_email_autolink] = ACTIONS(4403), - [sym__whitespace_ge_2] = ACTIONS(4403), - [aux_sym__whitespace_token1] = ACTIONS(4405), - [sym__word_no_digit] = ACTIONS(4403), - [sym__digits] = ACTIONS(4403), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4403), - [sym__code_span_start] = ACTIONS(4403), - [sym__emphasis_open_star] = ACTIONS(4403), - [sym__emphasis_open_underscore] = ACTIONS(4403), - [sym__last_token_punctuation] = ACTIONS(4509), - [sym__strikeout_open] = ACTIONS(4403), - [sym__latex_span_start] = ACTIONS(4403), - [sym__single_quote_open] = ACTIONS(4403), - [sym__double_quote_open] = ACTIONS(4403), - [sym__superscript_open] = ACTIONS(4403), - [sym__subscript_open] = ACTIONS(4403), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4403), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4403), - [sym__cite_author_in_text] = ACTIONS(4403), - [sym__cite_suppress_author] = ACTIONS(4403), - [sym__shortcode_open_escaped] = ACTIONS(4403), - [sym__shortcode_open] = ACTIONS(4403), - [sym__unclosed_span] = ACTIONS(4403), - [sym__strong_emphasis_open_star] = ACTIONS(4403), - [sym__strong_emphasis_open_underscore] = ACTIONS(4403), - [sym__strong_emphasis_close_underscore] = ACTIONS(4403), + [STATE(868)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_insert_token2] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4331), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4373), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(884)] = { - [sym__backslash_escape] = ACTIONS(4419), - [sym_entity_reference] = ACTIONS(4419), - [sym_numeric_character_reference] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4421), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_DQUOTE] = ACTIONS(4419), - [anon_sym_POUND] = ACTIONS(4419), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_AMP] = ACTIONS(4421), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_COMMA] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4421), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_BSLASH] = ACTIONS(4421), - [anon_sym_CARET] = ACTIONS(4421), - [anon_sym_BQUOTE] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_TILDE] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4419), - [anon_sym_RPAREN] = ACTIONS(4419), - [sym__newline_token] = ACTIONS(4419), - [aux_sym_insert_token1] = ACTIONS(4419), - [aux_sym_delete_token1] = ACTIONS(4419), - [aux_sym_highlight_token1] = ACTIONS(4419), - [aux_sym_edit_comment_token1] = ACTIONS(4419), - [anon_sym_CARET_LBRACK] = ACTIONS(4419), - [anon_sym_LBRACK_CARET] = ACTIONS(4419), - [sym_uri_autolink] = ACTIONS(4419), - [sym_email_autolink] = ACTIONS(4419), - [sym__whitespace_ge_2] = ACTIONS(4419), - [aux_sym__whitespace_token1] = ACTIONS(4421), - [sym__word_no_digit] = ACTIONS(4419), - [sym__digits] = ACTIONS(4419), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4419), - [sym__code_span_start] = ACTIONS(4419), - [sym__emphasis_open_star] = ACTIONS(4419), - [sym__emphasis_open_underscore] = ACTIONS(4419), - [sym__last_token_punctuation] = ACTIONS(4511), - [sym__strikeout_open] = ACTIONS(4419), - [sym__strikeout_close] = ACTIONS(4419), - [sym__latex_span_start] = ACTIONS(4419), - [sym__single_quote_open] = ACTIONS(4419), - [sym__double_quote_open] = ACTIONS(4419), - [sym__superscript_open] = ACTIONS(4419), - [sym__subscript_open] = ACTIONS(4419), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4419), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4419), - [sym__cite_author_in_text] = ACTIONS(4419), - [sym__cite_suppress_author] = ACTIONS(4419), - [sym__shortcode_open_escaped] = ACTIONS(4419), - [sym__shortcode_open] = ACTIONS(4419), - [sym__unclosed_span] = ACTIONS(4419), - [sym__strong_emphasis_open_star] = ACTIONS(4419), - [sym__strong_emphasis_open_underscore] = ACTIONS(4419), + [STATE(869)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_insert_token2] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4331), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4373), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(885)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4383), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__double_quote_close] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(870)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__last_token_punctuation] = ACTIONS(4495), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__double_quote_close] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), }, - [STATE(886)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4383), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__double_quote_close] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(871)] = { + [sym__backslash_escape] = ACTIONS(4385), + [sym_entity_reference] = ACTIONS(4385), + [sym_numeric_character_reference] = ACTIONS(4385), + [anon_sym_LT] = ACTIONS(4387), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_BANG] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(4385), + [anon_sym_POUND] = ACTIONS(4385), + [anon_sym_DOLLAR] = ACTIONS(4385), + [anon_sym_PERCENT] = ACTIONS(4385), + [anon_sym_AMP] = ACTIONS(4387), + [anon_sym_SQUOTE] = ACTIONS(4385), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_COMMA] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4387), + [anon_sym_SLASH] = ACTIONS(4385), + [anon_sym_COLON] = ACTIONS(4385), + [anon_sym_SEMI] = ACTIONS(4385), + [anon_sym_EQ] = ACTIONS(4385), + [anon_sym_QMARK] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_BSLASH] = ACTIONS(4387), + [anon_sym_CARET] = ACTIONS(4387), + [anon_sym_BQUOTE] = ACTIONS(4385), + [anon_sym_LBRACE] = ACTIONS(4385), + [anon_sym_PIPE] = ACTIONS(4385), + [anon_sym_TILDE] = ACTIONS(4385), + [anon_sym_LPAREN] = ACTIONS(4385), + [anon_sym_RPAREN] = ACTIONS(4385), + [sym__newline_token] = ACTIONS(4385), + [aux_sym_insert_token1] = ACTIONS(4385), + [aux_sym_insert_token2] = ACTIONS(4385), + [aux_sym_delete_token1] = ACTIONS(4385), + [aux_sym_highlight_token1] = ACTIONS(4385), + [aux_sym_edit_comment_token1] = ACTIONS(4385), + [anon_sym_CARET_LBRACK] = ACTIONS(4385), + [anon_sym_LBRACK_CARET] = ACTIONS(4385), + [sym_uri_autolink] = ACTIONS(4385), + [sym_email_autolink] = ACTIONS(4385), + [sym__whitespace_ge_2] = ACTIONS(4387), + [aux_sym__whitespace_token1] = ACTIONS(4387), + [sym__word_no_digit] = ACTIONS(4385), + [sym__digits] = ACTIONS(4385), + [anon_sym_DASH_DASH] = ACTIONS(4387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4385), + [sym__code_span_start] = ACTIONS(4385), + [sym__emphasis_open_star] = ACTIONS(4385), + [sym__emphasis_open_underscore] = ACTIONS(4385), + [sym__last_token_punctuation] = ACTIONS(4497), + [sym__strikeout_open] = ACTIONS(4385), + [sym__latex_span_start] = ACTIONS(4385), + [sym__single_quote_open] = ACTIONS(4385), + [sym__double_quote_open] = ACTIONS(4385), + [sym__superscript_open] = ACTIONS(4385), + [sym__subscript_open] = ACTIONS(4385), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4385), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4385), + [sym__cite_author_in_text] = ACTIONS(4385), + [sym__cite_suppress_author] = ACTIONS(4385), + [sym__shortcode_open_escaped] = ACTIONS(4385), + [sym__shortcode_open] = ACTIONS(4385), + [sym__unclosed_span] = ACTIONS(4385), + [sym__strong_emphasis_open_star] = ACTIONS(4385), + [sym__strong_emphasis_open_underscore] = ACTIONS(4385), }, - [STATE(887)] = { - [sym__backslash_escape] = ACTIONS(4393), - [sym_entity_reference] = ACTIONS(4393), - [sym_numeric_character_reference] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_DQUOTE] = ACTIONS(4393), - [anon_sym_POUND] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_QMARK] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_BSLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym_BQUOTE] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4393), - [anon_sym_TILDE] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [sym__newline_token] = ACTIONS(4393), - [aux_sym_insert_token1] = ACTIONS(4393), - [aux_sym_delete_token1] = ACTIONS(4393), - [aux_sym_highlight_token1] = ACTIONS(4393), - [aux_sym_edit_comment_token1] = ACTIONS(4393), - [anon_sym_CARET_LBRACK] = ACTIONS(4393), - [anon_sym_LBRACK_CARET] = ACTIONS(4393), - [sym_uri_autolink] = ACTIONS(4393), - [sym_email_autolink] = ACTIONS(4393), - [sym__whitespace_ge_2] = ACTIONS(4393), - [aux_sym__whitespace_token1] = ACTIONS(4395), - [sym__word_no_digit] = ACTIONS(4393), - [sym__digits] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4393), - [sym__code_span_start] = ACTIONS(4393), - [sym__emphasis_open_star] = ACTIONS(4393), - [sym__emphasis_open_underscore] = ACTIONS(4393), - [sym__last_token_whitespace] = ACTIONS(4513), - [sym__strikeout_open] = ACTIONS(4393), - [sym__latex_span_start] = ACTIONS(4393), - [sym__single_quote_open] = ACTIONS(4393), - [sym__double_quote_open] = ACTIONS(4393), - [sym__superscript_open] = ACTIONS(4393), - [sym__superscript_close] = ACTIONS(4393), - [sym__subscript_open] = ACTIONS(4393), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4393), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4393), - [sym__cite_author_in_text] = ACTIONS(4393), - [sym__cite_suppress_author] = ACTIONS(4393), - [sym__shortcode_open_escaped] = ACTIONS(4393), - [sym__shortcode_open] = ACTIONS(4393), - [sym__unclosed_span] = ACTIONS(4393), - [sym__strong_emphasis_open_star] = ACTIONS(4393), - [sym__strong_emphasis_open_underscore] = ACTIONS(4393), + [STATE(872)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4377), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__subscript_close] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(888)] = { + [STATE(873)] = { + [sym__backslash_escape] = ACTIONS(4397), + [sym_entity_reference] = ACTIONS(4397), + [sym_numeric_character_reference] = ACTIONS(4397), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4397), + [anon_sym_POUND] = ACTIONS(4397), + [anon_sym_DOLLAR] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_COMMA] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_COLON] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), + [anon_sym_QMARK] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_BSLASH] = ACTIONS(4399), + [anon_sym_CARET] = ACTIONS(4399), + [anon_sym_BQUOTE] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_PIPE] = ACTIONS(4397), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_RPAREN] = ACTIONS(4397), + [sym__newline_token] = ACTIONS(4397), + [aux_sym_insert_token1] = ACTIONS(4397), + [aux_sym_delete_token1] = ACTIONS(4397), + [aux_sym_highlight_token1] = ACTIONS(4397), + [aux_sym_edit_comment_token1] = ACTIONS(4397), + [anon_sym_CARET_LBRACK] = ACTIONS(4397), + [anon_sym_LBRACK_CARET] = ACTIONS(4397), + [sym_uri_autolink] = ACTIONS(4397), + [sym_email_autolink] = ACTIONS(4397), + [sym__whitespace_ge_2] = ACTIONS(4397), + [aux_sym__whitespace_token1] = ACTIONS(4399), + [sym__word_no_digit] = ACTIONS(4397), + [sym__digits] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4397), + [sym__code_span_start] = ACTIONS(4397), + [sym__emphasis_open_star] = ACTIONS(4397), + [sym__emphasis_open_underscore] = ACTIONS(4397), + [sym__last_token_whitespace] = ACTIONS(4499), + [sym__strikeout_open] = ACTIONS(4397), + [sym__latex_span_start] = ACTIONS(4397), + [sym__single_quote_open] = ACTIONS(4397), + [sym__double_quote_open] = ACTIONS(4397), + [sym__superscript_open] = ACTIONS(4397), + [sym__subscript_open] = ACTIONS(4397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4397), + [sym__cite_author_in_text] = ACTIONS(4397), + [sym__cite_suppress_author] = ACTIONS(4397), + [sym__shortcode_open_escaped] = ACTIONS(4397), + [sym__shortcode_open] = ACTIONS(4397), + [sym__unclosed_span] = ACTIONS(4397), + [sym__strong_emphasis_open_star] = ACTIONS(4397), + [sym__strong_emphasis_open_underscore] = ACTIONS(4397), + [sym__strong_emphasis_close_underscore] = ACTIONS(4397), + }, + [STATE(874)] = { + [sym__backslash_escape] = ACTIONS(4407), + [sym_entity_reference] = ACTIONS(4407), + [sym_numeric_character_reference] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [anon_sym_POUND] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_COMMA] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_COLON] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_QMARK] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_BSLASH] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4409), + [anon_sym_BQUOTE] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(4407), + [sym__newline_token] = ACTIONS(4407), + [aux_sym_insert_token1] = ACTIONS(4407), + [aux_sym_delete_token1] = ACTIONS(4407), + [aux_sym_highlight_token1] = ACTIONS(4407), + [aux_sym_edit_comment_token1] = ACTIONS(4407), + [anon_sym_CARET_LBRACK] = ACTIONS(4407), + [anon_sym_LBRACK_CARET] = ACTIONS(4407), + [sym_uri_autolink] = ACTIONS(4407), + [sym_email_autolink] = ACTIONS(4407), + [sym__whitespace_ge_2] = ACTIONS(4407), + [aux_sym__whitespace_token1] = ACTIONS(4409), + [sym__word_no_digit] = ACTIONS(4407), + [sym__digits] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4407), + [sym__code_span_start] = ACTIONS(4407), + [sym__emphasis_open_star] = ACTIONS(4407), + [sym__emphasis_open_underscore] = ACTIONS(4407), + [sym__last_token_punctuation] = ACTIONS(4501), + [sym__strikeout_open] = ACTIONS(4407), + [sym__latex_span_start] = ACTIONS(4407), + [sym__single_quote_open] = ACTIONS(4407), + [sym__double_quote_open] = ACTIONS(4407), + [sym__double_quote_close] = ACTIONS(4407), + [sym__superscript_open] = ACTIONS(4407), + [sym__subscript_open] = ACTIONS(4407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4407), + [sym__cite_author_in_text] = ACTIONS(4407), + [sym__cite_suppress_author] = ACTIONS(4407), + [sym__shortcode_open_escaped] = ACTIONS(4407), + [sym__shortcode_open] = ACTIONS(4407), + [sym__unclosed_span] = ACTIONS(4407), + [sym__strong_emphasis_open_star] = ACTIONS(4407), + [sym__strong_emphasis_open_underscore] = ACTIONS(4407), + }, + [STATE(875)] = { + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(4337), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4369), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), + [sym__strong_emphasis_close_underscore] = ACTIONS(4337), + }, + [STATE(876)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4377), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__subscript_close] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + }, + [STATE(877)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4343), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_close_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + }, + [STATE(878)] = { + [sym__backslash_escape] = ACTIONS(4397), + [sym_entity_reference] = ACTIONS(4397), + [sym_numeric_character_reference] = ACTIONS(4397), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4397), + [anon_sym_POUND] = ACTIONS(4397), + [anon_sym_DOLLAR] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_COMMA] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_COLON] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), + [anon_sym_QMARK] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_BSLASH] = ACTIONS(4399), + [anon_sym_CARET] = ACTIONS(4399), + [anon_sym_BQUOTE] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_PIPE] = ACTIONS(4397), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_RPAREN] = ACTIONS(4397), + [sym__newline_token] = ACTIONS(4397), + [aux_sym_insert_token1] = ACTIONS(4397), + [aux_sym_delete_token1] = ACTIONS(4397), + [aux_sym_highlight_token1] = ACTIONS(4397), + [aux_sym_edit_comment_token1] = ACTIONS(4397), + [anon_sym_CARET_LBRACK] = ACTIONS(4397), + [anon_sym_LBRACK_CARET] = ACTIONS(4397), + [sym_uri_autolink] = ACTIONS(4397), + [sym_email_autolink] = ACTIONS(4397), + [sym__whitespace_ge_2] = ACTIONS(4397), + [aux_sym__whitespace_token1] = ACTIONS(4399), + [sym__word_no_digit] = ACTIONS(4397), + [sym__digits] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4397), + [sym__code_span_start] = ACTIONS(4397), + [sym__emphasis_open_star] = ACTIONS(4397), + [sym__emphasis_open_underscore] = ACTIONS(4397), + [sym__last_token_whitespace] = ACTIONS(4503), + [sym__strikeout_open] = ACTIONS(4397), + [sym__latex_span_start] = ACTIONS(4397), + [sym__single_quote_open] = ACTIONS(4397), + [sym__double_quote_open] = ACTIONS(4397), + [sym__double_quote_close] = ACTIONS(4397), + [sym__superscript_open] = ACTIONS(4397), + [sym__subscript_open] = ACTIONS(4397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4397), + [sym__cite_author_in_text] = ACTIONS(4397), + [sym__cite_suppress_author] = ACTIONS(4397), + [sym__shortcode_open_escaped] = ACTIONS(4397), + [sym__shortcode_open] = ACTIONS(4397), + [sym__unclosed_span] = ACTIONS(4397), + [sym__strong_emphasis_open_star] = ACTIONS(4397), + [sym__strong_emphasis_open_underscore] = ACTIONS(4397), + }, + [STATE(879)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4343), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_close_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + }, + [STATE(880)] = { + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(4337), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4359), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__superscript_close] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), + }, + [STATE(881)] = { + [sym__backslash_escape] = ACTIONS(4407), + [sym_entity_reference] = ACTIONS(4407), + [sym_numeric_character_reference] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [anon_sym_POUND] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_COMMA] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_COLON] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_QMARK] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_BSLASH] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4409), + [anon_sym_BQUOTE] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(4407), + [sym__newline_token] = ACTIONS(4407), + [aux_sym_insert_token1] = ACTIONS(4407), + [aux_sym_delete_token1] = ACTIONS(4407), + [aux_sym_highlight_token1] = ACTIONS(4407), + [aux_sym_edit_comment_token1] = ACTIONS(4407), + [anon_sym_CARET_LBRACK] = ACTIONS(4407), + [anon_sym_LBRACK_CARET] = ACTIONS(4407), + [sym_uri_autolink] = ACTIONS(4407), + [sym_email_autolink] = ACTIONS(4407), + [sym__whitespace_ge_2] = ACTIONS(4407), + [aux_sym__whitespace_token1] = ACTIONS(4409), + [sym__word_no_digit] = ACTIONS(4407), + [sym__digits] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4407), + [sym__code_span_start] = ACTIONS(4407), + [sym__emphasis_open_star] = ACTIONS(4407), + [sym__emphasis_open_underscore] = ACTIONS(4407), + [sym__last_token_punctuation] = ACTIONS(4505), + [sym__strikeout_open] = ACTIONS(4407), + [sym__latex_span_start] = ACTIONS(4407), + [sym__single_quote_open] = ACTIONS(4407), + [sym__double_quote_open] = ACTIONS(4407), + [sym__superscript_open] = ACTIONS(4407), + [sym__subscript_open] = ACTIONS(4407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4407), + [sym__cite_author_in_text] = ACTIONS(4407), + [sym__cite_suppress_author] = ACTIONS(4407), + [sym__shortcode_open_escaped] = ACTIONS(4407), + [sym__shortcode_open] = ACTIONS(4407), + [sym__unclosed_span] = ACTIONS(4407), + [sym__strong_emphasis_open_star] = ACTIONS(4407), + [sym__strong_emphasis_open_underscore] = ACTIONS(4407), + [sym__strong_emphasis_close_underscore] = ACTIONS(4407), + }, + [STATE(882)] = { + [ts_builtin_sym_end] = ACTIONS(4407), + [sym__backslash_escape] = ACTIONS(4407), + [sym_entity_reference] = ACTIONS(4407), + [sym_numeric_character_reference] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [anon_sym_POUND] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_COMMA] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_COLON] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_QMARK] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_BSLASH] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4409), + [anon_sym_BQUOTE] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(4407), + [sym__newline_token] = ACTIONS(4407), + [aux_sym_insert_token1] = ACTIONS(4407), + [aux_sym_delete_token1] = ACTIONS(4407), + [aux_sym_highlight_token1] = ACTIONS(4407), + [aux_sym_edit_comment_token1] = ACTIONS(4407), + [anon_sym_CARET_LBRACK] = ACTIONS(4407), + [anon_sym_LBRACK_CARET] = ACTIONS(4407), + [sym_uri_autolink] = ACTIONS(4407), + [sym_email_autolink] = ACTIONS(4407), + [sym__whitespace_ge_2] = ACTIONS(4407), + [aux_sym__whitespace_token1] = ACTIONS(4409), + [sym__word_no_digit] = ACTIONS(4407), + [sym__digits] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4407), + [sym__code_span_start] = ACTIONS(4407), + [sym__emphasis_open_star] = ACTIONS(4407), + [sym__emphasis_open_underscore] = ACTIONS(4407), + [sym__last_token_punctuation] = ACTIONS(4507), + [sym__strikeout_open] = ACTIONS(4407), + [sym__latex_span_start] = ACTIONS(4407), + [sym__single_quote_open] = ACTIONS(4407), + [sym__double_quote_open] = ACTIONS(4407), + [sym__superscript_open] = ACTIONS(4407), + [sym__subscript_open] = ACTIONS(4407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4407), + [sym__cite_author_in_text] = ACTIONS(4407), + [sym__cite_suppress_author] = ACTIONS(4407), + [sym__shortcode_open_escaped] = ACTIONS(4407), + [sym__shortcode_open] = ACTIONS(4407), + [sym__unclosed_span] = ACTIONS(4407), + [sym__strong_emphasis_open_star] = ACTIONS(4407), + [sym__strong_emphasis_open_underscore] = ACTIONS(4407), + }, + [STATE(883)] = { [sym__backslash_escape] = ACTIONS(4419), [sym_entity_reference] = ACTIONS(4419), [sym_numeric_character_reference] = ACTIONS(4419), @@ -108054,14 +107713,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4419), [sym__emphasis_open_star] = ACTIONS(4419), [sym__emphasis_open_underscore] = ACTIONS(4419), - [sym__last_token_punctuation] = ACTIONS(4515), + [sym__last_token_punctuation] = ACTIONS(4509), [sym__strikeout_open] = ACTIONS(4419), [sym__latex_span_start] = ACTIONS(4419), [sym__single_quote_open] = ACTIONS(4419), [sym__double_quote_open] = ACTIONS(4419), [sym__superscript_open] = ACTIONS(4419), [sym__subscript_open] = ACTIONS(4419), - [sym__subscript_close] = ACTIONS(4419), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4419), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4419), [sym__cite_author_in_text] = ACTIONS(4419), @@ -108071,8 +107729,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unclosed_span] = ACTIONS(4419), [sym__strong_emphasis_open_star] = ACTIONS(4419), [sym__strong_emphasis_open_underscore] = ACTIONS(4419), + [sym__strong_emphasis_close_underscore] = ACTIONS(4419), }, - [STATE(889)] = { + [STATE(884)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__last_token_punctuation] = ACTIONS(4511), + [sym__strikeout_open] = ACTIONS(4391), + [sym__strikeout_close] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), + }, + [STATE(885)] = { [sym__backslash_escape] = ACTIONS(4329), [sym_entity_reference] = ACTIONS(4329), [sym_numeric_character_reference] = ACTIONS(4329), @@ -108122,12 +107849,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4329), [sym__emphasis_open_star] = ACTIONS(4329), [sym__emphasis_open_underscore] = ACTIONS(4329), - [sym__last_token_whitespace] = ACTIONS(4353), + [sym__last_token_punctuation] = ACTIONS(4381), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__double_quote_close] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + }, + [STATE(886)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4381), [sym__strikeout_open] = ACTIONS(4329), [sym__latex_span_start] = ACTIONS(4329), [sym__single_quote_open] = ACTIONS(4329), - [sym__single_quote_close] = ACTIONS(4329), [sym__double_quote_open] = ACTIONS(4329), + [sym__double_quote_close] = ACTIONS(4329), [sym__superscript_open] = ACTIONS(4329), [sym__subscript_open] = ACTIONS(4329), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), @@ -108140,141 +107935,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4329), [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, + [STATE(887)] = { + [sym__backslash_escape] = ACTIONS(4407), + [sym_entity_reference] = ACTIONS(4407), + [sym_numeric_character_reference] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [anon_sym_POUND] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_COMMA] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_COLON] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_QMARK] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_BSLASH] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4409), + [anon_sym_BQUOTE] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(4407), + [sym__newline_token] = ACTIONS(4407), + [aux_sym_insert_token1] = ACTIONS(4407), + [aux_sym_delete_token1] = ACTIONS(4407), + [aux_sym_highlight_token1] = ACTIONS(4407), + [aux_sym_edit_comment_token1] = ACTIONS(4407), + [anon_sym_CARET_LBRACK] = ACTIONS(4407), + [anon_sym_LBRACK_CARET] = ACTIONS(4407), + [sym_uri_autolink] = ACTIONS(4407), + [sym_email_autolink] = ACTIONS(4407), + [sym__whitespace_ge_2] = ACTIONS(4407), + [aux_sym__whitespace_token1] = ACTIONS(4409), + [sym__word_no_digit] = ACTIONS(4407), + [sym__digits] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4407), + [sym__code_span_start] = ACTIONS(4407), + [sym__emphasis_open_star] = ACTIONS(4407), + [sym__emphasis_open_underscore] = ACTIONS(4407), + [sym__emphasis_close_underscore] = ACTIONS(4407), + [sym__last_token_punctuation] = ACTIONS(4513), + [sym__strikeout_open] = ACTIONS(4407), + [sym__latex_span_start] = ACTIONS(4407), + [sym__single_quote_open] = ACTIONS(4407), + [sym__double_quote_open] = ACTIONS(4407), + [sym__superscript_open] = ACTIONS(4407), + [sym__subscript_open] = ACTIONS(4407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4407), + [sym__cite_author_in_text] = ACTIONS(4407), + [sym__cite_suppress_author] = ACTIONS(4407), + [sym__shortcode_open_escaped] = ACTIONS(4407), + [sym__shortcode_open] = ACTIONS(4407), + [sym__unclosed_span] = ACTIONS(4407), + [sym__strong_emphasis_open_star] = ACTIONS(4407), + [sym__strong_emphasis_open_underscore] = ACTIONS(4407), + }, + [STATE(888)] = { + [sym__backslash_escape] = ACTIONS(4397), + [sym_entity_reference] = ACTIONS(4397), + [sym_numeric_character_reference] = ACTIONS(4397), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4397), + [anon_sym_POUND] = ACTIONS(4397), + [anon_sym_DOLLAR] = ACTIONS(4397), + [anon_sym_PERCENT] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_COMMA] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_COLON] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_EQ] = ACTIONS(4397), + [anon_sym_QMARK] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_BSLASH] = ACTIONS(4399), + [anon_sym_CARET] = ACTIONS(4399), + [anon_sym_BQUOTE] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_PIPE] = ACTIONS(4397), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_RPAREN] = ACTIONS(4397), + [sym__newline_token] = ACTIONS(4397), + [aux_sym_insert_token1] = ACTIONS(4397), + [aux_sym_delete_token1] = ACTIONS(4397), + [aux_sym_highlight_token1] = ACTIONS(4397), + [aux_sym_edit_comment_token1] = ACTIONS(4397), + [anon_sym_CARET_LBRACK] = ACTIONS(4397), + [anon_sym_LBRACK_CARET] = ACTIONS(4397), + [sym_uri_autolink] = ACTIONS(4397), + [sym_email_autolink] = ACTIONS(4397), + [sym__whitespace_ge_2] = ACTIONS(4397), + [aux_sym__whitespace_token1] = ACTIONS(4399), + [sym__word_no_digit] = ACTIONS(4397), + [sym__digits] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4397), + [sym__code_span_start] = ACTIONS(4397), + [sym__emphasis_open_star] = ACTIONS(4397), + [sym__emphasis_open_underscore] = ACTIONS(4397), + [sym__last_token_whitespace] = ACTIONS(4515), + [sym__strikeout_open] = ACTIONS(4397), + [sym__latex_span_start] = ACTIONS(4397), + [sym__single_quote_open] = ACTIONS(4397), + [sym__double_quote_open] = ACTIONS(4397), + [sym__superscript_open] = ACTIONS(4397), + [sym__superscript_close] = ACTIONS(4397), + [sym__subscript_open] = ACTIONS(4397), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4397), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4397), + [sym__cite_author_in_text] = ACTIONS(4397), + [sym__cite_suppress_author] = ACTIONS(4397), + [sym__shortcode_open_escaped] = ACTIONS(4397), + [sym__shortcode_open] = ACTIONS(4397), + [sym__unclosed_span] = ACTIONS(4397), + [sym__strong_emphasis_open_star] = ACTIONS(4397), + [sym__strong_emphasis_open_underscore] = ACTIONS(4397), + }, + [STATE(889)] = { + [sym__backslash_escape] = ACTIONS(4337), + [sym_entity_reference] = ACTIONS(4337), + [sym_numeric_character_reference] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR] = ACTIONS(4337), + [anon_sym_PERCENT] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4337), + [anon_sym_COLON] = ACTIONS(4337), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_EQ] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_BSLASH] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_BQUOTE] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_PIPE] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [sym__newline_token] = ACTIONS(4337), + [aux_sym_insert_token1] = ACTIONS(4337), + [aux_sym_delete_token1] = ACTIONS(4337), + [aux_sym_highlight_token1] = ACTIONS(4337), + [aux_sym_edit_comment_token1] = ACTIONS(4337), + [anon_sym_CARET_LBRACK] = ACTIONS(4337), + [anon_sym_LBRACK_CARET] = ACTIONS(4337), + [sym_uri_autolink] = ACTIONS(4337), + [sym_email_autolink] = ACTIONS(4337), + [sym__whitespace_ge_2] = ACTIONS(4337), + [aux_sym__whitespace_token1] = ACTIONS(4339), + [sym__word_no_digit] = ACTIONS(4337), + [sym__digits] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), + [sym__code_span_start] = ACTIONS(4337), + [sym__emphasis_open_star] = ACTIONS(4337), + [sym__emphasis_open_underscore] = ACTIONS(4337), + [sym__last_token_whitespace] = ACTIONS(4351), + [sym__strikeout_open] = ACTIONS(4337), + [sym__latex_span_start] = ACTIONS(4337), + [sym__single_quote_open] = ACTIONS(4337), + [sym__single_quote_close] = ACTIONS(4337), + [sym__double_quote_open] = ACTIONS(4337), + [sym__superscript_open] = ACTIONS(4337), + [sym__subscript_open] = ACTIONS(4337), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4337), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4337), + [sym__cite_author_in_text] = ACTIONS(4337), + [sym__cite_suppress_author] = ACTIONS(4337), + [sym__shortcode_open_escaped] = ACTIONS(4337), + [sym__shortcode_open] = ACTIONS(4337), + [sym__unclosed_span] = ACTIONS(4337), + [sym__strong_emphasis_open_star] = ACTIONS(4337), + [sym__strong_emphasis_open_underscore] = ACTIONS(4337), + }, [STATE(890)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__emphasis_close_underscore] = ACTIONS(4413), + [sym__backslash_escape] = ACTIONS(4407), + [sym_entity_reference] = ACTIONS(4407), + [sym_numeric_character_reference] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4409), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [anon_sym_POUND] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(4409), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_COMMA] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_COLON] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_EQ] = ACTIONS(4407), + [anon_sym_QMARK] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4409), + [anon_sym_BSLASH] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4409), + [anon_sym_BQUOTE] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(4407), + [sym__newline_token] = ACTIONS(4407), + [aux_sym_insert_token1] = ACTIONS(4407), + [aux_sym_delete_token1] = ACTIONS(4407), + [aux_sym_highlight_token1] = ACTIONS(4407), + [aux_sym_edit_comment_token1] = ACTIONS(4407), + [anon_sym_CARET_LBRACK] = ACTIONS(4407), + [anon_sym_LBRACK_CARET] = ACTIONS(4407), + [sym_uri_autolink] = ACTIONS(4407), + [sym_email_autolink] = ACTIONS(4407), + [sym__whitespace_ge_2] = ACTIONS(4407), + [aux_sym__whitespace_token1] = ACTIONS(4409), + [sym__word_no_digit] = ACTIONS(4407), + [sym__digits] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4409), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4407), + [sym__code_span_start] = ACTIONS(4407), + [sym__emphasis_open_star] = ACTIONS(4407), + [sym__emphasis_open_underscore] = ACTIONS(4407), [sym__last_token_punctuation] = ACTIONS(4517), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), + [sym__strikeout_open] = ACTIONS(4407), + [sym__strikeout_close] = ACTIONS(4407), + [sym__latex_span_start] = ACTIONS(4407), + [sym__single_quote_open] = ACTIONS(4407), + [sym__double_quote_open] = ACTIONS(4407), + [sym__superscript_open] = ACTIONS(4407), + [sym__subscript_open] = ACTIONS(4407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4407), + [sym__cite_author_in_text] = ACTIONS(4407), + [sym__cite_suppress_author] = ACTIONS(4407), + [sym__shortcode_open_escaped] = ACTIONS(4407), + [sym__shortcode_open] = ACTIONS(4407), + [sym__unclosed_span] = ACTIONS(4407), + [sym__strong_emphasis_open_star] = ACTIONS(4407), + [sym__strong_emphasis_open_underscore] = ACTIONS(4407), }, [STATE(891)] = { - [sym__backslash_escape] = ACTIONS(4403), - [sym_entity_reference] = ACTIONS(4403), - [sym_numeric_character_reference] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4403), - [anon_sym_DQUOTE] = ACTIONS(4403), - [anon_sym_POUND] = ACTIONS(4403), - [anon_sym_DOLLAR] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_AMP] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4403), - [anon_sym_COMMA] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_COLON] = ACTIONS(4403), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_EQ] = ACTIONS(4403), - [anon_sym_QMARK] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_BSLASH] = ACTIONS(4405), - [anon_sym_CARET] = ACTIONS(4405), - [anon_sym_BQUOTE] = ACTIONS(4403), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_PIPE] = ACTIONS(4403), - [anon_sym_TILDE] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_RPAREN] = ACTIONS(4403), - [sym__newline_token] = ACTIONS(4403), - [aux_sym_insert_token1] = ACTIONS(4403), - [aux_sym_insert_token2] = ACTIONS(4403), - [aux_sym_delete_token1] = ACTIONS(4403), - [aux_sym_highlight_token1] = ACTIONS(4403), - [aux_sym_edit_comment_token1] = ACTIONS(4403), - [anon_sym_CARET_LBRACK] = ACTIONS(4403), - [anon_sym_LBRACK_CARET] = ACTIONS(4403), - [sym_uri_autolink] = ACTIONS(4403), - [sym_email_autolink] = ACTIONS(4403), - [sym__whitespace_ge_2] = ACTIONS(4405), - [aux_sym__whitespace_token1] = ACTIONS(4405), - [sym__word_no_digit] = ACTIONS(4403), - [sym__digits] = ACTIONS(4403), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4403), - [sym__code_span_start] = ACTIONS(4403), - [sym__emphasis_open_star] = ACTIONS(4403), - [sym__emphasis_open_underscore] = ACTIONS(4403), + [sym__backslash_escape] = ACTIONS(4419), + [sym_entity_reference] = ACTIONS(4419), + [sym_numeric_character_reference] = ACTIONS(4419), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_BANG] = ACTIONS(4419), + [anon_sym_DQUOTE] = ACTIONS(4419), + [anon_sym_POUND] = ACTIONS(4419), + [anon_sym_DOLLAR] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_AMP] = ACTIONS(4421), + [anon_sym_SQUOTE] = ACTIONS(4419), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_COMMA] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_COLON] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4419), + [anon_sym_QMARK] = ACTIONS(4419), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_BSLASH] = ACTIONS(4421), + [anon_sym_CARET] = ACTIONS(4421), + [anon_sym_BQUOTE] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4419), + [anon_sym_PIPE] = ACTIONS(4419), + [anon_sym_TILDE] = ACTIONS(4419), + [anon_sym_LPAREN] = ACTIONS(4419), + [anon_sym_RPAREN] = ACTIONS(4419), + [sym__newline_token] = ACTIONS(4419), + [aux_sym_insert_token1] = ACTIONS(4419), + [aux_sym_insert_token2] = ACTIONS(4419), + [aux_sym_delete_token1] = ACTIONS(4419), + [aux_sym_highlight_token1] = ACTIONS(4419), + [aux_sym_edit_comment_token1] = ACTIONS(4419), + [anon_sym_CARET_LBRACK] = ACTIONS(4419), + [anon_sym_LBRACK_CARET] = ACTIONS(4419), + [sym_uri_autolink] = ACTIONS(4419), + [sym_email_autolink] = ACTIONS(4419), + [sym__whitespace_ge_2] = ACTIONS(4421), + [aux_sym__whitespace_token1] = ACTIONS(4421), + [sym__word_no_digit] = ACTIONS(4419), + [sym__digits] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4419), + [sym__code_span_start] = ACTIONS(4419), + [sym__emphasis_open_star] = ACTIONS(4419), + [sym__emphasis_open_underscore] = ACTIONS(4419), [sym__last_token_punctuation] = ACTIONS(4519), - [sym__strikeout_open] = ACTIONS(4403), - [sym__latex_span_start] = ACTIONS(4403), - [sym__single_quote_open] = ACTIONS(4403), - [sym__double_quote_open] = ACTIONS(4403), - [sym__superscript_open] = ACTIONS(4403), - [sym__subscript_open] = ACTIONS(4403), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4403), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4403), - [sym__cite_author_in_text] = ACTIONS(4403), - [sym__cite_suppress_author] = ACTIONS(4403), - [sym__shortcode_open_escaped] = ACTIONS(4403), - [sym__shortcode_open] = ACTIONS(4403), - [sym__unclosed_span] = ACTIONS(4403), - [sym__strong_emphasis_open_star] = ACTIONS(4403), - [sym__strong_emphasis_open_underscore] = ACTIONS(4403), + [sym__strikeout_open] = ACTIONS(4419), + [sym__latex_span_start] = ACTIONS(4419), + [sym__single_quote_open] = ACTIONS(4419), + [sym__double_quote_open] = ACTIONS(4419), + [sym__superscript_open] = ACTIONS(4419), + [sym__subscript_open] = ACTIONS(4419), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4419), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4419), + [sym__cite_author_in_text] = ACTIONS(4419), + [sym__cite_suppress_author] = ACTIONS(4419), + [sym__shortcode_open_escaped] = ACTIONS(4419), + [sym__shortcode_open] = ACTIONS(4419), + [sym__unclosed_span] = ACTIONS(4419), + [sym__strong_emphasis_open_star] = ACTIONS(4419), + [sym__strong_emphasis_open_underscore] = ACTIONS(4419), }, [STATE(892)] = { [sym__backslash_escape] = ACTIONS(4419), @@ -108326,7 +108325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4419), [sym__emphasis_open_star] = ACTIONS(4419), [sym__emphasis_open_underscore] = ACTIONS(4419), - [sym__emphasis_close_underscore] = ACTIONS(4419), + [sym__emphasis_close_star] = ACTIONS(4419), [sym__last_token_punctuation] = ACTIONS(4521), [sym__strikeout_open] = ACTIONS(4419), [sym__latex_span_start] = ACTIONS(4419), @@ -108345,277 +108344,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4419), }, [STATE(893)] = { - [sym__backslash_escape] = ACTIONS(4403), - [sym_entity_reference] = ACTIONS(4403), - [sym_numeric_character_reference] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4403), - [anon_sym_DQUOTE] = ACTIONS(4403), - [anon_sym_POUND] = ACTIONS(4403), - [anon_sym_DOLLAR] = ACTIONS(4403), - [anon_sym_PERCENT] = ACTIONS(4403), - [anon_sym_AMP] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4403), - [anon_sym_COMMA] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4403), - [anon_sym_COLON] = ACTIONS(4403), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_EQ] = ACTIONS(4403), - [anon_sym_QMARK] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(4405), - [anon_sym_BSLASH] = ACTIONS(4405), - [anon_sym_CARET] = ACTIONS(4405), - [anon_sym_BQUOTE] = ACTIONS(4403), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_PIPE] = ACTIONS(4403), - [anon_sym_TILDE] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_RPAREN] = ACTIONS(4403), - [sym__newline_token] = ACTIONS(4403), - [aux_sym_insert_token1] = ACTIONS(4403), - [aux_sym_delete_token1] = ACTIONS(4403), - [aux_sym_highlight_token1] = ACTIONS(4403), - [aux_sym_edit_comment_token1] = ACTIONS(4403), - [anon_sym_CARET_LBRACK] = ACTIONS(4403), - [anon_sym_LBRACK_CARET] = ACTIONS(4403), - [sym_uri_autolink] = ACTIONS(4403), - [sym_email_autolink] = ACTIONS(4403), - [sym__whitespace_ge_2] = ACTIONS(4403), - [aux_sym__whitespace_token1] = ACTIONS(4405), - [sym__word_no_digit] = ACTIONS(4403), - [sym__digits] = ACTIONS(4403), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4403), - [sym__code_span_start] = ACTIONS(4403), - [sym__emphasis_open_star] = ACTIONS(4403), - [sym__emphasis_open_underscore] = ACTIONS(4403), + [sym__backslash_escape] = ACTIONS(4419), + [sym_entity_reference] = ACTIONS(4419), + [sym_numeric_character_reference] = ACTIONS(4419), + [anon_sym_LT] = ACTIONS(4421), + [anon_sym_GT] = ACTIONS(4419), + [anon_sym_BANG] = ACTIONS(4419), + [anon_sym_DQUOTE] = ACTIONS(4419), + [anon_sym_POUND] = ACTIONS(4419), + [anon_sym_DOLLAR] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_AMP] = ACTIONS(4421), + [anon_sym_SQUOTE] = ACTIONS(4419), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_COMMA] = ACTIONS(4419), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_COLON] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4419), + [anon_sym_EQ] = ACTIONS(4419), + [anon_sym_QMARK] = ACTIONS(4419), + [anon_sym_LBRACK] = ACTIONS(4421), + [anon_sym_BSLASH] = ACTIONS(4421), + [anon_sym_CARET] = ACTIONS(4421), + [anon_sym_BQUOTE] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4419), + [anon_sym_PIPE] = ACTIONS(4419), + [anon_sym_TILDE] = ACTIONS(4419), + [anon_sym_LPAREN] = ACTIONS(4419), + [anon_sym_RPAREN] = ACTIONS(4419), + [sym__newline_token] = ACTIONS(4419), + [aux_sym_insert_token1] = ACTIONS(4419), + [aux_sym_delete_token1] = ACTIONS(4419), + [aux_sym_highlight_token1] = ACTIONS(4419), + [aux_sym_edit_comment_token1] = ACTIONS(4419), + [anon_sym_CARET_LBRACK] = ACTIONS(4419), + [anon_sym_LBRACK_CARET] = ACTIONS(4419), + [sym_uri_autolink] = ACTIONS(4419), + [sym_email_autolink] = ACTIONS(4419), + [sym__whitespace_ge_2] = ACTIONS(4419), + [aux_sym__whitespace_token1] = ACTIONS(4421), + [sym__word_no_digit] = ACTIONS(4419), + [sym__digits] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4419), + [sym__code_span_start] = ACTIONS(4419), + [sym__emphasis_open_star] = ACTIONS(4419), + [sym__emphasis_open_underscore] = ACTIONS(4419), [sym__last_token_punctuation] = ACTIONS(4523), - [sym__strikeout_open] = ACTIONS(4403), - [sym__latex_span_start] = ACTIONS(4403), - [sym__single_quote_open] = ACTIONS(4403), - [sym__double_quote_open] = ACTIONS(4403), - [sym__superscript_open] = ACTIONS(4403), - [sym__subscript_open] = ACTIONS(4403), - [sym__subscript_close] = ACTIONS(4403), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4403), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4403), - [sym__cite_author_in_text] = ACTIONS(4403), - [sym__cite_suppress_author] = ACTIONS(4403), - [sym__shortcode_open_escaped] = ACTIONS(4403), - [sym__shortcode_open] = ACTIONS(4403), - [sym__unclosed_span] = ACTIONS(4403), - [sym__strong_emphasis_open_star] = ACTIONS(4403), - [sym__strong_emphasis_open_underscore] = ACTIONS(4403), + [sym__strikeout_open] = ACTIONS(4419), + [sym__latex_span_start] = ACTIONS(4419), + [sym__single_quote_open] = ACTIONS(4419), + [sym__double_quote_open] = ACTIONS(4419), + [sym__superscript_open] = ACTIONS(4419), + [sym__subscript_open] = ACTIONS(4419), + [sym__subscript_close] = ACTIONS(4419), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4419), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4419), + [sym__cite_author_in_text] = ACTIONS(4419), + [sym__cite_suppress_author] = ACTIONS(4419), + [sym__shortcode_open_escaped] = ACTIONS(4419), + [sym__shortcode_open] = ACTIONS(4419), + [sym__unclosed_span] = ACTIONS(4419), + [sym__strong_emphasis_open_star] = ACTIONS(4419), + [sym__strong_emphasis_open_underscore] = ACTIONS(4419), }, [STATE(894)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_RBRACK] = ACTIONS(4335), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__last_token_punctuation] = ACTIONS(4341), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_insert_token2] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4393), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__last_token_punctuation] = ACTIONS(4525), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), }, [STATE(895)] = { - [sym__backslash_escape] = ACTIONS(4393), - [sym_entity_reference] = ACTIONS(4393), - [sym_numeric_character_reference] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_DQUOTE] = ACTIONS(4393), - [anon_sym_POUND] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_COLON] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_QMARK] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_BSLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym_BQUOTE] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_PIPE] = ACTIONS(4393), - [anon_sym_TILDE] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [sym__newline_token] = ACTIONS(4393), - [aux_sym_insert_token1] = ACTIONS(4393), - [aux_sym_delete_token1] = ACTIONS(4393), - [aux_sym_highlight_token1] = ACTIONS(4393), - [aux_sym_edit_comment_token1] = ACTIONS(4393), - [anon_sym_CARET_LBRACK] = ACTIONS(4393), - [anon_sym_LBRACK_CARET] = ACTIONS(4393), - [sym_uri_autolink] = ACTIONS(4393), - [sym_email_autolink] = ACTIONS(4393), - [sym__whitespace_ge_2] = ACTIONS(4393), - [aux_sym__whitespace_token1] = ACTIONS(4395), - [sym__word_no_digit] = ACTIONS(4393), - [sym__digits] = ACTIONS(4393), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4393), - [sym__code_span_start] = ACTIONS(4393), - [sym__emphasis_open_star] = ACTIONS(4393), - [sym__emphasis_open_underscore] = ACTIONS(4393), - [sym__emphasis_close_star] = ACTIONS(4393), - [sym__last_token_whitespace] = ACTIONS(4525), - [sym__strikeout_open] = ACTIONS(4393), - [sym__latex_span_start] = ACTIONS(4393), - [sym__single_quote_open] = ACTIONS(4393), - [sym__double_quote_open] = ACTIONS(4393), - [sym__superscript_open] = ACTIONS(4393), - [sym__subscript_open] = ACTIONS(4393), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4393), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4393), - [sym__cite_author_in_text] = ACTIONS(4393), - [sym__cite_suppress_author] = ACTIONS(4393), - [sym__shortcode_open_escaped] = ACTIONS(4393), - [sym__shortcode_open] = ACTIONS(4393), - [sym__unclosed_span] = ACTIONS(4393), - [sym__strong_emphasis_open_star] = ACTIONS(4393), - [sym__strong_emphasis_open_underscore] = ACTIONS(4393), + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__emphasis_close_star] = ACTIONS(4329), + [sym__last_token_punctuation] = ACTIONS(4355), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, [STATE(896)] = { - [ts_builtin_sym_end] = ACTIONS(4335), - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(897)] = { + [ts_builtin_sym_end] = ACTIONS(4527), [sym__backslash_escape] = ACTIONS(4527), [sym_entity_reference] = ACTIONS(4527), [sym_numeric_character_reference] = ACTIONS(4527), @@ -108669,7 +108602,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__latex_span_start] = ACTIONS(4527), [sym__single_quote_open] = ACTIONS(4527), [sym__double_quote_open] = ACTIONS(4527), - [sym__double_quote_close] = ACTIONS(4527), [sym__superscript_open] = ACTIONS(4527), [sym__subscript_open] = ACTIONS(4527), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), @@ -108682,7 +108614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4527), [sym__strong_emphasis_open_underscore] = ACTIONS(4527), }, - [STATE(898)] = { + [STATE(897)] = { [sym__backslash_escape] = ACTIONS(4531), [sym_entity_reference] = ACTIONS(4531), [sym_numeric_character_reference] = ACTIONS(4531), @@ -108749,141 +108681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4531), [sym__strong_emphasis_open_underscore] = ACTIONS(4531), }, - [STATE(899)] = { - [sym__backslash_escape] = ACTIONS(4209), - [sym_entity_reference] = ACTIONS(4209), - [sym_numeric_character_reference] = ACTIONS(4209), - [anon_sym_LT] = ACTIONS(4211), - [anon_sym_GT] = ACTIONS(4209), - [anon_sym_BANG] = ACTIONS(4209), - [anon_sym_DQUOTE] = ACTIONS(4209), - [anon_sym_POUND] = ACTIONS(4209), - [anon_sym_DOLLAR] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4209), - [anon_sym_AMP] = ACTIONS(4211), - [anon_sym_SQUOTE] = ACTIONS(4209), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_COMMA] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_DOT] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_COLON] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(4209), - [anon_sym_QMARK] = ACTIONS(4209), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_BSLASH] = ACTIONS(4211), - [anon_sym_CARET] = ACTIONS(4211), - [anon_sym_BQUOTE] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(4209), - [anon_sym_PIPE] = ACTIONS(4209), - [anon_sym_TILDE] = ACTIONS(4209), - [anon_sym_LPAREN] = ACTIONS(4209), - [anon_sym_RPAREN] = ACTIONS(4209), - [sym__newline_token] = ACTIONS(4209), - [aux_sym_insert_token1] = ACTIONS(4209), - [aux_sym_delete_token1] = ACTIONS(4209), - [aux_sym_highlight_token1] = ACTIONS(4209), - [aux_sym_edit_comment_token1] = ACTIONS(4209), - [anon_sym_CARET_LBRACK] = ACTIONS(4209), - [anon_sym_LBRACK_CARET] = ACTIONS(4209), - [sym_uri_autolink] = ACTIONS(4209), - [sym_email_autolink] = ACTIONS(4209), - [sym__whitespace_ge_2] = ACTIONS(4209), - [aux_sym__whitespace_token1] = ACTIONS(4211), - [sym__word_no_digit] = ACTIONS(4209), - [sym__digits] = ACTIONS(4209), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4209), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4209), - [sym__code_span_start] = ACTIONS(4209), - [sym__emphasis_open_star] = ACTIONS(4209), - [sym__emphasis_open_underscore] = ACTIONS(4209), - [sym__strikeout_open] = ACTIONS(4209), - [sym__latex_span_start] = ACTIONS(4209), - [sym__single_quote_open] = ACTIONS(4209), - [sym__double_quote_open] = ACTIONS(4209), - [sym__double_quote_close] = ACTIONS(4209), - [sym__superscript_open] = ACTIONS(4209), - [sym__subscript_open] = ACTIONS(4209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4209), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4209), - [sym__cite_author_in_text] = ACTIONS(4209), - [sym__cite_suppress_author] = ACTIONS(4209), - [sym__shortcode_open_escaped] = ACTIONS(4209), - [sym__shortcode_open] = ACTIONS(4209), - [sym__unclosed_span] = ACTIONS(4209), - [sym__strong_emphasis_open_star] = ACTIONS(4209), - [sym__strong_emphasis_open_underscore] = ACTIONS(4209), - }, - [STATE(900)] = { - [sym__backslash_escape] = ACTIONS(4213), - [sym_entity_reference] = ACTIONS(4213), - [sym_numeric_character_reference] = ACTIONS(4213), - [anon_sym_LT] = ACTIONS(4215), - [anon_sym_GT] = ACTIONS(4213), - [anon_sym_BANG] = ACTIONS(4213), - [anon_sym_DQUOTE] = ACTIONS(4213), - [anon_sym_POUND] = ACTIONS(4213), - [anon_sym_DOLLAR] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4213), - [anon_sym_AMP] = ACTIONS(4215), - [anon_sym_SQUOTE] = ACTIONS(4213), - [anon_sym_PLUS] = ACTIONS(4213), - [anon_sym_COMMA] = ACTIONS(4213), - [anon_sym_DASH] = ACTIONS(4215), - [anon_sym_DOT] = ACTIONS(4215), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_COLON] = ACTIONS(4213), - [anon_sym_SEMI] = ACTIONS(4213), - [anon_sym_EQ] = ACTIONS(4213), - [anon_sym_QMARK] = ACTIONS(4213), - [anon_sym_LBRACK] = ACTIONS(4215), - [anon_sym_BSLASH] = ACTIONS(4215), - [anon_sym_CARET] = ACTIONS(4215), - [anon_sym_BQUOTE] = ACTIONS(4213), - [anon_sym_LBRACE] = ACTIONS(4213), - [anon_sym_PIPE] = ACTIONS(4213), - [anon_sym_TILDE] = ACTIONS(4213), - [anon_sym_LPAREN] = ACTIONS(4213), - [anon_sym_RPAREN] = ACTIONS(4213), - [sym__newline_token] = ACTIONS(4213), - [aux_sym_insert_token1] = ACTIONS(4213), - [aux_sym_delete_token1] = ACTIONS(4213), - [aux_sym_highlight_token1] = ACTIONS(4213), - [aux_sym_edit_comment_token1] = ACTIONS(4213), - [anon_sym_CARET_LBRACK] = ACTIONS(4213), - [anon_sym_LBRACK_CARET] = ACTIONS(4213), - [sym_uri_autolink] = ACTIONS(4213), - [sym_email_autolink] = ACTIONS(4213), - [sym__whitespace_ge_2] = ACTIONS(4213), - [aux_sym__whitespace_token1] = ACTIONS(4215), - [sym__word_no_digit] = ACTIONS(4213), - [sym__digits] = ACTIONS(4213), - [anon_sym_DASH_DASH] = ACTIONS(4215), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4213), - [sym__code_span_start] = ACTIONS(4213), - [sym__emphasis_open_star] = ACTIONS(4213), - [sym__emphasis_open_underscore] = ACTIONS(4213), - [sym__strikeout_open] = ACTIONS(4213), - [sym__latex_span_start] = ACTIONS(4213), - [sym__single_quote_open] = ACTIONS(4213), - [sym__double_quote_open] = ACTIONS(4213), - [sym__double_quote_close] = ACTIONS(4213), - [sym__superscript_open] = ACTIONS(4213), - [sym__subscript_open] = ACTIONS(4213), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4213), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4213), - [sym__cite_author_in_text] = ACTIONS(4213), - [sym__cite_suppress_author] = ACTIONS(4213), - [sym__shortcode_open_escaped] = ACTIONS(4213), - [sym__shortcode_open] = ACTIONS(4213), - [sym__unclosed_span] = ACTIONS(4213), - [sym__strong_emphasis_open_star] = ACTIONS(4213), - [sym__strong_emphasis_open_underscore] = ACTIONS(4213), - }, - [STATE(901)] = { + [STATE(898)] = { [sym__backslash_escape] = ACTIONS(4535), [sym_entity_reference] = ACTIONS(4535), [sym_numeric_character_reference] = ACTIONS(4535), @@ -108950,7 +108748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4535), [sym__strong_emphasis_open_underscore] = ACTIONS(4535), }, - [STATE(902)] = { + [STATE(899)] = { [sym__backslash_escape] = ACTIONS(4539), [sym_entity_reference] = ACTIONS(4539), [sym_numeric_character_reference] = ACTIONS(4539), @@ -109017,7 +108815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4539), [sym__strong_emphasis_open_underscore] = ACTIONS(4539), }, - [STATE(903)] = { + [STATE(900)] = { [sym__backslash_escape] = ACTIONS(4543), [sym_entity_reference] = ACTIONS(4543), [sym_numeric_character_reference] = ACTIONS(4543), @@ -109084,7 +108882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4543), [sym__strong_emphasis_open_underscore] = ACTIONS(4543), }, - [STATE(904)] = { + [STATE(901)] = { [sym__backslash_escape] = ACTIONS(4547), [sym_entity_reference] = ACTIONS(4547), [sym_numeric_character_reference] = ACTIONS(4547), @@ -109151,74 +108949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4547), [sym__strong_emphasis_open_underscore] = ACTIONS(4547), }, - [STATE(905)] = { - [sym__backslash_escape] = ACTIONS(4551), - [sym_entity_reference] = ACTIONS(4551), - [sym_numeric_character_reference] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(4553), - [anon_sym_GT] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4551), - [anon_sym_DQUOTE] = ACTIONS(4551), - [anon_sym_POUND] = ACTIONS(4551), - [anon_sym_DOLLAR] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_AMP] = ACTIONS(4553), - [anon_sym_SQUOTE] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_COLON] = ACTIONS(4551), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_EQ] = ACTIONS(4551), - [anon_sym_QMARK] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_BSLASH] = ACTIONS(4553), - [anon_sym_CARET] = ACTIONS(4553), - [anon_sym_BQUOTE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_PIPE] = ACTIONS(4551), - [anon_sym_TILDE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_RPAREN] = ACTIONS(4551), - [sym__newline_token] = ACTIONS(4551), - [aux_sym_insert_token1] = ACTIONS(4551), - [aux_sym_delete_token1] = ACTIONS(4551), - [aux_sym_highlight_token1] = ACTIONS(4551), - [aux_sym_edit_comment_token1] = ACTIONS(4551), - [anon_sym_CARET_LBRACK] = ACTIONS(4551), - [anon_sym_LBRACK_CARET] = ACTIONS(4551), - [sym_uri_autolink] = ACTIONS(4551), - [sym_email_autolink] = ACTIONS(4551), - [sym__whitespace_ge_2] = ACTIONS(4551), - [aux_sym__whitespace_token1] = ACTIONS(4553), - [sym__word_no_digit] = ACTIONS(4551), - [sym__digits] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4553), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), - [sym__code_span_start] = ACTIONS(4551), - [sym__emphasis_open_star] = ACTIONS(4551), - [sym__emphasis_open_underscore] = ACTIONS(4551), - [sym__strikeout_open] = ACTIONS(4551), - [sym__latex_span_start] = ACTIONS(4551), - [sym__single_quote_open] = ACTIONS(4551), - [sym__double_quote_open] = ACTIONS(4551), - [sym__double_quote_close] = ACTIONS(4551), - [sym__superscript_open] = ACTIONS(4551), - [sym__subscript_open] = ACTIONS(4551), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), - [sym__cite_author_in_text] = ACTIONS(4551), - [sym__cite_suppress_author] = ACTIONS(4551), - [sym__shortcode_open_escaped] = ACTIONS(4551), - [sym__shortcode_open] = ACTIONS(4551), - [sym__unclosed_span] = ACTIONS(4551), - [sym__strong_emphasis_open_star] = ACTIONS(4551), - [sym__strong_emphasis_open_underscore] = ACTIONS(4551), - }, - [STATE(906)] = { + [STATE(902)] = { [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -109285,7 +109016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4217), [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, - [STATE(907)] = { + [STATE(903)] = { [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -109352,7 +109083,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4221), [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, - [STATE(908)] = { + [STATE(904)] = { + [sym__backslash_escape] = ACTIONS(4551), + [sym_entity_reference] = ACTIONS(4551), + [sym_numeric_character_reference] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_POUND] = ACTIONS(4551), + [anon_sym_DOLLAR] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4553), + [anon_sym_SQUOTE] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_BSLASH] = ACTIONS(4553), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_BQUOTE] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_RPAREN] = ACTIONS(4551), + [sym__newline_token] = ACTIONS(4551), + [aux_sym_insert_token1] = ACTIONS(4551), + [aux_sym_delete_token1] = ACTIONS(4551), + [aux_sym_highlight_token1] = ACTIONS(4551), + [aux_sym_edit_comment_token1] = ACTIONS(4551), + [anon_sym_CARET_LBRACK] = ACTIONS(4551), + [anon_sym_LBRACK_CARET] = ACTIONS(4551), + [sym_uri_autolink] = ACTIONS(4551), + [sym_email_autolink] = ACTIONS(4551), + [sym__whitespace_ge_2] = ACTIONS(4551), + [aux_sym__whitespace_token1] = ACTIONS(4553), + [sym__word_no_digit] = ACTIONS(4551), + [sym__digits] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), + [sym__code_span_start] = ACTIONS(4551), + [sym__emphasis_open_star] = ACTIONS(4551), + [sym__emphasis_open_underscore] = ACTIONS(4551), + [sym__strikeout_open] = ACTIONS(4551), + [sym__latex_span_start] = ACTIONS(4551), + [sym__single_quote_open] = ACTIONS(4551), + [sym__double_quote_open] = ACTIONS(4551), + [sym__double_quote_close] = ACTIONS(4551), + [sym__superscript_open] = ACTIONS(4551), + [sym__subscript_open] = ACTIONS(4551), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), + [sym__cite_author_in_text] = ACTIONS(4551), + [sym__cite_suppress_author] = ACTIONS(4551), + [sym__shortcode_open_escaped] = ACTIONS(4551), + [sym__shortcode_open] = ACTIONS(4551), + [sym__unclosed_span] = ACTIONS(4551), + [sym__strong_emphasis_open_star] = ACTIONS(4551), + [sym__strong_emphasis_open_underscore] = ACTIONS(4551), + }, + [STATE(905)] = { [sym__backslash_escape] = ACTIONS(4555), [sym_entity_reference] = ACTIONS(4555), [sym_numeric_character_reference] = ACTIONS(4555), @@ -109419,7 +109217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4555), [sym__strong_emphasis_open_underscore] = ACTIONS(4555), }, - [STATE(909)] = { + [STATE(906)] = { [sym__backslash_escape] = ACTIONS(4559), [sym_entity_reference] = ACTIONS(4559), [sym_numeric_character_reference] = ACTIONS(4559), @@ -109486,7 +109284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4559), [sym__strong_emphasis_open_underscore] = ACTIONS(4559), }, - [STATE(910)] = { + [STATE(907)] = { [sym__backslash_escape] = ACTIONS(4563), [sym_entity_reference] = ACTIONS(4563), [sym_numeric_character_reference] = ACTIONS(4563), @@ -109553,74 +109351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4563), [sym__strong_emphasis_open_underscore] = ACTIONS(4563), }, - [STATE(911)] = { - [sym__backslash_escape] = ACTIONS(4567), - [sym_entity_reference] = ACTIONS(4567), - [sym_numeric_character_reference] = ACTIONS(4567), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4567), - [anon_sym_BANG] = ACTIONS(4567), - [anon_sym_DQUOTE] = ACTIONS(4567), - [anon_sym_POUND] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_COLON] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_QMARK] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4569), - [anon_sym_BSLASH] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym_BQUOTE] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_PIPE] = ACTIONS(4567), - [anon_sym_TILDE] = ACTIONS(4567), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [sym__newline_token] = ACTIONS(4567), - [aux_sym_insert_token1] = ACTIONS(4567), - [aux_sym_delete_token1] = ACTIONS(4567), - [aux_sym_highlight_token1] = ACTIONS(4567), - [aux_sym_edit_comment_token1] = ACTIONS(4567), - [anon_sym_CARET_LBRACK] = ACTIONS(4567), - [anon_sym_LBRACK_CARET] = ACTIONS(4567), - [sym_uri_autolink] = ACTIONS(4567), - [sym_email_autolink] = ACTIONS(4567), - [sym__whitespace_ge_2] = ACTIONS(4567), - [aux_sym__whitespace_token1] = ACTIONS(4569), - [sym__word_no_digit] = ACTIONS(4567), - [sym__digits] = ACTIONS(4567), - [anon_sym_DASH_DASH] = ACTIONS(4569), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), - [sym__code_span_start] = ACTIONS(4567), - [sym__emphasis_open_star] = ACTIONS(4567), - [sym__emphasis_open_underscore] = ACTIONS(4567), - [sym__strikeout_open] = ACTIONS(4567), - [sym__latex_span_start] = ACTIONS(4567), - [sym__single_quote_open] = ACTIONS(4567), - [sym__double_quote_open] = ACTIONS(4567), - [sym__double_quote_close] = ACTIONS(4567), - [sym__superscript_open] = ACTIONS(4567), - [sym__subscript_open] = ACTIONS(4567), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), - [sym__cite_author_in_text] = ACTIONS(4567), - [sym__cite_suppress_author] = ACTIONS(4567), - [sym__shortcode_open_escaped] = ACTIONS(4567), - [sym__shortcode_open] = ACTIONS(4567), - [sym__unclosed_span] = ACTIONS(4567), - [sym__strong_emphasis_open_star] = ACTIONS(4567), - [sym__strong_emphasis_open_underscore] = ACTIONS(4567), - }, - [STATE(912)] = { + [STATE(908)] = { [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -109687,7 +109418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4225), [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, - [STATE(913)] = { + [STATE(909)] = { [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -109754,7 +109485,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4229), [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, - [STATE(914)] = { + [STATE(910)] = { + [sym__backslash_escape] = ACTIONS(4567), + [sym_entity_reference] = ACTIONS(4567), + [sym_numeric_character_reference] = ACTIONS(4567), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_DQUOTE] = ACTIONS(4567), + [anon_sym_POUND] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_BSLASH] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym_BQUOTE] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(4567), + [anon_sym_TILDE] = ACTIONS(4567), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [sym__newline_token] = ACTIONS(4567), + [aux_sym_insert_token1] = ACTIONS(4567), + [aux_sym_delete_token1] = ACTIONS(4567), + [aux_sym_highlight_token1] = ACTIONS(4567), + [aux_sym_edit_comment_token1] = ACTIONS(4567), + [anon_sym_CARET_LBRACK] = ACTIONS(4567), + [anon_sym_LBRACK_CARET] = ACTIONS(4567), + [sym_uri_autolink] = ACTIONS(4567), + [sym_email_autolink] = ACTIONS(4567), + [sym__whitespace_ge_2] = ACTIONS(4567), + [aux_sym__whitespace_token1] = ACTIONS(4569), + [sym__word_no_digit] = ACTIONS(4567), + [sym__digits] = ACTIONS(4567), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), + [sym__code_span_start] = ACTIONS(4567), + [sym__emphasis_open_star] = ACTIONS(4567), + [sym__emphasis_open_underscore] = ACTIONS(4567), + [sym__strikeout_open] = ACTIONS(4567), + [sym__latex_span_start] = ACTIONS(4567), + [sym__single_quote_open] = ACTIONS(4567), + [sym__double_quote_open] = ACTIONS(4567), + [sym__double_quote_close] = ACTIONS(4567), + [sym__superscript_open] = ACTIONS(4567), + [sym__subscript_open] = ACTIONS(4567), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), + [sym__cite_author_in_text] = ACTIONS(4567), + [sym__cite_suppress_author] = ACTIONS(4567), + [sym__shortcode_open_escaped] = ACTIONS(4567), + [sym__shortcode_open] = ACTIONS(4567), + [sym__unclosed_span] = ACTIONS(4567), + [sym__strong_emphasis_open_star] = ACTIONS(4567), + [sym__strong_emphasis_open_underscore] = ACTIONS(4567), + }, + [STATE(911)] = { [sym__backslash_escape] = ACTIONS(4571), [sym_entity_reference] = ACTIONS(4571), [sym_numeric_character_reference] = ACTIONS(4571), @@ -109821,74 +109619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4571), [sym__strong_emphasis_open_underscore] = ACTIONS(4571), }, - [STATE(915)] = { - [sym__backslash_escape] = ACTIONS(4575), - [sym_entity_reference] = ACTIONS(4575), - [sym_numeric_character_reference] = ACTIONS(4575), - [anon_sym_LT] = ACTIONS(4577), - [anon_sym_GT] = ACTIONS(4575), - [anon_sym_BANG] = ACTIONS(4575), - [anon_sym_DQUOTE] = ACTIONS(4575), - [anon_sym_POUND] = ACTIONS(4575), - [anon_sym_DOLLAR] = ACTIONS(4575), - [anon_sym_PERCENT] = ACTIONS(4575), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_SQUOTE] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4575), - [anon_sym_COMMA] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4577), - [anon_sym_SLASH] = ACTIONS(4575), - [anon_sym_COLON] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4575), - [anon_sym_EQ] = ACTIONS(4575), - [anon_sym_QMARK] = ACTIONS(4575), - [anon_sym_LBRACK] = ACTIONS(4577), - [anon_sym_BSLASH] = ACTIONS(4577), - [anon_sym_CARET] = ACTIONS(4577), - [anon_sym_BQUOTE] = ACTIONS(4575), - [anon_sym_LBRACE] = ACTIONS(4575), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_TILDE] = ACTIONS(4575), - [anon_sym_LPAREN] = ACTIONS(4575), - [anon_sym_RPAREN] = ACTIONS(4575), - [sym__newline_token] = ACTIONS(4575), - [aux_sym_insert_token1] = ACTIONS(4575), - [aux_sym_delete_token1] = ACTIONS(4575), - [aux_sym_highlight_token1] = ACTIONS(4575), - [aux_sym_edit_comment_token1] = ACTIONS(4575), - [anon_sym_CARET_LBRACK] = ACTIONS(4575), - [anon_sym_LBRACK_CARET] = ACTIONS(4575), - [sym_uri_autolink] = ACTIONS(4575), - [sym_email_autolink] = ACTIONS(4575), - [sym__whitespace_ge_2] = ACTIONS(4575), - [aux_sym__whitespace_token1] = ACTIONS(4577), - [sym__word_no_digit] = ACTIONS(4575), - [sym__digits] = ACTIONS(4575), - [anon_sym_DASH_DASH] = ACTIONS(4577), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), - [sym__code_span_start] = ACTIONS(4575), - [sym__emphasis_open_star] = ACTIONS(4575), - [sym__emphasis_open_underscore] = ACTIONS(4575), - [sym__strikeout_open] = ACTIONS(4575), - [sym__latex_span_start] = ACTIONS(4575), - [sym__single_quote_open] = ACTIONS(4575), - [sym__double_quote_open] = ACTIONS(4575), - [sym__double_quote_close] = ACTIONS(4575), - [sym__superscript_open] = ACTIONS(4575), - [sym__subscript_open] = ACTIONS(4575), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), - [sym__cite_author_in_text] = ACTIONS(4575), - [sym__cite_suppress_author] = ACTIONS(4575), - [sym__shortcode_open_escaped] = ACTIONS(4575), - [sym__shortcode_open] = ACTIONS(4575), - [sym__unclosed_span] = ACTIONS(4575), - [sym__strong_emphasis_open_star] = ACTIONS(4575), - [sym__strong_emphasis_open_underscore] = ACTIONS(4575), - }, - [STATE(916)] = { + [STATE(912)] = { [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -109955,7 +109686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4233), [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, - [STATE(917)] = { + [STATE(913)] = { [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -110022,74 +109753,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4237), [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, - [STATE(918)] = { - [ts_builtin_sym_end] = ACTIONS(4547), - [sym__backslash_escape] = ACTIONS(4547), - [sym_entity_reference] = ACTIONS(4547), - [sym_numeric_character_reference] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4547), - [anon_sym_BANG] = ACTIONS(4547), - [anon_sym_DQUOTE] = ACTIONS(4547), - [anon_sym_POUND] = ACTIONS(4547), - [anon_sym_DOLLAR] = ACTIONS(4547), - [anon_sym_PERCENT] = ACTIONS(4547), - [anon_sym_AMP] = ACTIONS(4549), - [anon_sym_SQUOTE] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4547), - [anon_sym_COMMA] = ACTIONS(4547), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SLASH] = ACTIONS(4547), - [anon_sym_COLON] = ACTIONS(4547), - [anon_sym_SEMI] = ACTIONS(4547), - [anon_sym_EQ] = ACTIONS(4547), - [anon_sym_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_BSLASH] = ACTIONS(4549), - [anon_sym_CARET] = ACTIONS(4549), - [anon_sym_BQUOTE] = ACTIONS(4547), - [anon_sym_LBRACE] = ACTIONS(4547), - [anon_sym_PIPE] = ACTIONS(4547), - [anon_sym_TILDE] = ACTIONS(4547), - [anon_sym_LPAREN] = ACTIONS(4547), - [anon_sym_RPAREN] = ACTIONS(4547), - [sym__newline_token] = ACTIONS(4547), - [aux_sym_insert_token1] = ACTIONS(4547), - [aux_sym_delete_token1] = ACTIONS(4547), - [aux_sym_highlight_token1] = ACTIONS(4547), - [aux_sym_edit_comment_token1] = ACTIONS(4547), - [anon_sym_CARET_LBRACK] = ACTIONS(4547), - [anon_sym_LBRACK_CARET] = ACTIONS(4547), - [sym_uri_autolink] = ACTIONS(4547), - [sym_email_autolink] = ACTIONS(4547), - [sym__whitespace_ge_2] = ACTIONS(4547), - [aux_sym__whitespace_token1] = ACTIONS(4549), - [sym__word_no_digit] = ACTIONS(4547), - [sym__digits] = ACTIONS(4547), - [anon_sym_DASH_DASH] = ACTIONS(4549), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4547), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4547), - [sym__code_span_start] = ACTIONS(4547), - [sym__emphasis_open_star] = ACTIONS(4547), - [sym__emphasis_open_underscore] = ACTIONS(4547), - [sym__strikeout_open] = ACTIONS(4547), - [sym__latex_span_start] = ACTIONS(4547), - [sym__single_quote_open] = ACTIONS(4547), - [sym__double_quote_open] = ACTIONS(4547), - [sym__superscript_open] = ACTIONS(4547), - [sym__subscript_open] = ACTIONS(4547), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4547), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4547), - [sym__cite_author_in_text] = ACTIONS(4547), - [sym__cite_suppress_author] = ACTIONS(4547), - [sym__shortcode_open_escaped] = ACTIONS(4547), - [sym__shortcode_open] = ACTIONS(4547), - [sym__unclosed_span] = ACTIONS(4547), - [sym__strong_emphasis_open_star] = ACTIONS(4547), - [sym__strong_emphasis_open_underscore] = ACTIONS(4547), + [STATE(914)] = { + [ts_builtin_sym_end] = ACTIONS(4543), + [sym__backslash_escape] = ACTIONS(4543), + [sym_entity_reference] = ACTIONS(4543), + [sym_numeric_character_reference] = ACTIONS(4543), + [anon_sym_LT] = ACTIONS(4545), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_BANG] = ACTIONS(4543), + [anon_sym_DQUOTE] = ACTIONS(4543), + [anon_sym_POUND] = ACTIONS(4543), + [anon_sym_DOLLAR] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_SQUOTE] = ACTIONS(4543), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_COMMA] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4545), + [anon_sym_DOT] = ACTIONS(4545), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_QMARK] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_BSLASH] = ACTIONS(4545), + [anon_sym_CARET] = ACTIONS(4545), + [anon_sym_BQUOTE] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4543), + [anon_sym_PIPE] = ACTIONS(4543), + [anon_sym_TILDE] = ACTIONS(4543), + [anon_sym_LPAREN] = ACTIONS(4543), + [anon_sym_RPAREN] = ACTIONS(4543), + [sym__newline_token] = ACTIONS(4543), + [aux_sym_insert_token1] = ACTIONS(4543), + [aux_sym_delete_token1] = ACTIONS(4543), + [aux_sym_highlight_token1] = ACTIONS(4543), + [aux_sym_edit_comment_token1] = ACTIONS(4543), + [anon_sym_CARET_LBRACK] = ACTIONS(4543), + [anon_sym_LBRACK_CARET] = ACTIONS(4543), + [sym_uri_autolink] = ACTIONS(4543), + [sym_email_autolink] = ACTIONS(4543), + [sym__whitespace_ge_2] = ACTIONS(4543), + [aux_sym__whitespace_token1] = ACTIONS(4545), + [sym__word_no_digit] = ACTIONS(4543), + [sym__digits] = ACTIONS(4543), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4543), + [sym__code_span_start] = ACTIONS(4543), + [sym__emphasis_open_star] = ACTIONS(4543), + [sym__emphasis_open_underscore] = ACTIONS(4543), + [sym__strikeout_open] = ACTIONS(4543), + [sym__latex_span_start] = ACTIONS(4543), + [sym__single_quote_open] = ACTIONS(4543), + [sym__double_quote_open] = ACTIONS(4543), + [sym__superscript_open] = ACTIONS(4543), + [sym__subscript_open] = ACTIONS(4543), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4543), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4543), + [sym__cite_author_in_text] = ACTIONS(4543), + [sym__cite_suppress_author] = ACTIONS(4543), + [sym__shortcode_open_escaped] = ACTIONS(4543), + [sym__shortcode_open] = ACTIONS(4543), + [sym__unclosed_span] = ACTIONS(4543), + [sym__strong_emphasis_open_star] = ACTIONS(4543), + [sym__strong_emphasis_open_underscore] = ACTIONS(4543), }, - [STATE(919)] = { + [STATE(915)] = { [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -110156,74 +109887,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4241), [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, - [STATE(920)] = { - [ts_builtin_sym_end] = ACTIONS(4551), - [sym__backslash_escape] = ACTIONS(4551), - [sym_entity_reference] = ACTIONS(4551), - [sym_numeric_character_reference] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(4553), - [anon_sym_GT] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4551), - [anon_sym_DQUOTE] = ACTIONS(4551), - [anon_sym_POUND] = ACTIONS(4551), - [anon_sym_DOLLAR] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_AMP] = ACTIONS(4553), - [anon_sym_SQUOTE] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_COLON] = ACTIONS(4551), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_EQ] = ACTIONS(4551), - [anon_sym_QMARK] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_BSLASH] = ACTIONS(4553), - [anon_sym_CARET] = ACTIONS(4553), - [anon_sym_BQUOTE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_PIPE] = ACTIONS(4551), - [anon_sym_TILDE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_RPAREN] = ACTIONS(4551), - [sym__newline_token] = ACTIONS(4551), - [aux_sym_insert_token1] = ACTIONS(4551), - [aux_sym_delete_token1] = ACTIONS(4551), - [aux_sym_highlight_token1] = ACTIONS(4551), - [aux_sym_edit_comment_token1] = ACTIONS(4551), - [anon_sym_CARET_LBRACK] = ACTIONS(4551), - [anon_sym_LBRACK_CARET] = ACTIONS(4551), - [sym_uri_autolink] = ACTIONS(4551), - [sym_email_autolink] = ACTIONS(4551), - [sym__whitespace_ge_2] = ACTIONS(4551), - [aux_sym__whitespace_token1] = ACTIONS(4553), - [sym__word_no_digit] = ACTIONS(4551), - [sym__digits] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4553), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), - [sym__code_span_start] = ACTIONS(4551), - [sym__emphasis_open_star] = ACTIONS(4551), - [sym__emphasis_open_underscore] = ACTIONS(4551), - [sym__strikeout_open] = ACTIONS(4551), - [sym__latex_span_start] = ACTIONS(4551), - [sym__single_quote_open] = ACTIONS(4551), - [sym__double_quote_open] = ACTIONS(4551), - [sym__superscript_open] = ACTIONS(4551), - [sym__subscript_open] = ACTIONS(4551), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), - [sym__cite_author_in_text] = ACTIONS(4551), - [sym__cite_suppress_author] = ACTIONS(4551), - [sym__shortcode_open_escaped] = ACTIONS(4551), - [sym__shortcode_open] = ACTIONS(4551), - [sym__unclosed_span] = ACTIONS(4551), - [sym__strong_emphasis_open_star] = ACTIONS(4551), - [sym__strong_emphasis_open_underscore] = ACTIONS(4551), + [STATE(916)] = { + [ts_builtin_sym_end] = ACTIONS(4547), + [sym__backslash_escape] = ACTIONS(4547), + [sym_entity_reference] = ACTIONS(4547), + [sym_numeric_character_reference] = ACTIONS(4547), + [anon_sym_LT] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_BANG] = ACTIONS(4547), + [anon_sym_DQUOTE] = ACTIONS(4547), + [anon_sym_POUND] = ACTIONS(4547), + [anon_sym_DOLLAR] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_AMP] = ACTIONS(4549), + [anon_sym_SQUOTE] = ACTIONS(4547), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_COMMA] = ACTIONS(4547), + [anon_sym_DASH] = ACTIONS(4549), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_COLON] = ACTIONS(4547), + [anon_sym_SEMI] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_QMARK] = ACTIONS(4547), + [anon_sym_LBRACK] = ACTIONS(4549), + [anon_sym_BSLASH] = ACTIONS(4549), + [anon_sym_CARET] = ACTIONS(4549), + [anon_sym_BQUOTE] = ACTIONS(4547), + [anon_sym_LBRACE] = ACTIONS(4547), + [anon_sym_PIPE] = ACTIONS(4547), + [anon_sym_TILDE] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4547), + [anon_sym_RPAREN] = ACTIONS(4547), + [sym__newline_token] = ACTIONS(4547), + [aux_sym_insert_token1] = ACTIONS(4547), + [aux_sym_delete_token1] = ACTIONS(4547), + [aux_sym_highlight_token1] = ACTIONS(4547), + [aux_sym_edit_comment_token1] = ACTIONS(4547), + [anon_sym_CARET_LBRACK] = ACTIONS(4547), + [anon_sym_LBRACK_CARET] = ACTIONS(4547), + [sym_uri_autolink] = ACTIONS(4547), + [sym_email_autolink] = ACTIONS(4547), + [sym__whitespace_ge_2] = ACTIONS(4547), + [aux_sym__whitespace_token1] = ACTIONS(4549), + [sym__word_no_digit] = ACTIONS(4547), + [sym__digits] = ACTIONS(4547), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4547), + [sym__code_span_start] = ACTIONS(4547), + [sym__emphasis_open_star] = ACTIONS(4547), + [sym__emphasis_open_underscore] = ACTIONS(4547), + [sym__strikeout_open] = ACTIONS(4547), + [sym__latex_span_start] = ACTIONS(4547), + [sym__single_quote_open] = ACTIONS(4547), + [sym__double_quote_open] = ACTIONS(4547), + [sym__superscript_open] = ACTIONS(4547), + [sym__subscript_open] = ACTIONS(4547), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4547), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4547), + [sym__cite_author_in_text] = ACTIONS(4547), + [sym__cite_suppress_author] = ACTIONS(4547), + [sym__shortcode_open_escaped] = ACTIONS(4547), + [sym__shortcode_open] = ACTIONS(4547), + [sym__unclosed_span] = ACTIONS(4547), + [sym__strong_emphasis_open_star] = ACTIONS(4547), + [sym__strong_emphasis_open_underscore] = ACTIONS(4547), }, - [STATE(921)] = { + [STATE(917)] = { [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -110290,7 +110021,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4245), [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, - [STATE(922)] = { + [STATE(918)] = { + [sym__backslash_escape] = ACTIONS(4575), + [sym_entity_reference] = ACTIONS(4575), + [sym_numeric_character_reference] = ACTIONS(4575), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4575), + [anon_sym_DQUOTE] = ACTIONS(4575), + [anon_sym_POUND] = ACTIONS(4575), + [anon_sym_DOLLAR] = ACTIONS(4575), + [anon_sym_PERCENT] = ACTIONS(4575), + [anon_sym_AMP] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4575), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_EQ] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4577), + [anon_sym_BSLASH] = ACTIONS(4577), + [anon_sym_CARET] = ACTIONS(4577), + [anon_sym_BQUOTE] = ACTIONS(4575), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_PIPE] = ACTIONS(4575), + [anon_sym_TILDE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_RPAREN] = ACTIONS(4575), + [sym__newline_token] = ACTIONS(4575), + [aux_sym_insert_token1] = ACTIONS(4575), + [aux_sym_delete_token1] = ACTIONS(4575), + [aux_sym_highlight_token1] = ACTIONS(4575), + [aux_sym_edit_comment_token1] = ACTIONS(4575), + [anon_sym_CARET_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_CARET] = ACTIONS(4575), + [sym_uri_autolink] = ACTIONS(4575), + [sym_email_autolink] = ACTIONS(4575), + [sym__whitespace_ge_2] = ACTIONS(4575), + [aux_sym__whitespace_token1] = ACTIONS(4577), + [sym__word_no_digit] = ACTIONS(4575), + [sym__digits] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4577), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), + [sym__code_span_start] = ACTIONS(4575), + [sym__emphasis_open_star] = ACTIONS(4575), + [sym__emphasis_open_underscore] = ACTIONS(4575), + [sym__strikeout_open] = ACTIONS(4575), + [sym__latex_span_start] = ACTIONS(4575), + [sym__single_quote_open] = ACTIONS(4575), + [sym__double_quote_open] = ACTIONS(4575), + [sym__double_quote_close] = ACTIONS(4575), + [sym__superscript_open] = ACTIONS(4575), + [sym__subscript_open] = ACTIONS(4575), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), + [sym__cite_author_in_text] = ACTIONS(4575), + [sym__cite_suppress_author] = ACTIONS(4575), + [sym__shortcode_open_escaped] = ACTIONS(4575), + [sym__shortcode_open] = ACTIONS(4575), + [sym__unclosed_span] = ACTIONS(4575), + [sym__strong_emphasis_open_star] = ACTIONS(4575), + [sym__strong_emphasis_open_underscore] = ACTIONS(4575), + }, + [STATE(919)] = { [sym__backslash_escape] = ACTIONS(4579), [sym_entity_reference] = ACTIONS(4579), [sym_numeric_character_reference] = ACTIONS(4579), @@ -110357,7 +110155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4579), [sym__strong_emphasis_open_underscore] = ACTIONS(4579), }, - [STATE(923)] = { + [STATE(920)] = { [sym__backslash_escape] = ACTIONS(4583), [sym_entity_reference] = ACTIONS(4583), [sym_numeric_character_reference] = ACTIONS(4583), @@ -110424,7 +110222,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4583), [sym__strong_emphasis_open_underscore] = ACTIONS(4583), }, - [STATE(924)] = { + [STATE(921)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__superscript_close] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + }, + [STATE(922)] = { [sym__backslash_escape] = ACTIONS(4587), [sym_entity_reference] = ACTIONS(4587), [sym_numeric_character_reference] = ACTIONS(4587), @@ -110478,8 +110343,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__latex_span_start] = ACTIONS(4587), [sym__single_quote_open] = ACTIONS(4587), [sym__double_quote_open] = ACTIONS(4587), - [sym__double_quote_close] = ACTIONS(4587), [sym__superscript_open] = ACTIONS(4587), + [sym__superscript_close] = ACTIONS(4587), [sym__subscript_open] = ACTIONS(4587), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), @@ -110491,74 +110356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4587), [sym__strong_emphasis_open_underscore] = ACTIONS(4587), }, - [STATE(925)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__superscript_close] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(926)] = { + [STATE(923)] = { [sym__backslash_escape] = ACTIONS(4591), [sym_entity_reference] = ACTIONS(4591), [sym_numeric_character_reference] = ACTIONS(4591), @@ -110625,7 +110423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4591), [sym__strong_emphasis_open_underscore] = ACTIONS(4591), }, - [STATE(927)] = { + [STATE(924)] = { [sym__backslash_escape] = ACTIONS(4595), [sym_entity_reference] = ACTIONS(4595), [sym_numeric_character_reference] = ACTIONS(4595), @@ -110692,7 +110490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4595), [sym__strong_emphasis_open_underscore] = ACTIONS(4595), }, - [STATE(928)] = { + [STATE(925)] = { [sym__backslash_escape] = ACTIONS(4599), [sym_entity_reference] = ACTIONS(4599), [sym_numeric_character_reference] = ACTIONS(4599), @@ -110759,7 +110557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4599), [sym__strong_emphasis_open_underscore] = ACTIONS(4599), }, - [STATE(929)] = { + [STATE(926)] = { [sym__backslash_escape] = ACTIONS(4603), [sym_entity_reference] = ACTIONS(4603), [sym_numeric_character_reference] = ACTIONS(4603), @@ -110826,7 +110624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4603), [sym__strong_emphasis_open_underscore] = ACTIONS(4603), }, - [STATE(930)] = { + [STATE(927)] = { [sym__backslash_escape] = ACTIONS(4607), [sym_entity_reference] = ACTIONS(4607), [sym_numeric_character_reference] = ACTIONS(4607), @@ -110893,7 +110691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4607), [sym__strong_emphasis_open_underscore] = ACTIONS(4607), }, - [STATE(931)] = { + [STATE(928)] = { [sym__backslash_escape] = ACTIONS(4611), [sym_entity_reference] = ACTIONS(4611), [sym_numeric_character_reference] = ACTIONS(4611), @@ -110960,7 +110758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4611), [sym__strong_emphasis_open_underscore] = ACTIONS(4611), }, - [STATE(932)] = { + [STATE(929)] = { [sym__backslash_escape] = ACTIONS(4615), [sym_entity_reference] = ACTIONS(4615), [sym_numeric_character_reference] = ACTIONS(4615), @@ -111027,7 +110825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4615), [sym__strong_emphasis_open_underscore] = ACTIONS(4615), }, - [STATE(933)] = { + [STATE(930)] = { [sym__backslash_escape] = ACTIONS(4619), [sym_entity_reference] = ACTIONS(4619), [sym_numeric_character_reference] = ACTIONS(4619), @@ -111094,7 +110892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4619), [sym__strong_emphasis_open_underscore] = ACTIONS(4619), }, - [STATE(934)] = { + [STATE(931)] = { [sym__backslash_escape] = ACTIONS(4623), [sym_entity_reference] = ACTIONS(4623), [sym_numeric_character_reference] = ACTIONS(4623), @@ -111161,7 +110959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4623), [sym__strong_emphasis_open_underscore] = ACTIONS(4623), }, - [STATE(935)] = { + [STATE(932)] = { [sym__backslash_escape] = ACTIONS(4627), [sym_entity_reference] = ACTIONS(4627), [sym_numeric_character_reference] = ACTIONS(4627), @@ -111228,7 +111026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4627), [sym__strong_emphasis_open_underscore] = ACTIONS(4627), }, - [STATE(936)] = { + [STATE(933)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -111295,7 +111093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4631), [sym__strong_emphasis_open_underscore] = ACTIONS(4631), }, - [STATE(937)] = { + [STATE(934)] = { [sym__backslash_escape] = ACTIONS(4635), [sym_entity_reference] = ACTIONS(4635), [sym_numeric_character_reference] = ACTIONS(4635), @@ -111348,9 +111146,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strikeout_open] = ACTIONS(4635), [sym__latex_span_start] = ACTIONS(4635), [sym__single_quote_open] = ACTIONS(4635), + [sym__single_quote_close] = ACTIONS(4635), [sym__double_quote_open] = ACTIONS(4635), [sym__superscript_open] = ACTIONS(4635), - [sym__superscript_close] = ACTIONS(4635), [sym__subscript_open] = ACTIONS(4635), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4635), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4635), @@ -111362,7 +111160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4635), [sym__strong_emphasis_open_underscore] = ACTIONS(4635), }, - [STATE(938)] = { + [STATE(935)] = { [sym__backslash_escape] = ACTIONS(4639), [sym_entity_reference] = ACTIONS(4639), [sym_numeric_character_reference] = ACTIONS(4639), @@ -111415,8 +111213,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strikeout_open] = ACTIONS(4639), [sym__latex_span_start] = ACTIONS(4639), [sym__single_quote_open] = ACTIONS(4639), - [sym__single_quote_close] = ACTIONS(4639), [sym__double_quote_open] = ACTIONS(4639), + [sym__double_quote_close] = ACTIONS(4639), [sym__superscript_open] = ACTIONS(4639), [sym__subscript_open] = ACTIONS(4639), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4639), @@ -111429,7 +111227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4639), [sym__strong_emphasis_open_underscore] = ACTIONS(4639), }, - [STATE(939)] = { + [STATE(936)] = { [sym__backslash_escape] = ACTIONS(4643), [sym_entity_reference] = ACTIONS(4643), [sym_numeric_character_reference] = ACTIONS(4643), @@ -111483,8 +111281,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__latex_span_start] = ACTIONS(4643), [sym__single_quote_open] = ACTIONS(4643), [sym__double_quote_open] = ACTIONS(4643), - [sym__double_quote_close] = ACTIONS(4643), [sym__superscript_open] = ACTIONS(4643), + [sym__superscript_close] = ACTIONS(4643), [sym__subscript_open] = ACTIONS(4643), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4643), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4643), @@ -111496,74 +111294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4643), [sym__strong_emphasis_open_underscore] = ACTIONS(4643), }, - [STATE(940)] = { - [sym__backslash_escape] = ACTIONS(4647), - [sym_entity_reference] = ACTIONS(4647), - [sym_numeric_character_reference] = ACTIONS(4647), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4647), - [anon_sym_BANG] = ACTIONS(4647), - [anon_sym_DQUOTE] = ACTIONS(4647), - [anon_sym_POUND] = ACTIONS(4647), - [anon_sym_DOLLAR] = ACTIONS(4647), - [anon_sym_PERCENT] = ACTIONS(4647), - [anon_sym_AMP] = ACTIONS(4649), - [anon_sym_SQUOTE] = ACTIONS(4647), - [anon_sym_PLUS] = ACTIONS(4647), - [anon_sym_COMMA] = ACTIONS(4647), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_SLASH] = ACTIONS(4647), - [anon_sym_COLON] = ACTIONS(4647), - [anon_sym_SEMI] = ACTIONS(4647), - [anon_sym_EQ] = ACTIONS(4647), - [anon_sym_QMARK] = ACTIONS(4647), - [anon_sym_LBRACK] = ACTIONS(4649), - [anon_sym_BSLASH] = ACTIONS(4649), - [anon_sym_CARET] = ACTIONS(4649), - [anon_sym_BQUOTE] = ACTIONS(4647), - [anon_sym_LBRACE] = ACTIONS(4647), - [anon_sym_PIPE] = ACTIONS(4647), - [anon_sym_TILDE] = ACTIONS(4647), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_RPAREN] = ACTIONS(4647), - [sym__newline_token] = ACTIONS(4647), - [aux_sym_insert_token1] = ACTIONS(4647), - [aux_sym_delete_token1] = ACTIONS(4647), - [aux_sym_highlight_token1] = ACTIONS(4647), - [aux_sym_edit_comment_token1] = ACTIONS(4647), - [anon_sym_CARET_LBRACK] = ACTIONS(4647), - [anon_sym_LBRACK_CARET] = ACTIONS(4647), - [sym_uri_autolink] = ACTIONS(4647), - [sym_email_autolink] = ACTIONS(4647), - [sym__whitespace_ge_2] = ACTIONS(4647), - [aux_sym__whitespace_token1] = ACTIONS(4649), - [sym__word_no_digit] = ACTIONS(4647), - [sym__digits] = ACTIONS(4647), - [anon_sym_DASH_DASH] = ACTIONS(4649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4647), - [sym__code_span_start] = ACTIONS(4647), - [sym__emphasis_open_star] = ACTIONS(4647), - [sym__emphasis_open_underscore] = ACTIONS(4647), - [sym__strikeout_open] = ACTIONS(4647), - [sym__latex_span_start] = ACTIONS(4647), - [sym__single_quote_open] = ACTIONS(4647), - [sym__double_quote_open] = ACTIONS(4647), - [sym__superscript_open] = ACTIONS(4647), - [sym__superscript_close] = ACTIONS(4647), - [sym__subscript_open] = ACTIONS(4647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4647), - [sym__cite_author_in_text] = ACTIONS(4647), - [sym__cite_suppress_author] = ACTIONS(4647), - [sym__shortcode_open_escaped] = ACTIONS(4647), - [sym__shortcode_open] = ACTIONS(4647), - [sym__unclosed_span] = ACTIONS(4647), - [sym__strong_emphasis_open_star] = ACTIONS(4647), - [sym__strong_emphasis_open_underscore] = ACTIONS(4647), - }, - [STATE(941)] = { + [STATE(937)] = { [sym__backslash_escape] = ACTIONS(4181), [sym_entity_reference] = ACTIONS(4181), [sym_numeric_character_reference] = ACTIONS(4181), @@ -111630,7 +111361,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4181), [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, - [STATE(942)] = { + [STATE(938)] = { + [sym__backslash_escape] = ACTIONS(4647), + [sym_entity_reference] = ACTIONS(4647), + [sym_numeric_character_reference] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_POUND] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [anon_sym_PERCENT] = ACTIONS(4647), + [anon_sym_AMP] = ACTIONS(4649), + [anon_sym_SQUOTE] = ACTIONS(4647), + [anon_sym_PLUS] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4647), + [anon_sym_DASH] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4649), + [anon_sym_SLASH] = ACTIONS(4647), + [anon_sym_COLON] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_LBRACK] = ACTIONS(4649), + [anon_sym_BSLASH] = ACTIONS(4649), + [anon_sym_CARET] = ACTIONS(4649), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LBRACE] = ACTIONS(4647), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_TILDE] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4647), + [anon_sym_RPAREN] = ACTIONS(4647), + [sym__newline_token] = ACTIONS(4647), + [aux_sym_insert_token1] = ACTIONS(4647), + [aux_sym_delete_token1] = ACTIONS(4647), + [aux_sym_highlight_token1] = ACTIONS(4647), + [aux_sym_edit_comment_token1] = ACTIONS(4647), + [anon_sym_CARET_LBRACK] = ACTIONS(4647), + [anon_sym_LBRACK_CARET] = ACTIONS(4647), + [sym_uri_autolink] = ACTIONS(4647), + [sym_email_autolink] = ACTIONS(4647), + [sym__whitespace_ge_2] = ACTIONS(4647), + [aux_sym__whitespace_token1] = ACTIONS(4649), + [sym__word_no_digit] = ACTIONS(4647), + [sym__digits] = ACTIONS(4647), + [anon_sym_DASH_DASH] = ACTIONS(4649), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4647), + [sym__code_span_start] = ACTIONS(4647), + [sym__emphasis_open_star] = ACTIONS(4647), + [sym__emphasis_open_underscore] = ACTIONS(4647), + [sym__strikeout_open] = ACTIONS(4647), + [sym__latex_span_start] = ACTIONS(4647), + [sym__single_quote_open] = ACTIONS(4647), + [sym__double_quote_open] = ACTIONS(4647), + [sym__superscript_open] = ACTIONS(4647), + [sym__superscript_close] = ACTIONS(4647), + [sym__subscript_open] = ACTIONS(4647), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4647), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4647), + [sym__cite_author_in_text] = ACTIONS(4647), + [sym__cite_suppress_author] = ACTIONS(4647), + [sym__shortcode_open_escaped] = ACTIONS(4647), + [sym__shortcode_open] = ACTIONS(4647), + [sym__unclosed_span] = ACTIONS(4647), + [sym__strong_emphasis_open_star] = ACTIONS(4647), + [sym__strong_emphasis_open_underscore] = ACTIONS(4647), + }, + [STATE(939)] = { [sym__backslash_escape] = ACTIONS(4651), [sym_entity_reference] = ACTIONS(4651), [sym_numeric_character_reference] = ACTIONS(4651), @@ -111697,7 +111495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4651), [sym__strong_emphasis_open_underscore] = ACTIONS(4651), }, - [STATE(943)] = { + [STATE(940)] = { [sym__backslash_escape] = ACTIONS(4655), [sym_entity_reference] = ACTIONS(4655), [sym_numeric_character_reference] = ACTIONS(4655), @@ -111764,7 +111562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4655), [sym__strong_emphasis_open_underscore] = ACTIONS(4655), }, - [STATE(944)] = { + [STATE(941)] = { [sym__backslash_escape] = ACTIONS(4659), [sym_entity_reference] = ACTIONS(4659), [sym_numeric_character_reference] = ACTIONS(4659), @@ -111831,7 +111629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4659), [sym__strong_emphasis_open_underscore] = ACTIONS(4659), }, - [STATE(945)] = { + [STATE(942)] = { [sym__backslash_escape] = ACTIONS(4663), [sym_entity_reference] = ACTIONS(4663), [sym_numeric_character_reference] = ACTIONS(4663), @@ -111898,7 +111696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4663), [sym__strong_emphasis_open_underscore] = ACTIONS(4663), }, - [STATE(946)] = { + [STATE(943)] = { [sym__backslash_escape] = ACTIONS(4667), [sym_entity_reference] = ACTIONS(4667), [sym_numeric_character_reference] = ACTIONS(4667), @@ -111965,7 +111763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4667), [sym__strong_emphasis_open_underscore] = ACTIONS(4667), }, - [STATE(947)] = { + [STATE(944)] = { [sym__backslash_escape] = ACTIONS(4671), [sym_entity_reference] = ACTIONS(4671), [sym_numeric_character_reference] = ACTIONS(4671), @@ -112032,7 +111830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4671), [sym__strong_emphasis_open_underscore] = ACTIONS(4671), }, - [STATE(948)] = { + [STATE(945)] = { [sym__backslash_escape] = ACTIONS(4675), [sym_entity_reference] = ACTIONS(4675), [sym_numeric_character_reference] = ACTIONS(4675), @@ -112099,7 +111897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4675), [sym__strong_emphasis_open_underscore] = ACTIONS(4675), }, - [STATE(949)] = { + [STATE(946)] = { [sym__backslash_escape] = ACTIONS(4679), [sym_entity_reference] = ACTIONS(4679), [sym_numeric_character_reference] = ACTIONS(4679), @@ -112166,7 +111964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4679), [sym__strong_emphasis_open_underscore] = ACTIONS(4679), }, - [STATE(950)] = { + [STATE(947)] = { [sym__backslash_escape] = ACTIONS(4683), [sym_entity_reference] = ACTIONS(4683), [sym_numeric_character_reference] = ACTIONS(4683), @@ -112233,7 +112031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4683), [sym__strong_emphasis_open_underscore] = ACTIONS(4683), }, - [STATE(951)] = { + [STATE(948)] = { [sym__backslash_escape] = ACTIONS(4687), [sym_entity_reference] = ACTIONS(4687), [sym_numeric_character_reference] = ACTIONS(4687), @@ -112300,7 +112098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4687), [sym__strong_emphasis_open_underscore] = ACTIONS(4687), }, - [STATE(952)] = { + [STATE(949)] = { [sym__backslash_escape] = ACTIONS(4691), [sym_entity_reference] = ACTIONS(4691), [sym_numeric_character_reference] = ACTIONS(4691), @@ -112367,7 +112165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4691), [sym__strong_emphasis_open_underscore] = ACTIONS(4691), }, - [STATE(953)] = { + [STATE(950)] = { [sym__backslash_escape] = ACTIONS(4695), [sym_entity_reference] = ACTIONS(4695), [sym_numeric_character_reference] = ACTIONS(4695), @@ -112434,7 +112232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4695), [sym__strong_emphasis_open_underscore] = ACTIONS(4695), }, - [STATE(954)] = { + [STATE(951)] = { [sym__backslash_escape] = ACTIONS(4699), [sym_entity_reference] = ACTIONS(4699), [sym_numeric_character_reference] = ACTIONS(4699), @@ -112501,7 +112299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4699), [sym__strong_emphasis_open_underscore] = ACTIONS(4699), }, - [STATE(955)] = { + [STATE(952)] = { [sym__backslash_escape] = ACTIONS(4703), [sym_entity_reference] = ACTIONS(4703), [sym_numeric_character_reference] = ACTIONS(4703), @@ -112568,7 +112366,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4703), [sym__strong_emphasis_open_underscore] = ACTIONS(4703), }, - [STATE(956)] = { + [STATE(953)] = { + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__superscript_close] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + }, + [STATE(954)] = { [sym__backslash_escape] = ACTIONS(4707), [sym_entity_reference] = ACTIONS(4707), [sym_numeric_character_reference] = ACTIONS(4707), @@ -112635,74 +112500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4707), [sym__strong_emphasis_open_underscore] = ACTIONS(4707), }, - [STATE(957)] = { - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__superscript_close] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - }, - [STATE(958)] = { + [STATE(955)] = { [sym__backslash_escape] = ACTIONS(4711), [sym_entity_reference] = ACTIONS(4711), [sym_numeric_character_reference] = ACTIONS(4711), @@ -112769,7 +112567,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4711), [sym__strong_emphasis_open_underscore] = ACTIONS(4711), }, - [STATE(959)] = { + [STATE(956)] = { + [ts_builtin_sym_end] = ACTIONS(4217), + [sym__backslash_escape] = ACTIONS(4217), + [sym_entity_reference] = ACTIONS(4217), + [sym_numeric_character_reference] = ACTIONS(4217), + [anon_sym_LT] = ACTIONS(4219), + [anon_sym_GT] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4217), + [anon_sym_DQUOTE] = ACTIONS(4217), + [anon_sym_POUND] = ACTIONS(4217), + [anon_sym_DOLLAR] = ACTIONS(4217), + [anon_sym_PERCENT] = ACTIONS(4217), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_SQUOTE] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4217), + [anon_sym_COMMA] = ACTIONS(4217), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_DOT] = ACTIONS(4219), + [anon_sym_SLASH] = ACTIONS(4217), + [anon_sym_COLON] = ACTIONS(4217), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_EQ] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_BSLASH] = ACTIONS(4219), + [anon_sym_CARET] = ACTIONS(4219), + [anon_sym_BQUOTE] = ACTIONS(4217), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_PIPE] = ACTIONS(4217), + [anon_sym_TILDE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_RPAREN] = ACTIONS(4217), + [sym__newline_token] = ACTIONS(4217), + [aux_sym_insert_token1] = ACTIONS(4217), + [aux_sym_delete_token1] = ACTIONS(4217), + [aux_sym_highlight_token1] = ACTIONS(4217), + [aux_sym_edit_comment_token1] = ACTIONS(4217), + [anon_sym_CARET_LBRACK] = ACTIONS(4217), + [anon_sym_LBRACK_CARET] = ACTIONS(4217), + [sym_uri_autolink] = ACTIONS(4217), + [sym_email_autolink] = ACTIONS(4217), + [sym__whitespace_ge_2] = ACTIONS(4217), + [aux_sym__whitespace_token1] = ACTIONS(4219), + [sym__word_no_digit] = ACTIONS(4217), + [sym__digits] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4219), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4217), + [sym__code_span_start] = ACTIONS(4217), + [sym__emphasis_open_star] = ACTIONS(4217), + [sym__emphasis_open_underscore] = ACTIONS(4217), + [sym__strikeout_open] = ACTIONS(4217), + [sym__latex_span_start] = ACTIONS(4217), + [sym__single_quote_open] = ACTIONS(4217), + [sym__double_quote_open] = ACTIONS(4217), + [sym__superscript_open] = ACTIONS(4217), + [sym__subscript_open] = ACTIONS(4217), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4217), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4217), + [sym__cite_author_in_text] = ACTIONS(4217), + [sym__cite_suppress_author] = ACTIONS(4217), + [sym__shortcode_open_escaped] = ACTIONS(4217), + [sym__shortcode_open] = ACTIONS(4217), + [sym__unclosed_span] = ACTIONS(4217), + [sym__strong_emphasis_open_star] = ACTIONS(4217), + [sym__strong_emphasis_open_underscore] = ACTIONS(4217), + }, + [STATE(957)] = { [sym__backslash_escape] = ACTIONS(4715), [sym_entity_reference] = ACTIONS(4715), [sym_numeric_character_reference] = ACTIONS(4715), @@ -112836,74 +112701,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4715), [sym__strong_emphasis_open_underscore] = ACTIONS(4715), }, - [STATE(960)] = { - [ts_builtin_sym_end] = ACTIONS(4217), - [sym__backslash_escape] = ACTIONS(4217), - [sym_entity_reference] = ACTIONS(4217), - [sym_numeric_character_reference] = ACTIONS(4217), - [anon_sym_LT] = ACTIONS(4219), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(4217), - [anon_sym_POUND] = ACTIONS(4217), - [anon_sym_DOLLAR] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_AMP] = ACTIONS(4219), - [anon_sym_SQUOTE] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_COMMA] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4219), - [anon_sym_DOT] = ACTIONS(4219), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_COLON] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4217), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_BSLASH] = ACTIONS(4219), - [anon_sym_CARET] = ACTIONS(4219), - [anon_sym_BQUOTE] = ACTIONS(4217), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_PIPE] = ACTIONS(4217), - [anon_sym_TILDE] = ACTIONS(4217), - [anon_sym_LPAREN] = ACTIONS(4217), - [anon_sym_RPAREN] = ACTIONS(4217), - [sym__newline_token] = ACTIONS(4217), - [aux_sym_insert_token1] = ACTIONS(4217), - [aux_sym_delete_token1] = ACTIONS(4217), - [aux_sym_highlight_token1] = ACTIONS(4217), - [aux_sym_edit_comment_token1] = ACTIONS(4217), - [anon_sym_CARET_LBRACK] = ACTIONS(4217), - [anon_sym_LBRACK_CARET] = ACTIONS(4217), - [sym_uri_autolink] = ACTIONS(4217), - [sym_email_autolink] = ACTIONS(4217), - [sym__whitespace_ge_2] = ACTIONS(4217), - [aux_sym__whitespace_token1] = ACTIONS(4219), - [sym__word_no_digit] = ACTIONS(4217), - [sym__digits] = ACTIONS(4217), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4217), - [sym__code_span_start] = ACTIONS(4217), - [sym__emphasis_open_star] = ACTIONS(4217), - [sym__emphasis_open_underscore] = ACTIONS(4217), - [sym__strikeout_open] = ACTIONS(4217), - [sym__latex_span_start] = ACTIONS(4217), - [sym__single_quote_open] = ACTIONS(4217), - [sym__double_quote_open] = ACTIONS(4217), - [sym__superscript_open] = ACTIONS(4217), - [sym__subscript_open] = ACTIONS(4217), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4217), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4217), - [sym__cite_author_in_text] = ACTIONS(4217), - [sym__cite_suppress_author] = ACTIONS(4217), - [sym__shortcode_open_escaped] = ACTIONS(4217), - [sym__shortcode_open] = ACTIONS(4217), - [sym__unclosed_span] = ACTIONS(4217), - [sym__strong_emphasis_open_star] = ACTIONS(4217), - [sym__strong_emphasis_open_underscore] = ACTIONS(4217), + [STATE(958)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__superscript_close] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), }, - [STATE(961)] = { + [STATE(959)] = { [sym__backslash_escape] = ACTIONS(4719), [sym_entity_reference] = ACTIONS(4719), [sym_numeric_character_reference] = ACTIONS(4719), @@ -112970,74 +112835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4719), [sym__strong_emphasis_open_underscore] = ACTIONS(4719), }, - [STATE(962)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__superscript_close] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), - }, - [STATE(963)] = { + [STATE(960)] = { [sym__backslash_escape] = ACTIONS(4723), [sym_entity_reference] = ACTIONS(4723), [sym_numeric_character_reference] = ACTIONS(4723), @@ -113104,7 +112902,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4723), [sym__strong_emphasis_open_underscore] = ACTIONS(4723), }, - [STATE(964)] = { + [STATE(961)] = { + [sym__backslash_escape] = ACTIONS(4527), + [sym_entity_reference] = ACTIONS(4527), + [sym_numeric_character_reference] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_POUND] = ACTIONS(4527), + [anon_sym_DOLLAR] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_BSLASH] = ACTIONS(4529), + [anon_sym_CARET] = ACTIONS(4529), + [anon_sym_BQUOTE] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_RPAREN] = ACTIONS(4527), + [sym__newline_token] = ACTIONS(4527), + [aux_sym_insert_token1] = ACTIONS(4527), + [aux_sym_delete_token1] = ACTIONS(4527), + [aux_sym_highlight_token1] = ACTIONS(4527), + [aux_sym_edit_comment_token1] = ACTIONS(4527), + [anon_sym_CARET_LBRACK] = ACTIONS(4527), + [anon_sym_LBRACK_CARET] = ACTIONS(4527), + [sym_uri_autolink] = ACTIONS(4527), + [sym_email_autolink] = ACTIONS(4527), + [sym__whitespace_ge_2] = ACTIONS(4527), + [aux_sym__whitespace_token1] = ACTIONS(4529), + [sym__word_no_digit] = ACTIONS(4527), + [sym__digits] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), + [sym__code_span_start] = ACTIONS(4527), + [sym__emphasis_open_star] = ACTIONS(4527), + [sym__emphasis_open_underscore] = ACTIONS(4527), + [sym__strikeout_open] = ACTIONS(4527), + [sym__latex_span_start] = ACTIONS(4527), + [sym__single_quote_open] = ACTIONS(4527), + [sym__double_quote_open] = ACTIONS(4527), + [sym__superscript_open] = ACTIONS(4527), + [sym__superscript_close] = ACTIONS(4527), + [sym__subscript_open] = ACTIONS(4527), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), + [sym__cite_author_in_text] = ACTIONS(4527), + [sym__cite_suppress_author] = ACTIONS(4527), + [sym__shortcode_open_escaped] = ACTIONS(4527), + [sym__shortcode_open] = ACTIONS(4527), + [sym__unclosed_span] = ACTIONS(4527), + [sym__strong_emphasis_open_star] = ACTIONS(4527), + [sym__strong_emphasis_open_underscore] = ACTIONS(4527), + }, + [STATE(962)] = { [sym__backslash_escape] = ACTIONS(4727), [sym_entity_reference] = ACTIONS(4727), [sym_numeric_character_reference] = ACTIONS(4727), @@ -113171,7 +113036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4727), [sym__strong_emphasis_open_underscore] = ACTIONS(4727), }, - [STATE(965)] = { + [STATE(963)] = { [sym__backslash_escape] = ACTIONS(4731), [sym_entity_reference] = ACTIONS(4731), [sym_numeric_character_reference] = ACTIONS(4731), @@ -113238,7 +113103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4731), [sym__strong_emphasis_open_underscore] = ACTIONS(4731), }, - [STATE(966)] = { + [STATE(964)] = { [sym__backslash_escape] = ACTIONS(4735), [sym_entity_reference] = ACTIONS(4735), [sym_numeric_character_reference] = ACTIONS(4735), @@ -113305,7 +113170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4735), [sym__strong_emphasis_open_underscore] = ACTIONS(4735), }, - [STATE(967)] = { + [STATE(965)] = { [sym__backslash_escape] = ACTIONS(4739), [sym_entity_reference] = ACTIONS(4739), [sym_numeric_character_reference] = ACTIONS(4739), @@ -113372,7 +113237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4739), [sym__strong_emphasis_open_underscore] = ACTIONS(4739), }, - [STATE(968)] = { + [STATE(966)] = { [sym__backslash_escape] = ACTIONS(4743), [sym_entity_reference] = ACTIONS(4743), [sym_numeric_character_reference] = ACTIONS(4743), @@ -113439,7 +113304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4743), [sym__strong_emphasis_open_underscore] = ACTIONS(4743), }, - [STATE(969)] = { + [STATE(967)] = { [sym__backslash_escape] = ACTIONS(4747), [sym_entity_reference] = ACTIONS(4747), [sym_numeric_character_reference] = ACTIONS(4747), @@ -113506,7 +113371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4747), [sym__strong_emphasis_open_underscore] = ACTIONS(4747), }, - [STATE(970)] = { + [STATE(968)] = { [sym__backslash_escape] = ACTIONS(4751), [sym_entity_reference] = ACTIONS(4751), [sym_numeric_character_reference] = ACTIONS(4751), @@ -113573,7 +113438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4751), [sym__strong_emphasis_open_underscore] = ACTIONS(4751), }, - [STATE(971)] = { + [STATE(969)] = { [sym__backslash_escape] = ACTIONS(4755), [sym_entity_reference] = ACTIONS(4755), [sym_numeric_character_reference] = ACTIONS(4755), @@ -113640,7 +113505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4755), [sym__strong_emphasis_open_underscore] = ACTIONS(4755), }, - [STATE(972)] = { + [STATE(970)] = { [sym__backslash_escape] = ACTIONS(4759), [sym_entity_reference] = ACTIONS(4759), [sym_numeric_character_reference] = ACTIONS(4759), @@ -113707,7 +113572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4759), [sym__strong_emphasis_open_underscore] = ACTIONS(4759), }, - [STATE(973)] = { + [STATE(971)] = { [sym__backslash_escape] = ACTIONS(4763), [sym_entity_reference] = ACTIONS(4763), [sym_numeric_character_reference] = ACTIONS(4763), @@ -113774,141 +113639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4763), [sym__strong_emphasis_open_underscore] = ACTIONS(4763), }, - [STATE(974)] = { - [sym__backslash_escape] = ACTIONS(4527), - [sym_entity_reference] = ACTIONS(4527), - [sym_numeric_character_reference] = ACTIONS(4527), - [anon_sym_LT] = ACTIONS(4529), - [anon_sym_GT] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(4527), - [anon_sym_DQUOTE] = ACTIONS(4527), - [anon_sym_POUND] = ACTIONS(4527), - [anon_sym_DOLLAR] = ACTIONS(4527), - [anon_sym_PERCENT] = ACTIONS(4527), - [anon_sym_AMP] = ACTIONS(4529), - [anon_sym_SQUOTE] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(4527), - [anon_sym_COMMA] = ACTIONS(4527), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_DOT] = ACTIONS(4529), - [anon_sym_SLASH] = ACTIONS(4527), - [anon_sym_COLON] = ACTIONS(4527), - [anon_sym_SEMI] = ACTIONS(4527), - [anon_sym_EQ] = ACTIONS(4527), - [anon_sym_QMARK] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4529), - [anon_sym_BSLASH] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(4529), - [anon_sym_BQUOTE] = ACTIONS(4527), - [anon_sym_LBRACE] = ACTIONS(4527), - [anon_sym_PIPE] = ACTIONS(4527), - [anon_sym_TILDE] = ACTIONS(4527), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym_RPAREN] = ACTIONS(4527), - [sym__newline_token] = ACTIONS(4527), - [aux_sym_insert_token1] = ACTIONS(4527), - [aux_sym_delete_token1] = ACTIONS(4527), - [aux_sym_highlight_token1] = ACTIONS(4527), - [aux_sym_edit_comment_token1] = ACTIONS(4527), - [anon_sym_CARET_LBRACK] = ACTIONS(4527), - [anon_sym_LBRACK_CARET] = ACTIONS(4527), - [sym_uri_autolink] = ACTIONS(4527), - [sym_email_autolink] = ACTIONS(4527), - [sym__whitespace_ge_2] = ACTIONS(4527), - [aux_sym__whitespace_token1] = ACTIONS(4529), - [sym__word_no_digit] = ACTIONS(4527), - [sym__digits] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), - [sym__code_span_start] = ACTIONS(4527), - [sym__emphasis_open_star] = ACTIONS(4527), - [sym__emphasis_open_underscore] = ACTIONS(4527), - [sym__strikeout_open] = ACTIONS(4527), - [sym__latex_span_start] = ACTIONS(4527), - [sym__single_quote_open] = ACTIONS(4527), - [sym__double_quote_open] = ACTIONS(4527), - [sym__superscript_open] = ACTIONS(4527), - [sym__superscript_close] = ACTIONS(4527), - [sym__subscript_open] = ACTIONS(4527), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), - [sym__cite_author_in_text] = ACTIONS(4527), - [sym__cite_suppress_author] = ACTIONS(4527), - [sym__shortcode_open_escaped] = ACTIONS(4527), - [sym__shortcode_open] = ACTIONS(4527), - [sym__unclosed_span] = ACTIONS(4527), - [sym__strong_emphasis_open_star] = ACTIONS(4527), - [sym__strong_emphasis_open_underscore] = ACTIONS(4527), - }, - [STATE(975)] = { - [sym__backslash_escape] = ACTIONS(4531), - [sym_entity_reference] = ACTIONS(4531), - [sym_numeric_character_reference] = ACTIONS(4531), - [anon_sym_LT] = ACTIONS(4533), - [anon_sym_GT] = ACTIONS(4531), - [anon_sym_BANG] = ACTIONS(4531), - [anon_sym_DQUOTE] = ACTIONS(4531), - [anon_sym_POUND] = ACTIONS(4531), - [anon_sym_DOLLAR] = ACTIONS(4531), - [anon_sym_PERCENT] = ACTIONS(4531), - [anon_sym_AMP] = ACTIONS(4533), - [anon_sym_SQUOTE] = ACTIONS(4531), - [anon_sym_PLUS] = ACTIONS(4531), - [anon_sym_COMMA] = ACTIONS(4531), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4533), - [anon_sym_SLASH] = ACTIONS(4531), - [anon_sym_COLON] = ACTIONS(4531), - [anon_sym_SEMI] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4531), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_BSLASH] = ACTIONS(4533), - [anon_sym_CARET] = ACTIONS(4533), - [anon_sym_BQUOTE] = ACTIONS(4531), - [anon_sym_LBRACE] = ACTIONS(4531), - [anon_sym_PIPE] = ACTIONS(4531), - [anon_sym_TILDE] = ACTIONS(4531), - [anon_sym_LPAREN] = ACTIONS(4531), - [anon_sym_RPAREN] = ACTIONS(4531), - [sym__newline_token] = ACTIONS(4531), - [aux_sym_insert_token1] = ACTIONS(4531), - [aux_sym_delete_token1] = ACTIONS(4531), - [aux_sym_highlight_token1] = ACTIONS(4531), - [aux_sym_edit_comment_token1] = ACTIONS(4531), - [anon_sym_CARET_LBRACK] = ACTIONS(4531), - [anon_sym_LBRACK_CARET] = ACTIONS(4531), - [sym_uri_autolink] = ACTIONS(4531), - [sym_email_autolink] = ACTIONS(4531), - [sym__whitespace_ge_2] = ACTIONS(4531), - [aux_sym__whitespace_token1] = ACTIONS(4533), - [sym__word_no_digit] = ACTIONS(4531), - [sym__digits] = ACTIONS(4531), - [anon_sym_DASH_DASH] = ACTIONS(4533), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), - [sym__code_span_start] = ACTIONS(4531), - [sym__emphasis_open_star] = ACTIONS(4531), - [sym__emphasis_open_underscore] = ACTIONS(4531), - [sym__strikeout_open] = ACTIONS(4531), - [sym__latex_span_start] = ACTIONS(4531), - [sym__single_quote_open] = ACTIONS(4531), - [sym__double_quote_open] = ACTIONS(4531), - [sym__superscript_open] = ACTIONS(4531), - [sym__superscript_close] = ACTIONS(4531), - [sym__subscript_open] = ACTIONS(4531), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), - [sym__cite_author_in_text] = ACTIONS(4531), - [sym__cite_suppress_author] = ACTIONS(4531), - [sym__shortcode_open_escaped] = ACTIONS(4531), - [sym__shortcode_open] = ACTIONS(4531), - [sym__unclosed_span] = ACTIONS(4531), - [sym__strong_emphasis_open_star] = ACTIONS(4531), - [sym__strong_emphasis_open_underscore] = ACTIONS(4531), - }, - [STATE(976)] = { + [STATE(972)] = { [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), [sym_numeric_character_reference] = ACTIONS(4209), @@ -113975,7 +113706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4209), [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, - [STATE(977)] = { + [STATE(973)] = { [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), [sym_numeric_character_reference] = ACTIONS(4213), @@ -114042,7 +113773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4213), [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, - [STATE(978)] = { + [STATE(974)] = { [ts_builtin_sym_end] = ACTIONS(4221), [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), @@ -114109,7 +113840,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4221), [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, - [STATE(979)] = { + [STATE(975)] = { + [sym__backslash_escape] = ACTIONS(4531), + [sym_entity_reference] = ACTIONS(4531), + [sym_numeric_character_reference] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_DQUOTE] = ACTIONS(4531), + [anon_sym_POUND] = ACTIONS(4531), + [anon_sym_DOLLAR] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4533), + [anon_sym_SQUOTE] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_DASH] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4533), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_BSLASH] = ACTIONS(4533), + [anon_sym_CARET] = ACTIONS(4533), + [anon_sym_BQUOTE] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_TILDE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_RPAREN] = ACTIONS(4531), + [sym__newline_token] = ACTIONS(4531), + [aux_sym_insert_token1] = ACTIONS(4531), + [aux_sym_delete_token1] = ACTIONS(4531), + [aux_sym_highlight_token1] = ACTIONS(4531), + [aux_sym_edit_comment_token1] = ACTIONS(4531), + [anon_sym_CARET_LBRACK] = ACTIONS(4531), + [anon_sym_LBRACK_CARET] = ACTIONS(4531), + [sym_uri_autolink] = ACTIONS(4531), + [sym_email_autolink] = ACTIONS(4531), + [sym__whitespace_ge_2] = ACTIONS(4531), + [aux_sym__whitespace_token1] = ACTIONS(4533), + [sym__word_no_digit] = ACTIONS(4531), + [sym__digits] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), + [sym__code_span_start] = ACTIONS(4531), + [sym__emphasis_open_star] = ACTIONS(4531), + [sym__emphasis_open_underscore] = ACTIONS(4531), + [sym__strikeout_open] = ACTIONS(4531), + [sym__latex_span_start] = ACTIONS(4531), + [sym__single_quote_open] = ACTIONS(4531), + [sym__double_quote_open] = ACTIONS(4531), + [sym__superscript_open] = ACTIONS(4531), + [sym__superscript_close] = ACTIONS(4531), + [sym__subscript_open] = ACTIONS(4531), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), + [sym__cite_author_in_text] = ACTIONS(4531), + [sym__cite_suppress_author] = ACTIONS(4531), + [sym__shortcode_open_escaped] = ACTIONS(4531), + [sym__shortcode_open] = ACTIONS(4531), + [sym__unclosed_span] = ACTIONS(4531), + [sym__strong_emphasis_open_star] = ACTIONS(4531), + [sym__strong_emphasis_open_underscore] = ACTIONS(4531), + }, + [STATE(976)] = { [sym__backslash_escape] = ACTIONS(4535), [sym_entity_reference] = ACTIONS(4535), [sym_numeric_character_reference] = ACTIONS(4535), @@ -114176,7 +113974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4535), [sym__strong_emphasis_open_underscore] = ACTIONS(4535), }, - [STATE(980)] = { + [STATE(977)] = { [sym__backslash_escape] = ACTIONS(4539), [sym_entity_reference] = ACTIONS(4539), [sym_numeric_character_reference] = ACTIONS(4539), @@ -114243,7 +114041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4539), [sym__strong_emphasis_open_underscore] = ACTIONS(4539), }, - [STATE(981)] = { + [STATE(978)] = { [sym__backslash_escape] = ACTIONS(4543), [sym_entity_reference] = ACTIONS(4543), [sym_numeric_character_reference] = ACTIONS(4543), @@ -114310,7 +114108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4543), [sym__strong_emphasis_open_underscore] = ACTIONS(4543), }, - [STATE(982)] = { + [STATE(979)] = { [sym__backslash_escape] = ACTIONS(4547), [sym_entity_reference] = ACTIONS(4547), [sym_numeric_character_reference] = ACTIONS(4547), @@ -114377,74 +114175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4547), [sym__strong_emphasis_open_underscore] = ACTIONS(4547), }, - [STATE(983)] = { - [sym__backslash_escape] = ACTIONS(4551), - [sym_entity_reference] = ACTIONS(4551), - [sym_numeric_character_reference] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(4553), - [anon_sym_GT] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4551), - [anon_sym_DQUOTE] = ACTIONS(4551), - [anon_sym_POUND] = ACTIONS(4551), - [anon_sym_DOLLAR] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_AMP] = ACTIONS(4553), - [anon_sym_SQUOTE] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_COLON] = ACTIONS(4551), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_EQ] = ACTIONS(4551), - [anon_sym_QMARK] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_BSLASH] = ACTIONS(4553), - [anon_sym_CARET] = ACTIONS(4553), - [anon_sym_BQUOTE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_PIPE] = ACTIONS(4551), - [anon_sym_TILDE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_RPAREN] = ACTIONS(4551), - [sym__newline_token] = ACTIONS(4551), - [aux_sym_insert_token1] = ACTIONS(4551), - [aux_sym_delete_token1] = ACTIONS(4551), - [aux_sym_highlight_token1] = ACTIONS(4551), - [aux_sym_edit_comment_token1] = ACTIONS(4551), - [anon_sym_CARET_LBRACK] = ACTIONS(4551), - [anon_sym_LBRACK_CARET] = ACTIONS(4551), - [sym_uri_autolink] = ACTIONS(4551), - [sym_email_autolink] = ACTIONS(4551), - [sym__whitespace_ge_2] = ACTIONS(4551), - [aux_sym__whitespace_token1] = ACTIONS(4553), - [sym__word_no_digit] = ACTIONS(4551), - [sym__digits] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4553), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), - [sym__code_span_start] = ACTIONS(4551), - [sym__emphasis_open_star] = ACTIONS(4551), - [sym__emphasis_open_underscore] = ACTIONS(4551), - [sym__strikeout_open] = ACTIONS(4551), - [sym__latex_span_start] = ACTIONS(4551), - [sym__single_quote_open] = ACTIONS(4551), - [sym__double_quote_open] = ACTIONS(4551), - [sym__superscript_open] = ACTIONS(4551), - [sym__superscript_close] = ACTIONS(4551), - [sym__subscript_open] = ACTIONS(4551), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), - [sym__cite_author_in_text] = ACTIONS(4551), - [sym__cite_suppress_author] = ACTIONS(4551), - [sym__shortcode_open_escaped] = ACTIONS(4551), - [sym__shortcode_open] = ACTIONS(4551), - [sym__unclosed_span] = ACTIONS(4551), - [sym__strong_emphasis_open_star] = ACTIONS(4551), - [sym__strong_emphasis_open_underscore] = ACTIONS(4551), - }, - [STATE(984)] = { + [STATE(980)] = { [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -114511,74 +114242,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4217), [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, - [STATE(985)] = { - [ts_builtin_sym_end] = ACTIONS(4631), - [sym__backslash_escape] = ACTIONS(4631), - [sym_entity_reference] = ACTIONS(4631), - [sym_numeric_character_reference] = ACTIONS(4631), - [anon_sym_LT] = ACTIONS(4633), - [anon_sym_GT] = ACTIONS(4631), - [anon_sym_BANG] = ACTIONS(4631), - [anon_sym_DQUOTE] = ACTIONS(4631), - [anon_sym_POUND] = ACTIONS(4631), - [anon_sym_DOLLAR] = ACTIONS(4631), - [anon_sym_PERCENT] = ACTIONS(4631), - [anon_sym_AMP] = ACTIONS(4633), - [anon_sym_SQUOTE] = ACTIONS(4631), - [anon_sym_PLUS] = ACTIONS(4631), - [anon_sym_COMMA] = ACTIONS(4631), - [anon_sym_DASH] = ACTIONS(4633), - [anon_sym_DOT] = ACTIONS(4633), - [anon_sym_SLASH] = ACTIONS(4631), - [anon_sym_COLON] = ACTIONS(4631), - [anon_sym_SEMI] = ACTIONS(4631), - [anon_sym_EQ] = ACTIONS(4631), - [anon_sym_QMARK] = ACTIONS(4631), - [anon_sym_LBRACK] = ACTIONS(4633), - [anon_sym_BSLASH] = ACTIONS(4633), - [anon_sym_CARET] = ACTIONS(4633), - [anon_sym_BQUOTE] = ACTIONS(4631), - [anon_sym_LBRACE] = ACTIONS(4631), - [anon_sym_PIPE] = ACTIONS(4631), - [anon_sym_TILDE] = ACTIONS(4631), - [anon_sym_LPAREN] = ACTIONS(4631), - [anon_sym_RPAREN] = ACTIONS(4631), - [sym__newline_token] = ACTIONS(4631), - [aux_sym_insert_token1] = ACTIONS(4631), - [aux_sym_delete_token1] = ACTIONS(4631), - [aux_sym_highlight_token1] = ACTIONS(4631), - [aux_sym_edit_comment_token1] = ACTIONS(4631), - [anon_sym_CARET_LBRACK] = ACTIONS(4631), - [anon_sym_LBRACK_CARET] = ACTIONS(4631), - [sym_uri_autolink] = ACTIONS(4631), - [sym_email_autolink] = ACTIONS(4631), - [sym__whitespace_ge_2] = ACTIONS(4631), - [aux_sym__whitespace_token1] = ACTIONS(4633), - [sym__word_no_digit] = ACTIONS(4631), - [sym__digits] = ACTIONS(4631), - [anon_sym_DASH_DASH] = ACTIONS(4633), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4631), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4631), - [sym__code_span_start] = ACTIONS(4631), - [sym__emphasis_open_star] = ACTIONS(4631), - [sym__emphasis_open_underscore] = ACTIONS(4631), - [sym__strikeout_open] = ACTIONS(4631), - [sym__latex_span_start] = ACTIONS(4631), - [sym__single_quote_open] = ACTIONS(4631), - [sym__double_quote_open] = ACTIONS(4631), - [sym__superscript_open] = ACTIONS(4631), - [sym__subscript_open] = ACTIONS(4631), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4631), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4631), - [sym__cite_author_in_text] = ACTIONS(4631), - [sym__cite_suppress_author] = ACTIONS(4631), - [sym__shortcode_open_escaped] = ACTIONS(4631), - [sym__shortcode_open] = ACTIONS(4631), - [sym__unclosed_span] = ACTIONS(4631), - [sym__strong_emphasis_open_star] = ACTIONS(4631), - [sym__strong_emphasis_open_underscore] = ACTIONS(4631), + [STATE(981)] = { + [ts_builtin_sym_end] = ACTIONS(4627), + [sym__backslash_escape] = ACTIONS(4627), + [sym_entity_reference] = ACTIONS(4627), + [sym_numeric_character_reference] = ACTIONS(4627), + [anon_sym_LT] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4627), + [anon_sym_BANG] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4627), + [anon_sym_DOLLAR] = ACTIONS(4627), + [anon_sym_PERCENT] = ACTIONS(4627), + [anon_sym_AMP] = ACTIONS(4629), + [anon_sym_SQUOTE] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_COMMA] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4629), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [anon_sym_LBRACK] = ACTIONS(4629), + [anon_sym_BSLASH] = ACTIONS(4629), + [anon_sym_CARET] = ACTIONS(4629), + [anon_sym_BQUOTE] = ACTIONS(4627), + [anon_sym_LBRACE] = ACTIONS(4627), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_LPAREN] = ACTIONS(4627), + [anon_sym_RPAREN] = ACTIONS(4627), + [sym__newline_token] = ACTIONS(4627), + [aux_sym_insert_token1] = ACTIONS(4627), + [aux_sym_delete_token1] = ACTIONS(4627), + [aux_sym_highlight_token1] = ACTIONS(4627), + [aux_sym_edit_comment_token1] = ACTIONS(4627), + [anon_sym_CARET_LBRACK] = ACTIONS(4627), + [anon_sym_LBRACK_CARET] = ACTIONS(4627), + [sym_uri_autolink] = ACTIONS(4627), + [sym_email_autolink] = ACTIONS(4627), + [sym__whitespace_ge_2] = ACTIONS(4627), + [aux_sym__whitespace_token1] = ACTIONS(4629), + [sym__word_no_digit] = ACTIONS(4627), + [sym__digits] = ACTIONS(4627), + [anon_sym_DASH_DASH] = ACTIONS(4629), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4627), + [sym__code_span_start] = ACTIONS(4627), + [sym__emphasis_open_star] = ACTIONS(4627), + [sym__emphasis_open_underscore] = ACTIONS(4627), + [sym__strikeout_open] = ACTIONS(4627), + [sym__latex_span_start] = ACTIONS(4627), + [sym__single_quote_open] = ACTIONS(4627), + [sym__double_quote_open] = ACTIONS(4627), + [sym__superscript_open] = ACTIONS(4627), + [sym__subscript_open] = ACTIONS(4627), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4627), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4627), + [sym__cite_author_in_text] = ACTIONS(4627), + [sym__cite_suppress_author] = ACTIONS(4627), + [sym__shortcode_open_escaped] = ACTIONS(4627), + [sym__shortcode_open] = ACTIONS(4627), + [sym__unclosed_span] = ACTIONS(4627), + [sym__strong_emphasis_open_star] = ACTIONS(4627), + [sym__strong_emphasis_open_underscore] = ACTIONS(4627), }, - [STATE(986)] = { + [STATE(982)] = { [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -114645,7 +114376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4221), [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, - [STATE(987)] = { + [STATE(983)] = { [sym__backslash_escape] = ACTIONS(4555), [sym_entity_reference] = ACTIONS(4555), [sym_numeric_character_reference] = ACTIONS(4555), @@ -114712,7 +114443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4555), [sym__strong_emphasis_open_underscore] = ACTIONS(4555), }, - [STATE(988)] = { + [STATE(984)] = { [sym__backslash_escape] = ACTIONS(4559), [sym_entity_reference] = ACTIONS(4559), [sym_numeric_character_reference] = ACTIONS(4559), @@ -114779,7 +114510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4559), [sym__strong_emphasis_open_underscore] = ACTIONS(4559), }, - [STATE(989)] = { + [STATE(985)] = { [sym__backslash_escape] = ACTIONS(4563), [sym_entity_reference] = ACTIONS(4563), [sym_numeric_character_reference] = ACTIONS(4563), @@ -114846,74 +114577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4563), [sym__strong_emphasis_open_underscore] = ACTIONS(4563), }, - [STATE(990)] = { - [sym__backslash_escape] = ACTIONS(4567), - [sym_entity_reference] = ACTIONS(4567), - [sym_numeric_character_reference] = ACTIONS(4567), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4567), - [anon_sym_BANG] = ACTIONS(4567), - [anon_sym_DQUOTE] = ACTIONS(4567), - [anon_sym_POUND] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_COLON] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_QMARK] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4569), - [anon_sym_BSLASH] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym_BQUOTE] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_PIPE] = ACTIONS(4567), - [anon_sym_TILDE] = ACTIONS(4567), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [sym__newline_token] = ACTIONS(4567), - [aux_sym_insert_token1] = ACTIONS(4567), - [aux_sym_delete_token1] = ACTIONS(4567), - [aux_sym_highlight_token1] = ACTIONS(4567), - [aux_sym_edit_comment_token1] = ACTIONS(4567), - [anon_sym_CARET_LBRACK] = ACTIONS(4567), - [anon_sym_LBRACK_CARET] = ACTIONS(4567), - [sym_uri_autolink] = ACTIONS(4567), - [sym_email_autolink] = ACTIONS(4567), - [sym__whitespace_ge_2] = ACTIONS(4567), - [aux_sym__whitespace_token1] = ACTIONS(4569), - [sym__word_no_digit] = ACTIONS(4567), - [sym__digits] = ACTIONS(4567), - [anon_sym_DASH_DASH] = ACTIONS(4569), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), - [sym__code_span_start] = ACTIONS(4567), - [sym__emphasis_open_star] = ACTIONS(4567), - [sym__emphasis_open_underscore] = ACTIONS(4567), - [sym__strikeout_open] = ACTIONS(4567), - [sym__latex_span_start] = ACTIONS(4567), - [sym__single_quote_open] = ACTIONS(4567), - [sym__double_quote_open] = ACTIONS(4567), - [sym__superscript_open] = ACTIONS(4567), - [sym__superscript_close] = ACTIONS(4567), - [sym__subscript_open] = ACTIONS(4567), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), - [sym__cite_author_in_text] = ACTIONS(4567), - [sym__cite_suppress_author] = ACTIONS(4567), - [sym__shortcode_open_escaped] = ACTIONS(4567), - [sym__shortcode_open] = ACTIONS(4567), - [sym__unclosed_span] = ACTIONS(4567), - [sym__strong_emphasis_open_star] = ACTIONS(4567), - [sym__strong_emphasis_open_underscore] = ACTIONS(4567), - }, - [STATE(991)] = { + [STATE(986)] = { [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -114980,74 +114644,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4225), [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, - [STATE(992)] = { - [sym__backslash_escape] = ACTIONS(4763), - [sym_entity_reference] = ACTIONS(4763), - [sym_numeric_character_reference] = ACTIONS(4763), - [anon_sym_LT] = ACTIONS(4765), - [anon_sym_GT] = ACTIONS(4763), - [anon_sym_BANG] = ACTIONS(4763), - [anon_sym_DQUOTE] = ACTIONS(4763), - [anon_sym_POUND] = ACTIONS(4763), - [anon_sym_DOLLAR] = ACTIONS(4763), - [anon_sym_PERCENT] = ACTIONS(4763), - [anon_sym_AMP] = ACTIONS(4765), - [anon_sym_SQUOTE] = ACTIONS(4763), - [anon_sym_PLUS] = ACTIONS(4763), - [anon_sym_COMMA] = ACTIONS(4763), - [anon_sym_DASH] = ACTIONS(4765), - [anon_sym_DOT] = ACTIONS(4765), - [anon_sym_SLASH] = ACTIONS(4763), - [anon_sym_COLON] = ACTIONS(4763), - [anon_sym_SEMI] = ACTIONS(4763), - [anon_sym_EQ] = ACTIONS(4763), - [anon_sym_QMARK] = ACTIONS(4763), - [anon_sym_LBRACK] = ACTIONS(4765), - [anon_sym_BSLASH] = ACTIONS(4765), - [anon_sym_CARET] = ACTIONS(4765), - [anon_sym_BQUOTE] = ACTIONS(4763), - [anon_sym_LBRACE] = ACTIONS(4763), - [anon_sym_PIPE] = ACTIONS(4763), - [anon_sym_TILDE] = ACTIONS(4763), - [anon_sym_LPAREN] = ACTIONS(4763), - [anon_sym_RPAREN] = ACTIONS(4763), - [sym__newline_token] = ACTIONS(4763), - [aux_sym_insert_token1] = ACTIONS(4763), - [aux_sym_delete_token1] = ACTIONS(4763), - [aux_sym_highlight_token1] = ACTIONS(4763), - [aux_sym_edit_comment_token1] = ACTIONS(4763), - [anon_sym_CARET_LBRACK] = ACTIONS(4763), - [anon_sym_LBRACK_CARET] = ACTIONS(4763), - [sym_uri_autolink] = ACTIONS(4763), - [sym_email_autolink] = ACTIONS(4763), - [sym__whitespace_ge_2] = ACTIONS(4763), - [aux_sym__whitespace_token1] = ACTIONS(4765), - [sym__word_no_digit] = ACTIONS(4763), - [sym__digits] = ACTIONS(4763), - [anon_sym_DASH_DASH] = ACTIONS(4765), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4763), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4763), - [sym__code_span_start] = ACTIONS(4763), - [sym__emphasis_open_star] = ACTIONS(4763), - [sym__emphasis_open_underscore] = ACTIONS(4763), - [sym__strikeout_open] = ACTIONS(4763), - [sym__latex_span_start] = ACTIONS(4763), - [sym__single_quote_open] = ACTIONS(4763), - [sym__double_quote_open] = ACTIONS(4763), - [sym__double_quote_close] = ACTIONS(4763), - [sym__superscript_open] = ACTIONS(4763), - [sym__subscript_open] = ACTIONS(4763), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4763), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4763), - [sym__cite_author_in_text] = ACTIONS(4763), - [sym__cite_suppress_author] = ACTIONS(4763), - [sym__shortcode_open_escaped] = ACTIONS(4763), - [sym__shortcode_open] = ACTIONS(4763), - [sym__unclosed_span] = ACTIONS(4763), - [sym__strong_emphasis_open_star] = ACTIONS(4763), - [sym__strong_emphasis_open_underscore] = ACTIONS(4763), + [STATE(987)] = { + [sym__backslash_escape] = ACTIONS(4229), + [sym_entity_reference] = ACTIONS(4229), + [sym_numeric_character_reference] = ACTIONS(4229), + [anon_sym_LT] = ACTIONS(4231), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_DQUOTE] = ACTIONS(4229), + [anon_sym_POUND] = ACTIONS(4229), + [anon_sym_DOLLAR] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_AMP] = ACTIONS(4231), + [anon_sym_SQUOTE] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_COMMA] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4231), + [anon_sym_DOT] = ACTIONS(4231), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_COLON] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(4229), + [anon_sym_QMARK] = ACTIONS(4229), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_BSLASH] = ACTIONS(4231), + [anon_sym_CARET] = ACTIONS(4231), + [anon_sym_BQUOTE] = ACTIONS(4229), + [anon_sym_LBRACE] = ACTIONS(4229), + [anon_sym_PIPE] = ACTIONS(4229), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_LPAREN] = ACTIONS(4229), + [anon_sym_RPAREN] = ACTIONS(4229), + [sym__newline_token] = ACTIONS(4229), + [aux_sym_insert_token1] = ACTIONS(4229), + [aux_sym_delete_token1] = ACTIONS(4229), + [aux_sym_highlight_token1] = ACTIONS(4229), + [aux_sym_edit_comment_token1] = ACTIONS(4229), + [anon_sym_CARET_LBRACK] = ACTIONS(4229), + [anon_sym_LBRACK_CARET] = ACTIONS(4229), + [sym_uri_autolink] = ACTIONS(4229), + [sym_email_autolink] = ACTIONS(4229), + [sym__whitespace_ge_2] = ACTIONS(4229), + [aux_sym__whitespace_token1] = ACTIONS(4231), + [sym__word_no_digit] = ACTIONS(4229), + [sym__digits] = ACTIONS(4229), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4229), + [sym__code_span_start] = ACTIONS(4229), + [sym__emphasis_open_star] = ACTIONS(4229), + [sym__emphasis_open_underscore] = ACTIONS(4229), + [sym__strikeout_open] = ACTIONS(4229), + [sym__latex_span_start] = ACTIONS(4229), + [sym__single_quote_open] = ACTIONS(4229), + [sym__double_quote_open] = ACTIONS(4229), + [sym__superscript_open] = ACTIONS(4229), + [sym__superscript_close] = ACTIONS(4229), + [sym__subscript_open] = ACTIONS(4229), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4229), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4229), + [sym__cite_author_in_text] = ACTIONS(4229), + [sym__cite_suppress_author] = ACTIONS(4229), + [sym__shortcode_open_escaped] = ACTIONS(4229), + [sym__shortcode_open] = ACTIONS(4229), + [sym__unclosed_span] = ACTIONS(4229), + [sym__strong_emphasis_open_star] = ACTIONS(4229), + [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, - [STATE(993)] = { + [STATE(988)] = { + [sym__backslash_escape] = ACTIONS(4567), + [sym_entity_reference] = ACTIONS(4567), + [sym_numeric_character_reference] = ACTIONS(4567), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_DQUOTE] = ACTIONS(4567), + [anon_sym_POUND] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_BSLASH] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym_BQUOTE] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(4567), + [anon_sym_TILDE] = ACTIONS(4567), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [sym__newline_token] = ACTIONS(4567), + [aux_sym_insert_token1] = ACTIONS(4567), + [aux_sym_delete_token1] = ACTIONS(4567), + [aux_sym_highlight_token1] = ACTIONS(4567), + [aux_sym_edit_comment_token1] = ACTIONS(4567), + [anon_sym_CARET_LBRACK] = ACTIONS(4567), + [anon_sym_LBRACK_CARET] = ACTIONS(4567), + [sym_uri_autolink] = ACTIONS(4567), + [sym_email_autolink] = ACTIONS(4567), + [sym__whitespace_ge_2] = ACTIONS(4567), + [aux_sym__whitespace_token1] = ACTIONS(4569), + [sym__word_no_digit] = ACTIONS(4567), + [sym__digits] = ACTIONS(4567), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), + [sym__code_span_start] = ACTIONS(4567), + [sym__emphasis_open_star] = ACTIONS(4567), + [sym__emphasis_open_underscore] = ACTIONS(4567), + [sym__strikeout_open] = ACTIONS(4567), + [sym__latex_span_start] = ACTIONS(4567), + [sym__single_quote_open] = ACTIONS(4567), + [sym__double_quote_open] = ACTIONS(4567), + [sym__superscript_open] = ACTIONS(4567), + [sym__superscript_close] = ACTIONS(4567), + [sym__subscript_open] = ACTIONS(4567), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), + [sym__cite_author_in_text] = ACTIONS(4567), + [sym__cite_suppress_author] = ACTIONS(4567), + [sym__shortcode_open_escaped] = ACTIONS(4567), + [sym__shortcode_open] = ACTIONS(4567), + [sym__unclosed_span] = ACTIONS(4567), + [sym__strong_emphasis_open_star] = ACTIONS(4567), + [sym__strong_emphasis_open_underscore] = ACTIONS(4567), + }, + [STATE(989)] = { [sym__backslash_escape] = ACTIONS(4571), [sym_entity_reference] = ACTIONS(4571), [sym_numeric_character_reference] = ACTIONS(4571), @@ -115114,74 +114845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4571), [sym__strong_emphasis_open_underscore] = ACTIONS(4571), }, - [STATE(994)] = { - [sym__backslash_escape] = ACTIONS(4575), - [sym_entity_reference] = ACTIONS(4575), - [sym_numeric_character_reference] = ACTIONS(4575), - [anon_sym_LT] = ACTIONS(4577), - [anon_sym_GT] = ACTIONS(4575), - [anon_sym_BANG] = ACTIONS(4575), - [anon_sym_DQUOTE] = ACTIONS(4575), - [anon_sym_POUND] = ACTIONS(4575), - [anon_sym_DOLLAR] = ACTIONS(4575), - [anon_sym_PERCENT] = ACTIONS(4575), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_SQUOTE] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4575), - [anon_sym_COMMA] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4577), - [anon_sym_SLASH] = ACTIONS(4575), - [anon_sym_COLON] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4575), - [anon_sym_EQ] = ACTIONS(4575), - [anon_sym_QMARK] = ACTIONS(4575), - [anon_sym_LBRACK] = ACTIONS(4577), - [anon_sym_BSLASH] = ACTIONS(4577), - [anon_sym_CARET] = ACTIONS(4577), - [anon_sym_BQUOTE] = ACTIONS(4575), - [anon_sym_LBRACE] = ACTIONS(4575), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_TILDE] = ACTIONS(4575), - [anon_sym_LPAREN] = ACTIONS(4575), - [anon_sym_RPAREN] = ACTIONS(4575), - [sym__newline_token] = ACTIONS(4575), - [aux_sym_insert_token1] = ACTIONS(4575), - [aux_sym_delete_token1] = ACTIONS(4575), - [aux_sym_highlight_token1] = ACTIONS(4575), - [aux_sym_edit_comment_token1] = ACTIONS(4575), - [anon_sym_CARET_LBRACK] = ACTIONS(4575), - [anon_sym_LBRACK_CARET] = ACTIONS(4575), - [sym_uri_autolink] = ACTIONS(4575), - [sym_email_autolink] = ACTIONS(4575), - [sym__whitespace_ge_2] = ACTIONS(4575), - [aux_sym__whitespace_token1] = ACTIONS(4577), - [sym__word_no_digit] = ACTIONS(4575), - [sym__digits] = ACTIONS(4575), - [anon_sym_DASH_DASH] = ACTIONS(4577), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), - [sym__code_span_start] = ACTIONS(4575), - [sym__emphasis_open_star] = ACTIONS(4575), - [sym__emphasis_open_underscore] = ACTIONS(4575), - [sym__strikeout_open] = ACTIONS(4575), - [sym__latex_span_start] = ACTIONS(4575), - [sym__single_quote_open] = ACTIONS(4575), - [sym__double_quote_open] = ACTIONS(4575), - [sym__superscript_open] = ACTIONS(4575), - [sym__superscript_close] = ACTIONS(4575), - [sym__subscript_open] = ACTIONS(4575), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), - [sym__cite_author_in_text] = ACTIONS(4575), - [sym__cite_suppress_author] = ACTIONS(4575), - [sym__shortcode_open_escaped] = ACTIONS(4575), - [sym__shortcode_open] = ACTIONS(4575), - [sym__unclosed_span] = ACTIONS(4575), - [sym__strong_emphasis_open_star] = ACTIONS(4575), - [sym__strong_emphasis_open_underscore] = ACTIONS(4575), - }, - [STATE(995)] = { + [STATE(990)] = { [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -115248,7 +114912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4233), [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, - [STATE(996)] = { + [STATE(991)] = { [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -115315,7 +114979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4237), [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, - [STATE(997)] = { + [STATE(992)] = { [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -115382,74 +115046,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4241), [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, - [STATE(998)] = { - [ts_builtin_sym_end] = ACTIONS(4555), - [sym__backslash_escape] = ACTIONS(4555), - [sym_entity_reference] = ACTIONS(4555), - [sym_numeric_character_reference] = ACTIONS(4555), - [anon_sym_LT] = ACTIONS(4557), - [anon_sym_GT] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(4555), - [anon_sym_DQUOTE] = ACTIONS(4555), - [anon_sym_POUND] = ACTIONS(4555), - [anon_sym_DOLLAR] = ACTIONS(4555), - [anon_sym_PERCENT] = ACTIONS(4555), - [anon_sym_AMP] = ACTIONS(4557), - [anon_sym_SQUOTE] = ACTIONS(4555), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_COMMA] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4557), - [anon_sym_DOT] = ACTIONS(4557), - [anon_sym_SLASH] = ACTIONS(4555), - [anon_sym_COLON] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(4555), - [anon_sym_EQ] = ACTIONS(4555), - [anon_sym_QMARK] = ACTIONS(4555), - [anon_sym_LBRACK] = ACTIONS(4557), - [anon_sym_BSLASH] = ACTIONS(4557), - [anon_sym_CARET] = ACTIONS(4557), - [anon_sym_BQUOTE] = ACTIONS(4555), - [anon_sym_LBRACE] = ACTIONS(4555), - [anon_sym_PIPE] = ACTIONS(4555), - [anon_sym_TILDE] = ACTIONS(4555), - [anon_sym_LPAREN] = ACTIONS(4555), - [anon_sym_RPAREN] = ACTIONS(4555), - [sym__newline_token] = ACTIONS(4555), - [aux_sym_insert_token1] = ACTIONS(4555), - [aux_sym_delete_token1] = ACTIONS(4555), - [aux_sym_highlight_token1] = ACTIONS(4555), - [aux_sym_edit_comment_token1] = ACTIONS(4555), - [anon_sym_CARET_LBRACK] = ACTIONS(4555), - [anon_sym_LBRACK_CARET] = ACTIONS(4555), - [sym_uri_autolink] = ACTIONS(4555), - [sym_email_autolink] = ACTIONS(4555), - [sym__whitespace_ge_2] = ACTIONS(4555), - [aux_sym__whitespace_token1] = ACTIONS(4557), - [sym__word_no_digit] = ACTIONS(4555), - [sym__digits] = ACTIONS(4555), - [anon_sym_DASH_DASH] = ACTIONS(4557), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4555), - [sym__code_span_start] = ACTIONS(4555), - [sym__emphasis_open_star] = ACTIONS(4555), - [sym__emphasis_open_underscore] = ACTIONS(4555), - [sym__strikeout_open] = ACTIONS(4555), - [sym__latex_span_start] = ACTIONS(4555), - [sym__single_quote_open] = ACTIONS(4555), - [sym__double_quote_open] = ACTIONS(4555), - [sym__superscript_open] = ACTIONS(4555), - [sym__subscript_open] = ACTIONS(4555), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4555), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4555), - [sym__cite_author_in_text] = ACTIONS(4555), - [sym__cite_suppress_author] = ACTIONS(4555), - [sym__shortcode_open_escaped] = ACTIONS(4555), - [sym__shortcode_open] = ACTIONS(4555), - [sym__unclosed_span] = ACTIONS(4555), - [sym__strong_emphasis_open_star] = ACTIONS(4555), - [sym__strong_emphasis_open_underscore] = ACTIONS(4555), + [STATE(993)] = { + [ts_builtin_sym_end] = ACTIONS(4551), + [sym__backslash_escape] = ACTIONS(4551), + [sym_entity_reference] = ACTIONS(4551), + [sym_numeric_character_reference] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_POUND] = ACTIONS(4551), + [anon_sym_DOLLAR] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4553), + [anon_sym_SQUOTE] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_BSLASH] = ACTIONS(4553), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_BQUOTE] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_RPAREN] = ACTIONS(4551), + [sym__newline_token] = ACTIONS(4551), + [aux_sym_insert_token1] = ACTIONS(4551), + [aux_sym_delete_token1] = ACTIONS(4551), + [aux_sym_highlight_token1] = ACTIONS(4551), + [aux_sym_edit_comment_token1] = ACTIONS(4551), + [anon_sym_CARET_LBRACK] = ACTIONS(4551), + [anon_sym_LBRACK_CARET] = ACTIONS(4551), + [sym_uri_autolink] = ACTIONS(4551), + [sym_email_autolink] = ACTIONS(4551), + [sym__whitespace_ge_2] = ACTIONS(4551), + [aux_sym__whitespace_token1] = ACTIONS(4553), + [sym__word_no_digit] = ACTIONS(4551), + [sym__digits] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), + [sym__code_span_start] = ACTIONS(4551), + [sym__emphasis_open_star] = ACTIONS(4551), + [sym__emphasis_open_underscore] = ACTIONS(4551), + [sym__strikeout_open] = ACTIONS(4551), + [sym__latex_span_start] = ACTIONS(4551), + [sym__single_quote_open] = ACTIONS(4551), + [sym__double_quote_open] = ACTIONS(4551), + [sym__superscript_open] = ACTIONS(4551), + [sym__subscript_open] = ACTIONS(4551), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), + [sym__cite_author_in_text] = ACTIONS(4551), + [sym__cite_suppress_author] = ACTIONS(4551), + [sym__shortcode_open_escaped] = ACTIONS(4551), + [sym__shortcode_open] = ACTIONS(4551), + [sym__unclosed_span] = ACTIONS(4551), + [sym__strong_emphasis_open_star] = ACTIONS(4551), + [sym__strong_emphasis_open_underscore] = ACTIONS(4551), }, - [STATE(999)] = { + [STATE(994)] = { [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -115516,7 +115180,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4245), [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, - [STATE(1000)] = { + [STATE(995)] = { + [sym__backslash_escape] = ACTIONS(4575), + [sym_entity_reference] = ACTIONS(4575), + [sym_numeric_character_reference] = ACTIONS(4575), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4575), + [anon_sym_DQUOTE] = ACTIONS(4575), + [anon_sym_POUND] = ACTIONS(4575), + [anon_sym_DOLLAR] = ACTIONS(4575), + [anon_sym_PERCENT] = ACTIONS(4575), + [anon_sym_AMP] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4575), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_EQ] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4577), + [anon_sym_BSLASH] = ACTIONS(4577), + [anon_sym_CARET] = ACTIONS(4577), + [anon_sym_BQUOTE] = ACTIONS(4575), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_PIPE] = ACTIONS(4575), + [anon_sym_TILDE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_RPAREN] = ACTIONS(4575), + [sym__newline_token] = ACTIONS(4575), + [aux_sym_insert_token1] = ACTIONS(4575), + [aux_sym_delete_token1] = ACTIONS(4575), + [aux_sym_highlight_token1] = ACTIONS(4575), + [aux_sym_edit_comment_token1] = ACTIONS(4575), + [anon_sym_CARET_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_CARET] = ACTIONS(4575), + [sym_uri_autolink] = ACTIONS(4575), + [sym_email_autolink] = ACTIONS(4575), + [sym__whitespace_ge_2] = ACTIONS(4575), + [aux_sym__whitespace_token1] = ACTIONS(4577), + [sym__word_no_digit] = ACTIONS(4575), + [sym__digits] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4577), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), + [sym__code_span_start] = ACTIONS(4575), + [sym__emphasis_open_star] = ACTIONS(4575), + [sym__emphasis_open_underscore] = ACTIONS(4575), + [sym__strikeout_open] = ACTIONS(4575), + [sym__latex_span_start] = ACTIONS(4575), + [sym__single_quote_open] = ACTIONS(4575), + [sym__double_quote_open] = ACTIONS(4575), + [sym__superscript_open] = ACTIONS(4575), + [sym__superscript_close] = ACTIONS(4575), + [sym__subscript_open] = ACTIONS(4575), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), + [sym__cite_author_in_text] = ACTIONS(4575), + [sym__cite_suppress_author] = ACTIONS(4575), + [sym__shortcode_open_escaped] = ACTIONS(4575), + [sym__shortcode_open] = ACTIONS(4575), + [sym__unclosed_span] = ACTIONS(4575), + [sym__strong_emphasis_open_star] = ACTIONS(4575), + [sym__strong_emphasis_open_underscore] = ACTIONS(4575), + }, + [STATE(996)] = { [sym__backslash_escape] = ACTIONS(4579), [sym_entity_reference] = ACTIONS(4579), [sym_numeric_character_reference] = ACTIONS(4579), @@ -115583,7 +115314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4579), [sym__strong_emphasis_open_underscore] = ACTIONS(4579), }, - [STATE(1001)] = { + [STATE(997)] = { [sym__backslash_escape] = ACTIONS(4583), [sym_entity_reference] = ACTIONS(4583), [sym_numeric_character_reference] = ACTIONS(4583), @@ -115650,74 +115381,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4583), [sym__strong_emphasis_open_underscore] = ACTIONS(4583), }, - [STATE(1002)] = { - [sym__backslash_escape] = ACTIONS(4587), - [sym_entity_reference] = ACTIONS(4587), - [sym_numeric_character_reference] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4589), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_DQUOTE] = ACTIONS(4587), - [anon_sym_POUND] = ACTIONS(4587), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_AMP] = ACTIONS(4589), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_COMMA] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_QMARK] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_BSLASH] = ACTIONS(4589), - [anon_sym_CARET] = ACTIONS(4589), - [anon_sym_BQUOTE] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_TILDE] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4587), - [anon_sym_RPAREN] = ACTIONS(4587), - [sym__newline_token] = ACTIONS(4587), - [aux_sym_insert_token1] = ACTIONS(4587), - [aux_sym_delete_token1] = ACTIONS(4587), - [aux_sym_highlight_token1] = ACTIONS(4587), - [aux_sym_edit_comment_token1] = ACTIONS(4587), - [anon_sym_CARET_LBRACK] = ACTIONS(4587), - [anon_sym_LBRACK_CARET] = ACTIONS(4587), - [sym_uri_autolink] = ACTIONS(4587), - [sym_email_autolink] = ACTIONS(4587), - [sym__whitespace_ge_2] = ACTIONS(4587), - [aux_sym__whitespace_token1] = ACTIONS(4589), - [sym__word_no_digit] = ACTIONS(4587), - [sym__digits] = ACTIONS(4587), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), - [sym__code_span_start] = ACTIONS(4587), - [sym__emphasis_open_star] = ACTIONS(4587), - [sym__emphasis_open_underscore] = ACTIONS(4587), - [sym__strikeout_open] = ACTIONS(4587), - [sym__latex_span_start] = ACTIONS(4587), - [sym__single_quote_open] = ACTIONS(4587), - [sym__double_quote_open] = ACTIONS(4587), - [sym__superscript_open] = ACTIONS(4587), - [sym__superscript_close] = ACTIONS(4587), - [sym__subscript_open] = ACTIONS(4587), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), - [sym__cite_author_in_text] = ACTIONS(4587), - [sym__cite_suppress_author] = ACTIONS(4587), - [sym__shortcode_open_escaped] = ACTIONS(4587), - [sym__shortcode_open] = ACTIONS(4587), - [sym__unclosed_span] = ACTIONS(4587), - [sym__strong_emphasis_open_star] = ACTIONS(4587), - [sym__strong_emphasis_open_underscore] = ACTIONS(4587), + [STATE(998)] = { + [ts_builtin_sym_end] = ACTIONS(4555), + [sym__backslash_escape] = ACTIONS(4555), + [sym_entity_reference] = ACTIONS(4555), + [sym_numeric_character_reference] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_DQUOTE] = ACTIONS(4555), + [anon_sym_POUND] = ACTIONS(4555), + [anon_sym_DOLLAR] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_AMP] = ACTIONS(4557), + [anon_sym_SQUOTE] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_COMMA] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_SEMI] = ACTIONS(4555), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_QMARK] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4557), + [anon_sym_BSLASH] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_BQUOTE] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_TILDE] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4555), + [anon_sym_RPAREN] = ACTIONS(4555), + [sym__newline_token] = ACTIONS(4555), + [aux_sym_insert_token1] = ACTIONS(4555), + [aux_sym_delete_token1] = ACTIONS(4555), + [aux_sym_highlight_token1] = ACTIONS(4555), + [aux_sym_edit_comment_token1] = ACTIONS(4555), + [anon_sym_CARET_LBRACK] = ACTIONS(4555), + [anon_sym_LBRACK_CARET] = ACTIONS(4555), + [sym_uri_autolink] = ACTIONS(4555), + [sym_email_autolink] = ACTIONS(4555), + [sym__whitespace_ge_2] = ACTIONS(4555), + [aux_sym__whitespace_token1] = ACTIONS(4557), + [sym__word_no_digit] = ACTIONS(4555), + [sym__digits] = ACTIONS(4555), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4555), + [sym__code_span_start] = ACTIONS(4555), + [sym__emphasis_open_star] = ACTIONS(4555), + [sym__emphasis_open_underscore] = ACTIONS(4555), + [sym__strikeout_open] = ACTIONS(4555), + [sym__latex_span_start] = ACTIONS(4555), + [sym__single_quote_open] = ACTIONS(4555), + [sym__double_quote_open] = ACTIONS(4555), + [sym__superscript_open] = ACTIONS(4555), + [sym__subscript_open] = ACTIONS(4555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4555), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4555), + [sym__cite_author_in_text] = ACTIONS(4555), + [sym__cite_suppress_author] = ACTIONS(4555), + [sym__shortcode_open_escaped] = ACTIONS(4555), + [sym__shortcode_open] = ACTIONS(4555), + [sym__unclosed_span] = ACTIONS(4555), + [sym__strong_emphasis_open_star] = ACTIONS(4555), + [sym__strong_emphasis_open_underscore] = ACTIONS(4555), }, - [STATE(1003)] = { + [STATE(999)] = { [ts_builtin_sym_end] = ACTIONS(4559), [sym__backslash_escape] = ACTIONS(4559), [sym_entity_reference] = ACTIONS(4559), @@ -115784,141 +115515,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4559), [sym__strong_emphasis_open_underscore] = ACTIONS(4559), }, - [STATE(1004)] = { - [ts_builtin_sym_end] = ACTIONS(4563), - [sym__backslash_escape] = ACTIONS(4563), - [sym_entity_reference] = ACTIONS(4563), - [sym_numeric_character_reference] = ACTIONS(4563), - [anon_sym_LT] = ACTIONS(4565), - [anon_sym_GT] = ACTIONS(4563), - [anon_sym_BANG] = ACTIONS(4563), - [anon_sym_DQUOTE] = ACTIONS(4563), - [anon_sym_POUND] = ACTIONS(4563), - [anon_sym_DOLLAR] = ACTIONS(4563), - [anon_sym_PERCENT] = ACTIONS(4563), - [anon_sym_AMP] = ACTIONS(4565), - [anon_sym_SQUOTE] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(4563), - [anon_sym_COMMA] = ACTIONS(4563), - [anon_sym_DASH] = ACTIONS(4565), - [anon_sym_DOT] = ACTIONS(4565), - [anon_sym_SLASH] = ACTIONS(4563), - [anon_sym_COLON] = ACTIONS(4563), - [anon_sym_SEMI] = ACTIONS(4563), - [anon_sym_EQ] = ACTIONS(4563), - [anon_sym_QMARK] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(4565), - [anon_sym_BSLASH] = ACTIONS(4565), - [anon_sym_CARET] = ACTIONS(4565), - [anon_sym_BQUOTE] = ACTIONS(4563), - [anon_sym_LBRACE] = ACTIONS(4563), - [anon_sym_PIPE] = ACTIONS(4563), - [anon_sym_TILDE] = ACTIONS(4563), - [anon_sym_LPAREN] = ACTIONS(4563), - [anon_sym_RPAREN] = ACTIONS(4563), - [sym__newline_token] = ACTIONS(4563), - [aux_sym_insert_token1] = ACTIONS(4563), - [aux_sym_delete_token1] = ACTIONS(4563), - [aux_sym_highlight_token1] = ACTIONS(4563), - [aux_sym_edit_comment_token1] = ACTIONS(4563), - [anon_sym_CARET_LBRACK] = ACTIONS(4563), - [anon_sym_LBRACK_CARET] = ACTIONS(4563), - [sym_uri_autolink] = ACTIONS(4563), - [sym_email_autolink] = ACTIONS(4563), - [sym__whitespace_ge_2] = ACTIONS(4563), - [aux_sym__whitespace_token1] = ACTIONS(4565), - [sym__word_no_digit] = ACTIONS(4563), - [sym__digits] = ACTIONS(4563), - [anon_sym_DASH_DASH] = ACTIONS(4565), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4563), - [sym__code_span_start] = ACTIONS(4563), - [sym__emphasis_open_star] = ACTIONS(4563), - [sym__emphasis_open_underscore] = ACTIONS(4563), - [sym__strikeout_open] = ACTIONS(4563), - [sym__latex_span_start] = ACTIONS(4563), - [sym__single_quote_open] = ACTIONS(4563), - [sym__double_quote_open] = ACTIONS(4563), - [sym__superscript_open] = ACTIONS(4563), - [sym__subscript_open] = ACTIONS(4563), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4563), - [sym__cite_author_in_text] = ACTIONS(4563), - [sym__cite_suppress_author] = ACTIONS(4563), - [sym__shortcode_open_escaped] = ACTIONS(4563), - [sym__shortcode_open] = ACTIONS(4563), - [sym__unclosed_span] = ACTIONS(4563), - [sym__strong_emphasis_open_star] = ACTIONS(4563), - [sym__strong_emphasis_open_underscore] = ACTIONS(4563), + [STATE(1000)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__subscript_close] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(1005)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__subscript_close] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(1001)] = { + [sym__backslash_escape] = ACTIONS(4587), + [sym_entity_reference] = ACTIONS(4587), + [sym_numeric_character_reference] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4587), + [anon_sym_DQUOTE] = ACTIONS(4587), + [anon_sym_POUND] = ACTIONS(4587), + [anon_sym_DOLLAR] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4587), + [anon_sym_AMP] = ACTIONS(4589), + [anon_sym_SQUOTE] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_BSLASH] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4589), + [anon_sym_BQUOTE] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_PIPE] = ACTIONS(4587), + [anon_sym_TILDE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4587), + [sym__newline_token] = ACTIONS(4587), + [aux_sym_insert_token1] = ACTIONS(4587), + [aux_sym_delete_token1] = ACTIONS(4587), + [aux_sym_highlight_token1] = ACTIONS(4587), + [aux_sym_edit_comment_token1] = ACTIONS(4587), + [anon_sym_CARET_LBRACK] = ACTIONS(4587), + [anon_sym_LBRACK_CARET] = ACTIONS(4587), + [sym_uri_autolink] = ACTIONS(4587), + [sym_email_autolink] = ACTIONS(4587), + [sym__whitespace_ge_2] = ACTIONS(4587), + [aux_sym__whitespace_token1] = ACTIONS(4589), + [sym__word_no_digit] = ACTIONS(4587), + [sym__digits] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), + [sym__code_span_start] = ACTIONS(4587), + [sym__emphasis_open_star] = ACTIONS(4587), + [sym__emphasis_open_underscore] = ACTIONS(4587), + [sym__strikeout_open] = ACTIONS(4587), + [sym__latex_span_start] = ACTIONS(4587), + [sym__single_quote_open] = ACTIONS(4587), + [sym__double_quote_open] = ACTIONS(4587), + [sym__superscript_open] = ACTIONS(4587), + [sym__subscript_open] = ACTIONS(4587), + [sym__subscript_close] = ACTIONS(4587), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), + [sym__cite_author_in_text] = ACTIONS(4587), + [sym__cite_suppress_author] = ACTIONS(4587), + [sym__shortcode_open_escaped] = ACTIONS(4587), + [sym__shortcode_open] = ACTIONS(4587), + [sym__unclosed_span] = ACTIONS(4587), + [sym__strong_emphasis_open_star] = ACTIONS(4587), + [sym__strong_emphasis_open_underscore] = ACTIONS(4587), }, - [STATE(1006)] = { + [STATE(1002)] = { [sym__backslash_escape] = ACTIONS(4591), [sym_entity_reference] = ACTIONS(4591), [sym_numeric_character_reference] = ACTIONS(4591), @@ -115985,7 +115716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4591), [sym__strong_emphasis_open_underscore] = ACTIONS(4591), }, - [STATE(1007)] = { + [STATE(1003)] = { [sym__backslash_escape] = ACTIONS(4595), [sym_entity_reference] = ACTIONS(4595), [sym_numeric_character_reference] = ACTIONS(4595), @@ -116052,7 +115783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4595), [sym__strong_emphasis_open_underscore] = ACTIONS(4595), }, - [STATE(1008)] = { + [STATE(1004)] = { [sym__backslash_escape] = ACTIONS(4599), [sym_entity_reference] = ACTIONS(4599), [sym_numeric_character_reference] = ACTIONS(4599), @@ -116119,7 +115850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4599), [sym__strong_emphasis_open_underscore] = ACTIONS(4599), }, - [STATE(1009)] = { + [STATE(1005)] = { [sym__backslash_escape] = ACTIONS(4603), [sym_entity_reference] = ACTIONS(4603), [sym_numeric_character_reference] = ACTIONS(4603), @@ -116186,7 +115917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4603), [sym__strong_emphasis_open_underscore] = ACTIONS(4603), }, - [STATE(1010)] = { + [STATE(1006)] = { [sym__backslash_escape] = ACTIONS(4607), [sym_entity_reference] = ACTIONS(4607), [sym_numeric_character_reference] = ACTIONS(4607), @@ -116253,7 +115984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4607), [sym__strong_emphasis_open_underscore] = ACTIONS(4607), }, - [STATE(1011)] = { + [STATE(1007)] = { [sym__backslash_escape] = ACTIONS(4611), [sym_entity_reference] = ACTIONS(4611), [sym_numeric_character_reference] = ACTIONS(4611), @@ -116320,7 +116051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4611), [sym__strong_emphasis_open_underscore] = ACTIONS(4611), }, - [STATE(1012)] = { + [STATE(1008)] = { [sym__backslash_escape] = ACTIONS(4615), [sym_entity_reference] = ACTIONS(4615), [sym_numeric_character_reference] = ACTIONS(4615), @@ -116387,7 +116118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4615), [sym__strong_emphasis_open_underscore] = ACTIONS(4615), }, - [STATE(1013)] = { + [STATE(1009)] = { [sym__backslash_escape] = ACTIONS(4619), [sym_entity_reference] = ACTIONS(4619), [sym_numeric_character_reference] = ACTIONS(4619), @@ -116454,7 +116185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4619), [sym__strong_emphasis_open_underscore] = ACTIONS(4619), }, - [STATE(1014)] = { + [STATE(1010)] = { [sym__backslash_escape] = ACTIONS(4623), [sym_entity_reference] = ACTIONS(4623), [sym_numeric_character_reference] = ACTIONS(4623), @@ -116521,7 +116252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4623), [sym__strong_emphasis_open_underscore] = ACTIONS(4623), }, - [STATE(1015)] = { + [STATE(1011)] = { [sym__backslash_escape] = ACTIONS(4627), [sym_entity_reference] = ACTIONS(4627), [sym_numeric_character_reference] = ACTIONS(4627), @@ -116588,7 +116319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4627), [sym__strong_emphasis_open_underscore] = ACTIONS(4627), }, - [STATE(1016)] = { + [STATE(1012)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -116655,7 +116386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4631), [sym__strong_emphasis_open_underscore] = ACTIONS(4631), }, - [STATE(1017)] = { + [STATE(1013)] = { [sym__backslash_escape] = ACTIONS(4635), [sym_entity_reference] = ACTIONS(4635), [sym_numeric_character_reference] = ACTIONS(4635), @@ -116709,9 +116440,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__latex_span_start] = ACTIONS(4635), [sym__single_quote_open] = ACTIONS(4635), [sym__double_quote_open] = ACTIONS(4635), + [sym__double_quote_close] = ACTIONS(4635), [sym__superscript_open] = ACTIONS(4635), [sym__subscript_open] = ACTIONS(4635), - [sym__subscript_close] = ACTIONS(4635), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4635), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4635), [sym__cite_author_in_text] = ACTIONS(4635), @@ -116722,7 +116453,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4635), [sym__strong_emphasis_open_underscore] = ACTIONS(4635), }, - [STATE(1018)] = { + [STATE(1014)] = { + [ts_builtin_sym_end] = ACTIONS(4563), + [sym__backslash_escape] = ACTIONS(4563), + [sym_entity_reference] = ACTIONS(4563), + [sym_numeric_character_reference] = ACTIONS(4563), + [anon_sym_LT] = ACTIONS(4565), + [anon_sym_GT] = ACTIONS(4563), + [anon_sym_BANG] = ACTIONS(4563), + [anon_sym_DQUOTE] = ACTIONS(4563), + [anon_sym_POUND] = ACTIONS(4563), + [anon_sym_DOLLAR] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_AMP] = ACTIONS(4565), + [anon_sym_SQUOTE] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_COMMA] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4565), + [anon_sym_DOT] = ACTIONS(4565), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_COLON] = ACTIONS(4563), + [anon_sym_SEMI] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_BSLASH] = ACTIONS(4565), + [anon_sym_CARET] = ACTIONS(4565), + [anon_sym_BQUOTE] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4563), + [anon_sym_PIPE] = ACTIONS(4563), + [anon_sym_TILDE] = ACTIONS(4563), + [anon_sym_LPAREN] = ACTIONS(4563), + [anon_sym_RPAREN] = ACTIONS(4563), + [sym__newline_token] = ACTIONS(4563), + [aux_sym_insert_token1] = ACTIONS(4563), + [aux_sym_delete_token1] = ACTIONS(4563), + [aux_sym_highlight_token1] = ACTIONS(4563), + [aux_sym_edit_comment_token1] = ACTIONS(4563), + [anon_sym_CARET_LBRACK] = ACTIONS(4563), + [anon_sym_LBRACK_CARET] = ACTIONS(4563), + [sym_uri_autolink] = ACTIONS(4563), + [sym_email_autolink] = ACTIONS(4563), + [sym__whitespace_ge_2] = ACTIONS(4563), + [aux_sym__whitespace_token1] = ACTIONS(4565), + [sym__word_no_digit] = ACTIONS(4563), + [sym__digits] = ACTIONS(4563), + [anon_sym_DASH_DASH] = ACTIONS(4565), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4563), + [sym__code_span_start] = ACTIONS(4563), + [sym__emphasis_open_star] = ACTIONS(4563), + [sym__emphasis_open_underscore] = ACTIONS(4563), + [sym__strikeout_open] = ACTIONS(4563), + [sym__latex_span_start] = ACTIONS(4563), + [sym__single_quote_open] = ACTIONS(4563), + [sym__double_quote_open] = ACTIONS(4563), + [sym__superscript_open] = ACTIONS(4563), + [sym__subscript_open] = ACTIONS(4563), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4563), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4563), + [sym__cite_author_in_text] = ACTIONS(4563), + [sym__cite_suppress_author] = ACTIONS(4563), + [sym__shortcode_open_escaped] = ACTIONS(4563), + [sym__shortcode_open] = ACTIONS(4563), + [sym__unclosed_span] = ACTIONS(4563), + [sym__strong_emphasis_open_star] = ACTIONS(4563), + [sym__strong_emphasis_open_underscore] = ACTIONS(4563), + }, + [STATE(1015)] = { [sym__backslash_escape] = ACTIONS(4639), [sym_entity_reference] = ACTIONS(4639), [sym_numeric_character_reference] = ACTIONS(4639), @@ -116776,8 +116574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__latex_span_start] = ACTIONS(4639), [sym__single_quote_open] = ACTIONS(4639), [sym__double_quote_open] = ACTIONS(4639), - [sym__double_quote_close] = ACTIONS(4639), [sym__superscript_open] = ACTIONS(4639), + [sym__superscript_close] = ACTIONS(4639), [sym__subscript_open] = ACTIONS(4639), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4639), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4639), @@ -116789,74 +116587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4639), [sym__strong_emphasis_open_underscore] = ACTIONS(4639), }, - [STATE(1019)] = { - [ts_builtin_sym_end] = ACTIONS(4567), - [sym__backslash_escape] = ACTIONS(4567), - [sym_entity_reference] = ACTIONS(4567), - [sym_numeric_character_reference] = ACTIONS(4567), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4567), - [anon_sym_BANG] = ACTIONS(4567), - [anon_sym_DQUOTE] = ACTIONS(4567), - [anon_sym_POUND] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_COLON] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_QMARK] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4569), - [anon_sym_BSLASH] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym_BQUOTE] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_PIPE] = ACTIONS(4567), - [anon_sym_TILDE] = ACTIONS(4567), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [sym__newline_token] = ACTIONS(4567), - [aux_sym_insert_token1] = ACTIONS(4567), - [aux_sym_delete_token1] = ACTIONS(4567), - [aux_sym_highlight_token1] = ACTIONS(4567), - [aux_sym_edit_comment_token1] = ACTIONS(4567), - [anon_sym_CARET_LBRACK] = ACTIONS(4567), - [anon_sym_LBRACK_CARET] = ACTIONS(4567), - [sym_uri_autolink] = ACTIONS(4567), - [sym_email_autolink] = ACTIONS(4567), - [sym__whitespace_ge_2] = ACTIONS(4567), - [aux_sym__whitespace_token1] = ACTIONS(4569), - [sym__word_no_digit] = ACTIONS(4567), - [sym__digits] = ACTIONS(4567), - [anon_sym_DASH_DASH] = ACTIONS(4569), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), - [sym__code_span_start] = ACTIONS(4567), - [sym__emphasis_open_star] = ACTIONS(4567), - [sym__emphasis_open_underscore] = ACTIONS(4567), - [sym__strikeout_open] = ACTIONS(4567), - [sym__latex_span_start] = ACTIONS(4567), - [sym__single_quote_open] = ACTIONS(4567), - [sym__double_quote_open] = ACTIONS(4567), - [sym__superscript_open] = ACTIONS(4567), - [sym__subscript_open] = ACTIONS(4567), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), - [sym__cite_author_in_text] = ACTIONS(4567), - [sym__cite_suppress_author] = ACTIONS(4567), - [sym__shortcode_open_escaped] = ACTIONS(4567), - [sym__shortcode_open] = ACTIONS(4567), - [sym__unclosed_span] = ACTIONS(4567), - [sym__strong_emphasis_open_star] = ACTIONS(4567), - [sym__strong_emphasis_open_underscore] = ACTIONS(4567), - }, - [STATE(1020)] = { + [STATE(1016)] = { [sym__backslash_escape] = ACTIONS(4643), [sym_entity_reference] = ACTIONS(4643), [sym_numeric_character_reference] = ACTIONS(4643), @@ -116911,8 +116642,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__single_quote_open] = ACTIONS(4643), [sym__double_quote_open] = ACTIONS(4643), [sym__superscript_open] = ACTIONS(4643), - [sym__superscript_close] = ACTIONS(4643), [sym__subscript_open] = ACTIONS(4643), + [sym__subscript_close] = ACTIONS(4643), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4643), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4643), [sym__cite_author_in_text] = ACTIONS(4643), @@ -116923,7 +116654,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4643), [sym__strong_emphasis_open_underscore] = ACTIONS(4643), }, - [STATE(1021)] = { + [STATE(1017)] = { + [sym__backslash_escape] = ACTIONS(4181), + [sym_entity_reference] = ACTIONS(4181), + [sym_numeric_character_reference] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4181), + [anon_sym_DQUOTE] = ACTIONS(4181), + [anon_sym_POUND] = ACTIONS(4181), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_PERCENT] = ACTIONS(4181), + [anon_sym_AMP] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_EQ] = ACTIONS(4181), + [anon_sym_QMARK] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(4183), + [anon_sym_BSLASH] = ACTIONS(4183), + [anon_sym_CARET] = ACTIONS(4183), + [anon_sym_BQUOTE] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_TILDE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(4181), + [sym__newline_token] = ACTIONS(4181), + [aux_sym_insert_token1] = ACTIONS(4181), + [aux_sym_delete_token1] = ACTIONS(4181), + [aux_sym_highlight_token1] = ACTIONS(4181), + [aux_sym_edit_comment_token1] = ACTIONS(4181), + [anon_sym_CARET_LBRACK] = ACTIONS(4181), + [anon_sym_LBRACK_CARET] = ACTIONS(4181), + [sym_uri_autolink] = ACTIONS(4181), + [sym_email_autolink] = ACTIONS(4181), + [sym__whitespace_ge_2] = ACTIONS(4181), + [aux_sym__whitespace_token1] = ACTIONS(4183), + [sym__word_no_digit] = ACTIONS(4181), + [sym__digits] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4183), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4181), + [sym__code_span_start] = ACTIONS(4181), + [sym__emphasis_open_star] = ACTIONS(4181), + [sym__emphasis_open_underscore] = ACTIONS(4181), + [sym__strikeout_open] = ACTIONS(4181), + [sym__latex_span_start] = ACTIONS(4181), + [sym__single_quote_open] = ACTIONS(4181), + [sym__double_quote_open] = ACTIONS(4181), + [sym__superscript_open] = ACTIONS(4181), + [sym__subscript_open] = ACTIONS(4181), + [sym__subscript_close] = ACTIONS(4181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4181), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4181), + [sym__cite_author_in_text] = ACTIONS(4181), + [sym__cite_suppress_author] = ACTIONS(4181), + [sym__shortcode_open_escaped] = ACTIONS(4181), + [sym__shortcode_open] = ACTIONS(4181), + [sym__unclosed_span] = ACTIONS(4181), + [sym__strong_emphasis_open_star] = ACTIONS(4181), + [sym__strong_emphasis_open_underscore] = ACTIONS(4181), + }, + [STATE(1018)] = { [sym__backslash_escape] = ACTIONS(4647), [sym_entity_reference] = ACTIONS(4647), [sym_numeric_character_reference] = ACTIONS(4647), @@ -116990,74 +116788,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4647), [sym__strong_emphasis_open_underscore] = ACTIONS(4647), }, - [STATE(1022)] = { - [sym__backslash_escape] = ACTIONS(4181), - [sym_entity_reference] = ACTIONS(4181), - [sym_numeric_character_reference] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4181), - [anon_sym_POUND] = ACTIONS(4181), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_AMP] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_COLON] = ACTIONS(4181), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_QMARK] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_BSLASH] = ACTIONS(4183), - [anon_sym_CARET] = ACTIONS(4183), - [anon_sym_BQUOTE] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4181), - [anon_sym_PIPE] = ACTIONS(4181), - [anon_sym_TILDE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_RPAREN] = ACTIONS(4181), - [sym__newline_token] = ACTIONS(4181), - [aux_sym_insert_token1] = ACTIONS(4181), - [aux_sym_delete_token1] = ACTIONS(4181), - [aux_sym_highlight_token1] = ACTIONS(4181), - [aux_sym_edit_comment_token1] = ACTIONS(4181), - [anon_sym_CARET_LBRACK] = ACTIONS(4181), - [anon_sym_LBRACK_CARET] = ACTIONS(4181), - [sym_uri_autolink] = ACTIONS(4181), - [sym_email_autolink] = ACTIONS(4181), - [sym__whitespace_ge_2] = ACTIONS(4181), - [aux_sym__whitespace_token1] = ACTIONS(4183), - [sym__word_no_digit] = ACTIONS(4181), - [sym__digits] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4183), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4181), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4181), - [sym__code_span_start] = ACTIONS(4181), - [sym__emphasis_open_star] = ACTIONS(4181), - [sym__emphasis_open_underscore] = ACTIONS(4181), - [sym__strikeout_open] = ACTIONS(4181), - [sym__latex_span_start] = ACTIONS(4181), - [sym__single_quote_open] = ACTIONS(4181), - [sym__double_quote_open] = ACTIONS(4181), - [sym__superscript_open] = ACTIONS(4181), - [sym__subscript_open] = ACTIONS(4181), - [sym__subscript_close] = ACTIONS(4181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4181), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4181), - [sym__cite_author_in_text] = ACTIONS(4181), - [sym__cite_suppress_author] = ACTIONS(4181), - [sym__shortcode_open_escaped] = ACTIONS(4181), - [sym__shortcode_open] = ACTIONS(4181), - [sym__unclosed_span] = ACTIONS(4181), - [sym__strong_emphasis_open_star] = ACTIONS(4181), - [sym__strong_emphasis_open_underscore] = ACTIONS(4181), + [STATE(1019)] = { + [ts_builtin_sym_end] = ACTIONS(4225), + [sym__backslash_escape] = ACTIONS(4225), + [sym_entity_reference] = ACTIONS(4225), + [sym_numeric_character_reference] = ACTIONS(4225), + [anon_sym_LT] = ACTIONS(4227), + [anon_sym_GT] = ACTIONS(4225), + [anon_sym_BANG] = ACTIONS(4225), + [anon_sym_DQUOTE] = ACTIONS(4225), + [anon_sym_POUND] = ACTIONS(4225), + [anon_sym_DOLLAR] = ACTIONS(4225), + [anon_sym_PERCENT] = ACTIONS(4225), + [anon_sym_AMP] = ACTIONS(4227), + [anon_sym_SQUOTE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_DOT] = ACTIONS(4227), + [anon_sym_SLASH] = ACTIONS(4225), + [anon_sym_COLON] = ACTIONS(4225), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_EQ] = ACTIONS(4225), + [anon_sym_QMARK] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4227), + [anon_sym_BSLASH] = ACTIONS(4227), + [anon_sym_CARET] = ACTIONS(4227), + [anon_sym_BQUOTE] = ACTIONS(4225), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_TILDE] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_RPAREN] = ACTIONS(4225), + [sym__newline_token] = ACTIONS(4225), + [aux_sym_insert_token1] = ACTIONS(4225), + [aux_sym_delete_token1] = ACTIONS(4225), + [aux_sym_highlight_token1] = ACTIONS(4225), + [aux_sym_edit_comment_token1] = ACTIONS(4225), + [anon_sym_CARET_LBRACK] = ACTIONS(4225), + [anon_sym_LBRACK_CARET] = ACTIONS(4225), + [sym_uri_autolink] = ACTIONS(4225), + [sym_email_autolink] = ACTIONS(4225), + [sym__whitespace_ge_2] = ACTIONS(4225), + [aux_sym__whitespace_token1] = ACTIONS(4227), + [sym__word_no_digit] = ACTIONS(4225), + [sym__digits] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4227), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4225), + [sym__code_span_start] = ACTIONS(4225), + [sym__emphasis_open_star] = ACTIONS(4225), + [sym__emphasis_open_underscore] = ACTIONS(4225), + [sym__strikeout_open] = ACTIONS(4225), + [sym__latex_span_start] = ACTIONS(4225), + [sym__single_quote_open] = ACTIONS(4225), + [sym__double_quote_open] = ACTIONS(4225), + [sym__superscript_open] = ACTIONS(4225), + [sym__subscript_open] = ACTIONS(4225), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4225), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4225), + [sym__cite_author_in_text] = ACTIONS(4225), + [sym__cite_suppress_author] = ACTIONS(4225), + [sym__shortcode_open_escaped] = ACTIONS(4225), + [sym__shortcode_open] = ACTIONS(4225), + [sym__unclosed_span] = ACTIONS(4225), + [sym__strong_emphasis_open_star] = ACTIONS(4225), + [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, - [STATE(1023)] = { + [STATE(1020)] = { [sym__backslash_escape] = ACTIONS(4651), [sym_entity_reference] = ACTIONS(4651), [sym_numeric_character_reference] = ACTIONS(4651), @@ -117124,7 +116922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4651), [sym__strong_emphasis_open_underscore] = ACTIONS(4651), }, - [STATE(1024)] = { + [STATE(1021)] = { [sym__backslash_escape] = ACTIONS(4655), [sym_entity_reference] = ACTIONS(4655), [sym_numeric_character_reference] = ACTIONS(4655), @@ -117191,7 +116989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4655), [sym__strong_emphasis_open_underscore] = ACTIONS(4655), }, - [STATE(1025)] = { + [STATE(1022)] = { [sym__backslash_escape] = ACTIONS(4659), [sym_entity_reference] = ACTIONS(4659), [sym_numeric_character_reference] = ACTIONS(4659), @@ -117258,7 +117056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4659), [sym__strong_emphasis_open_underscore] = ACTIONS(4659), }, - [STATE(1026)] = { + [STATE(1023)] = { [sym__backslash_escape] = ACTIONS(4663), [sym_entity_reference] = ACTIONS(4663), [sym_numeric_character_reference] = ACTIONS(4663), @@ -117325,7 +117123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4663), [sym__strong_emphasis_open_underscore] = ACTIONS(4663), }, - [STATE(1027)] = { + [STATE(1024)] = { [sym__backslash_escape] = ACTIONS(4667), [sym_entity_reference] = ACTIONS(4667), [sym_numeric_character_reference] = ACTIONS(4667), @@ -117392,7 +117190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4667), [sym__strong_emphasis_open_underscore] = ACTIONS(4667), }, - [STATE(1028)] = { + [STATE(1025)] = { [sym__backslash_escape] = ACTIONS(4671), [sym_entity_reference] = ACTIONS(4671), [sym_numeric_character_reference] = ACTIONS(4671), @@ -117459,7 +117257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4671), [sym__strong_emphasis_open_underscore] = ACTIONS(4671), }, - [STATE(1029)] = { + [STATE(1026)] = { [sym__backslash_escape] = ACTIONS(4675), [sym_entity_reference] = ACTIONS(4675), [sym_numeric_character_reference] = ACTIONS(4675), @@ -117526,7 +117324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4675), [sym__strong_emphasis_open_underscore] = ACTIONS(4675), }, - [STATE(1030)] = { + [STATE(1027)] = { [sym__backslash_escape] = ACTIONS(4679), [sym_entity_reference] = ACTIONS(4679), [sym_numeric_character_reference] = ACTIONS(4679), @@ -117593,7 +117391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4679), [sym__strong_emphasis_open_underscore] = ACTIONS(4679), }, - [STATE(1031)] = { + [STATE(1028)] = { [sym__backslash_escape] = ACTIONS(4683), [sym_entity_reference] = ACTIONS(4683), [sym_numeric_character_reference] = ACTIONS(4683), @@ -117660,7 +117458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4683), [sym__strong_emphasis_open_underscore] = ACTIONS(4683), }, - [STATE(1032)] = { + [STATE(1029)] = { [sym__backslash_escape] = ACTIONS(4687), [sym_entity_reference] = ACTIONS(4687), [sym_numeric_character_reference] = ACTIONS(4687), @@ -117727,7 +117525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4687), [sym__strong_emphasis_open_underscore] = ACTIONS(4687), }, - [STATE(1033)] = { + [STATE(1030)] = { [sym__backslash_escape] = ACTIONS(4691), [sym_entity_reference] = ACTIONS(4691), [sym_numeric_character_reference] = ACTIONS(4691), @@ -117794,7 +117592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4691), [sym__strong_emphasis_open_underscore] = ACTIONS(4691), }, - [STATE(1034)] = { + [STATE(1031)] = { [sym__backslash_escape] = ACTIONS(4695), [sym_entity_reference] = ACTIONS(4695), [sym_numeric_character_reference] = ACTIONS(4695), @@ -117861,7 +117659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4695), [sym__strong_emphasis_open_underscore] = ACTIONS(4695), }, - [STATE(1035)] = { + [STATE(1032)] = { [sym__backslash_escape] = ACTIONS(4699), [sym_entity_reference] = ACTIONS(4699), [sym_numeric_character_reference] = ACTIONS(4699), @@ -117928,7 +117726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4699), [sym__strong_emphasis_open_underscore] = ACTIONS(4699), }, - [STATE(1036)] = { + [STATE(1033)] = { [sym__backslash_escape] = ACTIONS(4703), [sym_entity_reference] = ACTIONS(4703), [sym_numeric_character_reference] = ACTIONS(4703), @@ -117995,7 +117793,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4703), [sym__strong_emphasis_open_underscore] = ACTIONS(4703), }, - [STATE(1037)] = { + [STATE(1034)] = { + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__subscript_close] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + }, + [STATE(1035)] = { + [ts_builtin_sym_end] = ACTIONS(4631), + [sym__backslash_escape] = ACTIONS(4631), + [sym_entity_reference] = ACTIONS(4631), + [sym_numeric_character_reference] = ACTIONS(4631), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(4631), + [anon_sym_POUND] = ACTIONS(4631), + [anon_sym_DOLLAR] = ACTIONS(4631), + [anon_sym_PERCENT] = ACTIONS(4631), + [anon_sym_AMP] = ACTIONS(4633), + [anon_sym_SQUOTE] = ACTIONS(4631), + [anon_sym_PLUS] = ACTIONS(4631), + [anon_sym_COMMA] = ACTIONS(4631), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4631), + [anon_sym_COLON] = ACTIONS(4631), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_EQ] = ACTIONS(4631), + [anon_sym_QMARK] = ACTIONS(4631), + [anon_sym_LBRACK] = ACTIONS(4633), + [anon_sym_BSLASH] = ACTIONS(4633), + [anon_sym_CARET] = ACTIONS(4633), + [anon_sym_BQUOTE] = ACTIONS(4631), + [anon_sym_LBRACE] = ACTIONS(4631), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_TILDE] = ACTIONS(4631), + [anon_sym_LPAREN] = ACTIONS(4631), + [anon_sym_RPAREN] = ACTIONS(4631), + [sym__newline_token] = ACTIONS(4631), + [aux_sym_insert_token1] = ACTIONS(4631), + [aux_sym_delete_token1] = ACTIONS(4631), + [aux_sym_highlight_token1] = ACTIONS(4631), + [aux_sym_edit_comment_token1] = ACTIONS(4631), + [anon_sym_CARET_LBRACK] = ACTIONS(4631), + [anon_sym_LBRACK_CARET] = ACTIONS(4631), + [sym_uri_autolink] = ACTIONS(4631), + [sym_email_autolink] = ACTIONS(4631), + [sym__whitespace_ge_2] = ACTIONS(4631), + [aux_sym__whitespace_token1] = ACTIONS(4633), + [sym__word_no_digit] = ACTIONS(4631), + [sym__digits] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4633), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4631), + [sym__code_span_start] = ACTIONS(4631), + [sym__emphasis_open_star] = ACTIONS(4631), + [sym__emphasis_open_underscore] = ACTIONS(4631), + [sym__strikeout_open] = ACTIONS(4631), + [sym__latex_span_start] = ACTIONS(4631), + [sym__single_quote_open] = ACTIONS(4631), + [sym__double_quote_open] = ACTIONS(4631), + [sym__superscript_open] = ACTIONS(4631), + [sym__subscript_open] = ACTIONS(4631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4631), + [sym__cite_author_in_text] = ACTIONS(4631), + [sym__cite_suppress_author] = ACTIONS(4631), + [sym__shortcode_open_escaped] = ACTIONS(4631), + [sym__shortcode_open] = ACTIONS(4631), + [sym__unclosed_span] = ACTIONS(4631), + [sym__strong_emphasis_open_star] = ACTIONS(4631), + [sym__strong_emphasis_open_underscore] = ACTIONS(4631), + }, + [STATE(1036)] = { [sym__backslash_escape] = ACTIONS(4707), [sym_entity_reference] = ACTIONS(4707), [sym_numeric_character_reference] = ACTIONS(4707), @@ -118062,141 +117994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4707), [sym__strong_emphasis_open_underscore] = ACTIONS(4707), }, - [STATE(1038)] = { - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__subscript_close] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - }, - [STATE(1039)] = { - [ts_builtin_sym_end] = ACTIONS(4225), - [sym__backslash_escape] = ACTIONS(4225), - [sym_entity_reference] = ACTIONS(4225), - [sym_numeric_character_reference] = ACTIONS(4225), - [anon_sym_LT] = ACTIONS(4227), - [anon_sym_GT] = ACTIONS(4225), - [anon_sym_BANG] = ACTIONS(4225), - [anon_sym_DQUOTE] = ACTIONS(4225), - [anon_sym_POUND] = ACTIONS(4225), - [anon_sym_DOLLAR] = ACTIONS(4225), - [anon_sym_PERCENT] = ACTIONS(4225), - [anon_sym_AMP] = ACTIONS(4227), - [anon_sym_SQUOTE] = ACTIONS(4225), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_COMMA] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4227), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_SLASH] = ACTIONS(4225), - [anon_sym_COLON] = ACTIONS(4225), - [anon_sym_SEMI] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_QMARK] = ACTIONS(4225), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_BSLASH] = ACTIONS(4227), - [anon_sym_CARET] = ACTIONS(4227), - [anon_sym_BQUOTE] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4225), - [anon_sym_PIPE] = ACTIONS(4225), - [anon_sym_TILDE] = ACTIONS(4225), - [anon_sym_LPAREN] = ACTIONS(4225), - [anon_sym_RPAREN] = ACTIONS(4225), - [sym__newline_token] = ACTIONS(4225), - [aux_sym_insert_token1] = ACTIONS(4225), - [aux_sym_delete_token1] = ACTIONS(4225), - [aux_sym_highlight_token1] = ACTIONS(4225), - [aux_sym_edit_comment_token1] = ACTIONS(4225), - [anon_sym_CARET_LBRACK] = ACTIONS(4225), - [anon_sym_LBRACK_CARET] = ACTIONS(4225), - [sym_uri_autolink] = ACTIONS(4225), - [sym_email_autolink] = ACTIONS(4225), - [sym__whitespace_ge_2] = ACTIONS(4225), - [aux_sym__whitespace_token1] = ACTIONS(4227), - [sym__word_no_digit] = ACTIONS(4225), - [sym__digits] = ACTIONS(4225), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4225), - [sym__code_span_start] = ACTIONS(4225), - [sym__emphasis_open_star] = ACTIONS(4225), - [sym__emphasis_open_underscore] = ACTIONS(4225), - [sym__strikeout_open] = ACTIONS(4225), - [sym__latex_span_start] = ACTIONS(4225), - [sym__single_quote_open] = ACTIONS(4225), - [sym__double_quote_open] = ACTIONS(4225), - [sym__superscript_open] = ACTIONS(4225), - [sym__subscript_open] = ACTIONS(4225), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4225), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4225), - [sym__cite_author_in_text] = ACTIONS(4225), - [sym__cite_suppress_author] = ACTIONS(4225), - [sym__shortcode_open_escaped] = ACTIONS(4225), - [sym__shortcode_open] = ACTIONS(4225), - [sym__unclosed_span] = ACTIONS(4225), - [sym__strong_emphasis_open_star] = ACTIONS(4225), - [sym__strong_emphasis_open_underscore] = ACTIONS(4225), - }, - [STATE(1040)] = { + [STATE(1037)] = { [sym__backslash_escape] = ACTIONS(4711), [sym_entity_reference] = ACTIONS(4711), [sym_numeric_character_reference] = ACTIONS(4711), @@ -118263,74 +118061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4711), [sym__strong_emphasis_open_underscore] = ACTIONS(4711), }, - [STATE(1041)] = { - [ts_builtin_sym_end] = ACTIONS(4635), - [sym__backslash_escape] = ACTIONS(4635), - [sym_entity_reference] = ACTIONS(4635), - [sym_numeric_character_reference] = ACTIONS(4635), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4635), - [anon_sym_BANG] = ACTIONS(4635), - [anon_sym_DQUOTE] = ACTIONS(4635), - [anon_sym_POUND] = ACTIONS(4635), - [anon_sym_DOLLAR] = ACTIONS(4635), - [anon_sym_PERCENT] = ACTIONS(4635), - [anon_sym_AMP] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4635), - [anon_sym_PLUS] = ACTIONS(4635), - [anon_sym_COMMA] = ACTIONS(4635), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4635), - [anon_sym_COLON] = ACTIONS(4635), - [anon_sym_SEMI] = ACTIONS(4635), - [anon_sym_EQ] = ACTIONS(4635), - [anon_sym_QMARK] = ACTIONS(4635), - [anon_sym_LBRACK] = ACTIONS(4637), - [anon_sym_BSLASH] = ACTIONS(4637), - [anon_sym_CARET] = ACTIONS(4637), - [anon_sym_BQUOTE] = ACTIONS(4635), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4635), - [anon_sym_TILDE] = ACTIONS(4635), - [anon_sym_LPAREN] = ACTIONS(4635), - [anon_sym_RPAREN] = ACTIONS(4635), - [sym__newline_token] = ACTIONS(4635), - [aux_sym_insert_token1] = ACTIONS(4635), - [aux_sym_delete_token1] = ACTIONS(4635), - [aux_sym_highlight_token1] = ACTIONS(4635), - [aux_sym_edit_comment_token1] = ACTIONS(4635), - [anon_sym_CARET_LBRACK] = ACTIONS(4635), - [anon_sym_LBRACK_CARET] = ACTIONS(4635), - [sym_uri_autolink] = ACTIONS(4635), - [sym_email_autolink] = ACTIONS(4635), - [sym__whitespace_ge_2] = ACTIONS(4635), - [aux_sym__whitespace_token1] = ACTIONS(4637), - [sym__word_no_digit] = ACTIONS(4635), - [sym__digits] = ACTIONS(4635), - [anon_sym_DASH_DASH] = ACTIONS(4637), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4635), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4635), - [sym__code_span_start] = ACTIONS(4635), - [sym__emphasis_open_star] = ACTIONS(4635), - [sym__emphasis_open_underscore] = ACTIONS(4635), - [sym__strikeout_open] = ACTIONS(4635), - [sym__latex_span_start] = ACTIONS(4635), - [sym__single_quote_open] = ACTIONS(4635), - [sym__double_quote_open] = ACTIONS(4635), - [sym__superscript_open] = ACTIONS(4635), - [sym__subscript_open] = ACTIONS(4635), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4635), - [sym__cite_author_in_text] = ACTIONS(4635), - [sym__cite_suppress_author] = ACTIONS(4635), - [sym__shortcode_open_escaped] = ACTIONS(4635), - [sym__shortcode_open] = ACTIONS(4635), - [sym__unclosed_span] = ACTIONS(4635), - [sym__strong_emphasis_open_star] = ACTIONS(4635), - [sym__strong_emphasis_open_underscore] = ACTIONS(4635), - }, - [STATE(1042)] = { + [STATE(1038)] = { [sym__backslash_escape] = ACTIONS(4715), [sym_entity_reference] = ACTIONS(4715), [sym_numeric_character_reference] = ACTIONS(4715), @@ -118397,74 +118128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4715), [sym__strong_emphasis_open_underscore] = ACTIONS(4715), }, - [STATE(1043)] = { - [sym__backslash_escape] = ACTIONS(4719), - [sym_entity_reference] = ACTIONS(4719), - [sym_numeric_character_reference] = ACTIONS(4719), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(4719), - [anon_sym_DQUOTE] = ACTIONS(4719), - [anon_sym_POUND] = ACTIONS(4719), - [anon_sym_DOLLAR] = ACTIONS(4719), - [anon_sym_PERCENT] = ACTIONS(4719), - [anon_sym_AMP] = ACTIONS(4721), - [anon_sym_SQUOTE] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_SLASH] = ACTIONS(4719), - [anon_sym_COLON] = ACTIONS(4719), - [anon_sym_SEMI] = ACTIONS(4719), - [anon_sym_EQ] = ACTIONS(4719), - [anon_sym_QMARK] = ACTIONS(4719), - [anon_sym_LBRACK] = ACTIONS(4721), - [anon_sym_BSLASH] = ACTIONS(4721), - [anon_sym_CARET] = ACTIONS(4721), - [anon_sym_BQUOTE] = ACTIONS(4719), - [anon_sym_LBRACE] = ACTIONS(4719), - [anon_sym_PIPE] = ACTIONS(4719), - [anon_sym_TILDE] = ACTIONS(4719), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_RPAREN] = ACTIONS(4719), - [sym__newline_token] = ACTIONS(4719), - [aux_sym_insert_token1] = ACTIONS(4719), - [aux_sym_delete_token1] = ACTIONS(4719), - [aux_sym_highlight_token1] = ACTIONS(4719), - [aux_sym_edit_comment_token1] = ACTIONS(4719), - [anon_sym_CARET_LBRACK] = ACTIONS(4719), - [anon_sym_LBRACK_CARET] = ACTIONS(4719), - [sym_uri_autolink] = ACTIONS(4719), - [sym_email_autolink] = ACTIONS(4719), - [sym__whitespace_ge_2] = ACTIONS(4719), - [aux_sym__whitespace_token1] = ACTIONS(4721), - [sym__word_no_digit] = ACTIONS(4719), - [sym__digits] = ACTIONS(4719), - [anon_sym_DASH_DASH] = ACTIONS(4721), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4719), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4719), - [sym__code_span_start] = ACTIONS(4719), - [sym__emphasis_open_star] = ACTIONS(4719), - [sym__emphasis_open_underscore] = ACTIONS(4719), - [sym__strikeout_open] = ACTIONS(4719), - [sym__latex_span_start] = ACTIONS(4719), - [sym__single_quote_open] = ACTIONS(4719), - [sym__double_quote_open] = ACTIONS(4719), - [sym__superscript_open] = ACTIONS(4719), - [sym__subscript_open] = ACTIONS(4719), - [sym__subscript_close] = ACTIONS(4719), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4719), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4719), - [sym__cite_author_in_text] = ACTIONS(4719), - [sym__cite_suppress_author] = ACTIONS(4719), - [sym__shortcode_open_escaped] = ACTIONS(4719), - [sym__shortcode_open] = ACTIONS(4719), - [sym__unclosed_span] = ACTIONS(4719), - [sym__strong_emphasis_open_star] = ACTIONS(4719), - [sym__strong_emphasis_open_underscore] = ACTIONS(4719), - }, - [STATE(1044)] = { + [STATE(1039)] = { [ts_builtin_sym_end] = ACTIONS(4229), [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), @@ -118531,74 +118195,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4229), [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, - [STATE(1045)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__subscript_close] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), + [STATE(1040)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__subscript_close] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), }, - [STATE(1046)] = { + [STATE(1041)] = { + [sym__backslash_escape] = ACTIONS(4719), + [sym_entity_reference] = ACTIONS(4719), + [sym_numeric_character_reference] = ACTIONS(4719), + [anon_sym_LT] = ACTIONS(4721), + [anon_sym_GT] = ACTIONS(4719), + [anon_sym_BANG] = ACTIONS(4719), + [anon_sym_DQUOTE] = ACTIONS(4719), + [anon_sym_POUND] = ACTIONS(4719), + [anon_sym_DOLLAR] = ACTIONS(4719), + [anon_sym_PERCENT] = ACTIONS(4719), + [anon_sym_AMP] = ACTIONS(4721), + [anon_sym_SQUOTE] = ACTIONS(4719), + [anon_sym_PLUS] = ACTIONS(4719), + [anon_sym_COMMA] = ACTIONS(4719), + [anon_sym_DASH] = ACTIONS(4721), + [anon_sym_DOT] = ACTIONS(4721), + [anon_sym_SLASH] = ACTIONS(4719), + [anon_sym_COLON] = ACTIONS(4719), + [anon_sym_SEMI] = ACTIONS(4719), + [anon_sym_EQ] = ACTIONS(4719), + [anon_sym_QMARK] = ACTIONS(4719), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_BSLASH] = ACTIONS(4721), + [anon_sym_CARET] = ACTIONS(4721), + [anon_sym_BQUOTE] = ACTIONS(4719), + [anon_sym_LBRACE] = ACTIONS(4719), + [anon_sym_PIPE] = ACTIONS(4719), + [anon_sym_TILDE] = ACTIONS(4719), + [anon_sym_LPAREN] = ACTIONS(4719), + [anon_sym_RPAREN] = ACTIONS(4719), + [sym__newline_token] = ACTIONS(4719), + [aux_sym_insert_token1] = ACTIONS(4719), + [aux_sym_delete_token1] = ACTIONS(4719), + [aux_sym_highlight_token1] = ACTIONS(4719), + [aux_sym_edit_comment_token1] = ACTIONS(4719), + [anon_sym_CARET_LBRACK] = ACTIONS(4719), + [anon_sym_LBRACK_CARET] = ACTIONS(4719), + [sym_uri_autolink] = ACTIONS(4719), + [sym_email_autolink] = ACTIONS(4719), + [sym__whitespace_ge_2] = ACTIONS(4719), + [aux_sym__whitespace_token1] = ACTIONS(4721), + [sym__word_no_digit] = ACTIONS(4719), + [sym__digits] = ACTIONS(4719), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4719), + [sym__code_span_start] = ACTIONS(4719), + [sym__emphasis_open_star] = ACTIONS(4719), + [sym__emphasis_open_underscore] = ACTIONS(4719), + [sym__strikeout_open] = ACTIONS(4719), + [sym__latex_span_start] = ACTIONS(4719), + [sym__single_quote_open] = ACTIONS(4719), + [sym__double_quote_open] = ACTIONS(4719), + [sym__superscript_open] = ACTIONS(4719), + [sym__subscript_open] = ACTIONS(4719), + [sym__subscript_close] = ACTIONS(4719), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4719), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4719), + [sym__cite_author_in_text] = ACTIONS(4719), + [sym__cite_suppress_author] = ACTIONS(4719), + [sym__shortcode_open_escaped] = ACTIONS(4719), + [sym__shortcode_open] = ACTIONS(4719), + [sym__unclosed_span] = ACTIONS(4719), + [sym__strong_emphasis_open_star] = ACTIONS(4719), + [sym__strong_emphasis_open_underscore] = ACTIONS(4719), + }, + [STATE(1042)] = { [sym__backslash_escape] = ACTIONS(4723), [sym_entity_reference] = ACTIONS(4723), [sym_numeric_character_reference] = ACTIONS(4723), @@ -118665,7 +118396,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4723), [sym__strong_emphasis_open_underscore] = ACTIONS(4723), }, - [STATE(1047)] = { + [STATE(1043)] = { + [sym__backslash_escape] = ACTIONS(4527), + [sym_entity_reference] = ACTIONS(4527), + [sym_numeric_character_reference] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_POUND] = ACTIONS(4527), + [anon_sym_DOLLAR] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_BSLASH] = ACTIONS(4529), + [anon_sym_CARET] = ACTIONS(4529), + [anon_sym_BQUOTE] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_RPAREN] = ACTIONS(4527), + [sym__newline_token] = ACTIONS(4527), + [aux_sym_insert_token1] = ACTIONS(4527), + [aux_sym_delete_token1] = ACTIONS(4527), + [aux_sym_highlight_token1] = ACTIONS(4527), + [aux_sym_edit_comment_token1] = ACTIONS(4527), + [anon_sym_CARET_LBRACK] = ACTIONS(4527), + [anon_sym_LBRACK_CARET] = ACTIONS(4527), + [sym_uri_autolink] = ACTIONS(4527), + [sym_email_autolink] = ACTIONS(4527), + [sym__whitespace_ge_2] = ACTIONS(4527), + [aux_sym__whitespace_token1] = ACTIONS(4529), + [sym__word_no_digit] = ACTIONS(4527), + [sym__digits] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), + [sym__code_span_start] = ACTIONS(4527), + [sym__emphasis_open_star] = ACTIONS(4527), + [sym__emphasis_open_underscore] = ACTIONS(4527), + [sym__strikeout_open] = ACTIONS(4527), + [sym__latex_span_start] = ACTIONS(4527), + [sym__single_quote_open] = ACTIONS(4527), + [sym__double_quote_open] = ACTIONS(4527), + [sym__superscript_open] = ACTIONS(4527), + [sym__subscript_open] = ACTIONS(4527), + [sym__subscript_close] = ACTIONS(4527), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), + [sym__cite_author_in_text] = ACTIONS(4527), + [sym__cite_suppress_author] = ACTIONS(4527), + [sym__shortcode_open_escaped] = ACTIONS(4527), + [sym__shortcode_open] = ACTIONS(4527), + [sym__unclosed_span] = ACTIONS(4527), + [sym__strong_emphasis_open_star] = ACTIONS(4527), + [sym__strong_emphasis_open_underscore] = ACTIONS(4527), + }, + [STATE(1044)] = { [sym__backslash_escape] = ACTIONS(4727), [sym_entity_reference] = ACTIONS(4727), [sym_numeric_character_reference] = ACTIONS(4727), @@ -118732,7 +118530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4727), [sym__strong_emphasis_open_underscore] = ACTIONS(4727), }, - [STATE(1048)] = { + [STATE(1045)] = { [sym__backslash_escape] = ACTIONS(4731), [sym_entity_reference] = ACTIONS(4731), [sym_numeric_character_reference] = ACTIONS(4731), @@ -118799,7 +118597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4731), [sym__strong_emphasis_open_underscore] = ACTIONS(4731), }, - [STATE(1049)] = { + [STATE(1046)] = { [sym__backslash_escape] = ACTIONS(4735), [sym_entity_reference] = ACTIONS(4735), [sym_numeric_character_reference] = ACTIONS(4735), @@ -118866,7 +118664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4735), [sym__strong_emphasis_open_underscore] = ACTIONS(4735), }, - [STATE(1050)] = { + [STATE(1047)] = { [sym__backslash_escape] = ACTIONS(4739), [sym_entity_reference] = ACTIONS(4739), [sym_numeric_character_reference] = ACTIONS(4739), @@ -118933,7 +118731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4739), [sym__strong_emphasis_open_underscore] = ACTIONS(4739), }, - [STATE(1051)] = { + [STATE(1048)] = { [sym__backslash_escape] = ACTIONS(4743), [sym_entity_reference] = ACTIONS(4743), [sym_numeric_character_reference] = ACTIONS(4743), @@ -119000,7 +118798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4743), [sym__strong_emphasis_open_underscore] = ACTIONS(4743), }, - [STATE(1052)] = { + [STATE(1049)] = { [sym__backslash_escape] = ACTIONS(4747), [sym_entity_reference] = ACTIONS(4747), [sym_numeric_character_reference] = ACTIONS(4747), @@ -119067,7 +118865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4747), [sym__strong_emphasis_open_underscore] = ACTIONS(4747), }, - [STATE(1053)] = { + [STATE(1050)] = { [sym__backslash_escape] = ACTIONS(4751), [sym_entity_reference] = ACTIONS(4751), [sym_numeric_character_reference] = ACTIONS(4751), @@ -119134,7 +118932,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4751), [sym__strong_emphasis_open_underscore] = ACTIONS(4751), }, - [STATE(1054)] = { + [STATE(1051)] = { + [ts_builtin_sym_end] = ACTIONS(4567), + [sym__backslash_escape] = ACTIONS(4567), + [sym_entity_reference] = ACTIONS(4567), + [sym_numeric_character_reference] = ACTIONS(4567), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_DQUOTE] = ACTIONS(4567), + [anon_sym_POUND] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_BSLASH] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym_BQUOTE] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(4567), + [anon_sym_TILDE] = ACTIONS(4567), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [sym__newline_token] = ACTIONS(4567), + [aux_sym_insert_token1] = ACTIONS(4567), + [aux_sym_delete_token1] = ACTIONS(4567), + [aux_sym_highlight_token1] = ACTIONS(4567), + [aux_sym_edit_comment_token1] = ACTIONS(4567), + [anon_sym_CARET_LBRACK] = ACTIONS(4567), + [anon_sym_LBRACK_CARET] = ACTIONS(4567), + [sym_uri_autolink] = ACTIONS(4567), + [sym_email_autolink] = ACTIONS(4567), + [sym__whitespace_ge_2] = ACTIONS(4567), + [aux_sym__whitespace_token1] = ACTIONS(4569), + [sym__word_no_digit] = ACTIONS(4567), + [sym__digits] = ACTIONS(4567), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), + [sym__code_span_start] = ACTIONS(4567), + [sym__emphasis_open_star] = ACTIONS(4567), + [sym__emphasis_open_underscore] = ACTIONS(4567), + [sym__strikeout_open] = ACTIONS(4567), + [sym__latex_span_start] = ACTIONS(4567), + [sym__single_quote_open] = ACTIONS(4567), + [sym__double_quote_open] = ACTIONS(4567), + [sym__superscript_open] = ACTIONS(4567), + [sym__subscript_open] = ACTIONS(4567), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), + [sym__cite_author_in_text] = ACTIONS(4567), + [sym__cite_suppress_author] = ACTIONS(4567), + [sym__shortcode_open_escaped] = ACTIONS(4567), + [sym__shortcode_open] = ACTIONS(4567), + [sym__unclosed_span] = ACTIONS(4567), + [sym__strong_emphasis_open_star] = ACTIONS(4567), + [sym__strong_emphasis_open_underscore] = ACTIONS(4567), + }, + [STATE(1052)] = { [sym__backslash_escape] = ACTIONS(4755), [sym_entity_reference] = ACTIONS(4755), [sym_numeric_character_reference] = ACTIONS(4755), @@ -119201,7 +119066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4755), [sym__strong_emphasis_open_underscore] = ACTIONS(4755), }, - [STATE(1055)] = { + [STATE(1053)] = { [sym__backslash_escape] = ACTIONS(4759), [sym_entity_reference] = ACTIONS(4759), [sym_numeric_character_reference] = ACTIONS(4759), @@ -119268,7 +119133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4759), [sym__strong_emphasis_open_underscore] = ACTIONS(4759), }, - [STATE(1056)] = { + [STATE(1054)] = { [sym__backslash_escape] = ACTIONS(4763), [sym_entity_reference] = ACTIONS(4763), [sym_numeric_character_reference] = ACTIONS(4763), @@ -119335,141 +119200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4763), [sym__strong_emphasis_open_underscore] = ACTIONS(4763), }, - [STATE(1057)] = { - [sym__backslash_escape] = ACTIONS(4527), - [sym_entity_reference] = ACTIONS(4527), - [sym_numeric_character_reference] = ACTIONS(4527), - [anon_sym_LT] = ACTIONS(4529), - [anon_sym_GT] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(4527), - [anon_sym_DQUOTE] = ACTIONS(4527), - [anon_sym_POUND] = ACTIONS(4527), - [anon_sym_DOLLAR] = ACTIONS(4527), - [anon_sym_PERCENT] = ACTIONS(4527), - [anon_sym_AMP] = ACTIONS(4529), - [anon_sym_SQUOTE] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(4527), - [anon_sym_COMMA] = ACTIONS(4527), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_DOT] = ACTIONS(4529), - [anon_sym_SLASH] = ACTIONS(4527), - [anon_sym_COLON] = ACTIONS(4527), - [anon_sym_SEMI] = ACTIONS(4527), - [anon_sym_EQ] = ACTIONS(4527), - [anon_sym_QMARK] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4529), - [anon_sym_BSLASH] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(4529), - [anon_sym_BQUOTE] = ACTIONS(4527), - [anon_sym_LBRACE] = ACTIONS(4527), - [anon_sym_PIPE] = ACTIONS(4527), - [anon_sym_TILDE] = ACTIONS(4527), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym_RPAREN] = ACTIONS(4527), - [sym__newline_token] = ACTIONS(4527), - [aux_sym_insert_token1] = ACTIONS(4527), - [aux_sym_delete_token1] = ACTIONS(4527), - [aux_sym_highlight_token1] = ACTIONS(4527), - [aux_sym_edit_comment_token1] = ACTIONS(4527), - [anon_sym_CARET_LBRACK] = ACTIONS(4527), - [anon_sym_LBRACK_CARET] = ACTIONS(4527), - [sym_uri_autolink] = ACTIONS(4527), - [sym_email_autolink] = ACTIONS(4527), - [sym__whitespace_ge_2] = ACTIONS(4527), - [aux_sym__whitespace_token1] = ACTIONS(4529), - [sym__word_no_digit] = ACTIONS(4527), - [sym__digits] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), - [sym__code_span_start] = ACTIONS(4527), - [sym__emphasis_open_star] = ACTIONS(4527), - [sym__emphasis_open_underscore] = ACTIONS(4527), - [sym__strikeout_open] = ACTIONS(4527), - [sym__latex_span_start] = ACTIONS(4527), - [sym__single_quote_open] = ACTIONS(4527), - [sym__double_quote_open] = ACTIONS(4527), - [sym__superscript_open] = ACTIONS(4527), - [sym__subscript_open] = ACTIONS(4527), - [sym__subscript_close] = ACTIONS(4527), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), - [sym__cite_author_in_text] = ACTIONS(4527), - [sym__cite_suppress_author] = ACTIONS(4527), - [sym__shortcode_open_escaped] = ACTIONS(4527), - [sym__shortcode_open] = ACTIONS(4527), - [sym__unclosed_span] = ACTIONS(4527), - [sym__strong_emphasis_open_star] = ACTIONS(4527), - [sym__strong_emphasis_open_underscore] = ACTIONS(4527), - }, - [STATE(1058)] = { - [sym__backslash_escape] = ACTIONS(4531), - [sym_entity_reference] = ACTIONS(4531), - [sym_numeric_character_reference] = ACTIONS(4531), - [anon_sym_LT] = ACTIONS(4533), - [anon_sym_GT] = ACTIONS(4531), - [anon_sym_BANG] = ACTIONS(4531), - [anon_sym_DQUOTE] = ACTIONS(4531), - [anon_sym_POUND] = ACTIONS(4531), - [anon_sym_DOLLAR] = ACTIONS(4531), - [anon_sym_PERCENT] = ACTIONS(4531), - [anon_sym_AMP] = ACTIONS(4533), - [anon_sym_SQUOTE] = ACTIONS(4531), - [anon_sym_PLUS] = ACTIONS(4531), - [anon_sym_COMMA] = ACTIONS(4531), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4533), - [anon_sym_SLASH] = ACTIONS(4531), - [anon_sym_COLON] = ACTIONS(4531), - [anon_sym_SEMI] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4531), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_BSLASH] = ACTIONS(4533), - [anon_sym_CARET] = ACTIONS(4533), - [anon_sym_BQUOTE] = ACTIONS(4531), - [anon_sym_LBRACE] = ACTIONS(4531), - [anon_sym_PIPE] = ACTIONS(4531), - [anon_sym_TILDE] = ACTIONS(4531), - [anon_sym_LPAREN] = ACTIONS(4531), - [anon_sym_RPAREN] = ACTIONS(4531), - [sym__newline_token] = ACTIONS(4531), - [aux_sym_insert_token1] = ACTIONS(4531), - [aux_sym_delete_token1] = ACTIONS(4531), - [aux_sym_highlight_token1] = ACTIONS(4531), - [aux_sym_edit_comment_token1] = ACTIONS(4531), - [anon_sym_CARET_LBRACK] = ACTIONS(4531), - [anon_sym_LBRACK_CARET] = ACTIONS(4531), - [sym_uri_autolink] = ACTIONS(4531), - [sym_email_autolink] = ACTIONS(4531), - [sym__whitespace_ge_2] = ACTIONS(4531), - [aux_sym__whitespace_token1] = ACTIONS(4533), - [sym__word_no_digit] = ACTIONS(4531), - [sym__digits] = ACTIONS(4531), - [anon_sym_DASH_DASH] = ACTIONS(4533), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), - [sym__code_span_start] = ACTIONS(4531), - [sym__emphasis_open_star] = ACTIONS(4531), - [sym__emphasis_open_underscore] = ACTIONS(4531), - [sym__strikeout_open] = ACTIONS(4531), - [sym__latex_span_start] = ACTIONS(4531), - [sym__single_quote_open] = ACTIONS(4531), - [sym__double_quote_open] = ACTIONS(4531), - [sym__superscript_open] = ACTIONS(4531), - [sym__subscript_open] = ACTIONS(4531), - [sym__subscript_close] = ACTIONS(4531), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), - [sym__cite_author_in_text] = ACTIONS(4531), - [sym__cite_suppress_author] = ACTIONS(4531), - [sym__shortcode_open_escaped] = ACTIONS(4531), - [sym__shortcode_open] = ACTIONS(4531), - [sym__unclosed_span] = ACTIONS(4531), - [sym__strong_emphasis_open_star] = ACTIONS(4531), - [sym__strong_emphasis_open_underscore] = ACTIONS(4531), - }, - [STATE(1059)] = { + [STATE(1055)] = { [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), [sym_numeric_character_reference] = ACTIONS(4209), @@ -119536,7 +119267,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4209), [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, - [STATE(1060)] = { + [STATE(1056)] = { + [ts_builtin_sym_end] = ACTIONS(4571), + [sym__backslash_escape] = ACTIONS(4571), + [sym_entity_reference] = ACTIONS(4571), + [sym_numeric_character_reference] = ACTIONS(4571), + [anon_sym_LT] = ACTIONS(4573), + [anon_sym_GT] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4571), + [anon_sym_POUND] = ACTIONS(4571), + [anon_sym_DOLLAR] = ACTIONS(4571), + [anon_sym_PERCENT] = ACTIONS(4571), + [anon_sym_AMP] = ACTIONS(4573), + [anon_sym_SQUOTE] = ACTIONS(4571), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_COMMA] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4573), + [anon_sym_SLASH] = ACTIONS(4571), + [anon_sym_COLON] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(4571), + [anon_sym_EQ] = ACTIONS(4571), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_LBRACK] = ACTIONS(4573), + [anon_sym_BSLASH] = ACTIONS(4573), + [anon_sym_CARET] = ACTIONS(4573), + [anon_sym_BQUOTE] = ACTIONS(4571), + [anon_sym_LBRACE] = ACTIONS(4571), + [anon_sym_PIPE] = ACTIONS(4571), + [anon_sym_TILDE] = ACTIONS(4571), + [anon_sym_LPAREN] = ACTIONS(4571), + [anon_sym_RPAREN] = ACTIONS(4571), + [sym__newline_token] = ACTIONS(4571), + [aux_sym_insert_token1] = ACTIONS(4571), + [aux_sym_delete_token1] = ACTIONS(4571), + [aux_sym_highlight_token1] = ACTIONS(4571), + [aux_sym_edit_comment_token1] = ACTIONS(4571), + [anon_sym_CARET_LBRACK] = ACTIONS(4571), + [anon_sym_LBRACK_CARET] = ACTIONS(4571), + [sym_uri_autolink] = ACTIONS(4571), + [sym_email_autolink] = ACTIONS(4571), + [sym__whitespace_ge_2] = ACTIONS(4571), + [aux_sym__whitespace_token1] = ACTIONS(4573), + [sym__word_no_digit] = ACTIONS(4571), + [sym__digits] = ACTIONS(4571), + [anon_sym_DASH_DASH] = ACTIONS(4573), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4571), + [sym__code_span_start] = ACTIONS(4571), + [sym__emphasis_open_star] = ACTIONS(4571), + [sym__emphasis_open_underscore] = ACTIONS(4571), + [sym__strikeout_open] = ACTIONS(4571), + [sym__latex_span_start] = ACTIONS(4571), + [sym__single_quote_open] = ACTIONS(4571), + [sym__double_quote_open] = ACTIONS(4571), + [sym__superscript_open] = ACTIONS(4571), + [sym__subscript_open] = ACTIONS(4571), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4571), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4571), + [sym__cite_author_in_text] = ACTIONS(4571), + [sym__cite_suppress_author] = ACTIONS(4571), + [sym__shortcode_open_escaped] = ACTIONS(4571), + [sym__shortcode_open] = ACTIONS(4571), + [sym__unclosed_span] = ACTIONS(4571), + [sym__strong_emphasis_open_star] = ACTIONS(4571), + [sym__strong_emphasis_open_underscore] = ACTIONS(4571), + }, + [STATE(1057)] = { [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), [sym_numeric_character_reference] = ACTIONS(4213), @@ -119603,7 +119401,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4213), [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, - [STATE(1061)] = { + [STATE(1058)] = { + [ts_builtin_sym_end] = ACTIONS(4233), + [sym__backslash_escape] = ACTIONS(4233), + [sym_entity_reference] = ACTIONS(4233), + [sym_numeric_character_reference] = ACTIONS(4233), + [anon_sym_LT] = ACTIONS(4235), + [anon_sym_GT] = ACTIONS(4233), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_DQUOTE] = ACTIONS(4233), + [anon_sym_POUND] = ACTIONS(4233), + [anon_sym_DOLLAR] = ACTIONS(4233), + [anon_sym_PERCENT] = ACTIONS(4233), + [anon_sym_AMP] = ACTIONS(4235), + [anon_sym_SQUOTE] = ACTIONS(4233), + [anon_sym_PLUS] = ACTIONS(4233), + [anon_sym_COMMA] = ACTIONS(4233), + [anon_sym_DASH] = ACTIONS(4235), + [anon_sym_DOT] = ACTIONS(4235), + [anon_sym_SLASH] = ACTIONS(4233), + [anon_sym_COLON] = ACTIONS(4233), + [anon_sym_SEMI] = ACTIONS(4233), + [anon_sym_EQ] = ACTIONS(4233), + [anon_sym_QMARK] = ACTIONS(4233), + [anon_sym_LBRACK] = ACTIONS(4235), + [anon_sym_BSLASH] = ACTIONS(4235), + [anon_sym_CARET] = ACTIONS(4235), + [anon_sym_BQUOTE] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4233), + [anon_sym_PIPE] = ACTIONS(4233), + [anon_sym_TILDE] = ACTIONS(4233), + [anon_sym_LPAREN] = ACTIONS(4233), + [anon_sym_RPAREN] = ACTIONS(4233), + [sym__newline_token] = ACTIONS(4233), + [aux_sym_insert_token1] = ACTIONS(4233), + [aux_sym_delete_token1] = ACTIONS(4233), + [aux_sym_highlight_token1] = ACTIONS(4233), + [aux_sym_edit_comment_token1] = ACTIONS(4233), + [anon_sym_CARET_LBRACK] = ACTIONS(4233), + [anon_sym_LBRACK_CARET] = ACTIONS(4233), + [sym_uri_autolink] = ACTIONS(4233), + [sym_email_autolink] = ACTIONS(4233), + [sym__whitespace_ge_2] = ACTIONS(4233), + [aux_sym__whitespace_token1] = ACTIONS(4235), + [sym__word_no_digit] = ACTIONS(4233), + [sym__digits] = ACTIONS(4233), + [anon_sym_DASH_DASH] = ACTIONS(4235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4233), + [sym__code_span_start] = ACTIONS(4233), + [sym__emphasis_open_star] = ACTIONS(4233), + [sym__emphasis_open_underscore] = ACTIONS(4233), + [sym__strikeout_open] = ACTIONS(4233), + [sym__latex_span_start] = ACTIONS(4233), + [sym__single_quote_open] = ACTIONS(4233), + [sym__double_quote_open] = ACTIONS(4233), + [sym__superscript_open] = ACTIONS(4233), + [sym__subscript_open] = ACTIONS(4233), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4233), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4233), + [sym__cite_author_in_text] = ACTIONS(4233), + [sym__cite_suppress_author] = ACTIONS(4233), + [sym__shortcode_open_escaped] = ACTIONS(4233), + [sym__shortcode_open] = ACTIONS(4233), + [sym__unclosed_span] = ACTIONS(4233), + [sym__strong_emphasis_open_star] = ACTIONS(4233), + [sym__strong_emphasis_open_underscore] = ACTIONS(4233), + }, + [STATE(1059)] = { + [sym__backslash_escape] = ACTIONS(4531), + [sym_entity_reference] = ACTIONS(4531), + [sym_numeric_character_reference] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_DQUOTE] = ACTIONS(4531), + [anon_sym_POUND] = ACTIONS(4531), + [anon_sym_DOLLAR] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4533), + [anon_sym_SQUOTE] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_DASH] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4533), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_BSLASH] = ACTIONS(4533), + [anon_sym_CARET] = ACTIONS(4533), + [anon_sym_BQUOTE] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_TILDE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_RPAREN] = ACTIONS(4531), + [sym__newline_token] = ACTIONS(4531), + [aux_sym_insert_token1] = ACTIONS(4531), + [aux_sym_delete_token1] = ACTIONS(4531), + [aux_sym_highlight_token1] = ACTIONS(4531), + [aux_sym_edit_comment_token1] = ACTIONS(4531), + [anon_sym_CARET_LBRACK] = ACTIONS(4531), + [anon_sym_LBRACK_CARET] = ACTIONS(4531), + [sym_uri_autolink] = ACTIONS(4531), + [sym_email_autolink] = ACTIONS(4531), + [sym__whitespace_ge_2] = ACTIONS(4531), + [aux_sym__whitespace_token1] = ACTIONS(4533), + [sym__word_no_digit] = ACTIONS(4531), + [sym__digits] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), + [sym__code_span_start] = ACTIONS(4531), + [sym__emphasis_open_star] = ACTIONS(4531), + [sym__emphasis_open_underscore] = ACTIONS(4531), + [sym__strikeout_open] = ACTIONS(4531), + [sym__latex_span_start] = ACTIONS(4531), + [sym__single_quote_open] = ACTIONS(4531), + [sym__double_quote_open] = ACTIONS(4531), + [sym__superscript_open] = ACTIONS(4531), + [sym__subscript_open] = ACTIONS(4531), + [sym__subscript_close] = ACTIONS(4531), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), + [sym__cite_author_in_text] = ACTIONS(4531), + [sym__cite_suppress_author] = ACTIONS(4531), + [sym__shortcode_open_escaped] = ACTIONS(4531), + [sym__shortcode_open] = ACTIONS(4531), + [sym__unclosed_span] = ACTIONS(4531), + [sym__strong_emphasis_open_star] = ACTIONS(4531), + [sym__strong_emphasis_open_underscore] = ACTIONS(4531), + }, + [STATE(1060)] = { [sym__backslash_escape] = ACTIONS(4535), [sym_entity_reference] = ACTIONS(4535), [sym_numeric_character_reference] = ACTIONS(4535), @@ -119670,7 +119602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4535), [sym__strong_emphasis_open_underscore] = ACTIONS(4535), }, - [STATE(1062)] = { + [STATE(1061)] = { [sym__backslash_escape] = ACTIONS(4539), [sym_entity_reference] = ACTIONS(4539), [sym_numeric_character_reference] = ACTIONS(4539), @@ -119737,7 +119669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4539), [sym__strong_emphasis_open_underscore] = ACTIONS(4539), }, - [STATE(1063)] = { + [STATE(1062)] = { [sym__backslash_escape] = ACTIONS(4543), [sym_entity_reference] = ACTIONS(4543), [sym_numeric_character_reference] = ACTIONS(4543), @@ -119804,7 +119736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4543), [sym__strong_emphasis_open_underscore] = ACTIONS(4543), }, - [STATE(1064)] = { + [STATE(1063)] = { [sym__backslash_escape] = ACTIONS(4547), [sym_entity_reference] = ACTIONS(4547), [sym_numeric_character_reference] = ACTIONS(4547), @@ -119871,74 +119803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4547), [sym__strong_emphasis_open_underscore] = ACTIONS(4547), }, - [STATE(1065)] = { - [sym__backslash_escape] = ACTIONS(4551), - [sym_entity_reference] = ACTIONS(4551), - [sym_numeric_character_reference] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(4553), - [anon_sym_GT] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4551), - [anon_sym_DQUOTE] = ACTIONS(4551), - [anon_sym_POUND] = ACTIONS(4551), - [anon_sym_DOLLAR] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_AMP] = ACTIONS(4553), - [anon_sym_SQUOTE] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_COLON] = ACTIONS(4551), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_EQ] = ACTIONS(4551), - [anon_sym_QMARK] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_BSLASH] = ACTIONS(4553), - [anon_sym_CARET] = ACTIONS(4553), - [anon_sym_BQUOTE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_PIPE] = ACTIONS(4551), - [anon_sym_TILDE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_RPAREN] = ACTIONS(4551), - [sym__newline_token] = ACTIONS(4551), - [aux_sym_insert_token1] = ACTIONS(4551), - [aux_sym_delete_token1] = ACTIONS(4551), - [aux_sym_highlight_token1] = ACTIONS(4551), - [aux_sym_edit_comment_token1] = ACTIONS(4551), - [anon_sym_CARET_LBRACK] = ACTIONS(4551), - [anon_sym_LBRACK_CARET] = ACTIONS(4551), - [sym_uri_autolink] = ACTIONS(4551), - [sym_email_autolink] = ACTIONS(4551), - [sym__whitespace_ge_2] = ACTIONS(4551), - [aux_sym__whitespace_token1] = ACTIONS(4553), - [sym__word_no_digit] = ACTIONS(4551), - [sym__digits] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4553), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), - [sym__code_span_start] = ACTIONS(4551), - [sym__emphasis_open_star] = ACTIONS(4551), - [sym__emphasis_open_underscore] = ACTIONS(4551), - [sym__strikeout_open] = ACTIONS(4551), - [sym__latex_span_start] = ACTIONS(4551), - [sym__single_quote_open] = ACTIONS(4551), - [sym__double_quote_open] = ACTIONS(4551), - [sym__superscript_open] = ACTIONS(4551), - [sym__subscript_open] = ACTIONS(4551), - [sym__subscript_close] = ACTIONS(4551), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), - [sym__cite_author_in_text] = ACTIONS(4551), - [sym__cite_suppress_author] = ACTIONS(4551), - [sym__shortcode_open_escaped] = ACTIONS(4551), - [sym__shortcode_open] = ACTIONS(4551), - [sym__unclosed_span] = ACTIONS(4551), - [sym__strong_emphasis_open_star] = ACTIONS(4551), - [sym__strong_emphasis_open_underscore] = ACTIONS(4551), - }, - [STATE(1066)] = { + [STATE(1064)] = { [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -120005,74 +119870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4217), [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, - [STATE(1067)] = { - [ts_builtin_sym_end] = ACTIONS(4571), - [sym__backslash_escape] = ACTIONS(4571), - [sym_entity_reference] = ACTIONS(4571), - [sym_numeric_character_reference] = ACTIONS(4571), - [anon_sym_LT] = ACTIONS(4573), - [anon_sym_GT] = ACTIONS(4571), - [anon_sym_BANG] = ACTIONS(4571), - [anon_sym_DQUOTE] = ACTIONS(4571), - [anon_sym_POUND] = ACTIONS(4571), - [anon_sym_DOLLAR] = ACTIONS(4571), - [anon_sym_PERCENT] = ACTIONS(4571), - [anon_sym_AMP] = ACTIONS(4573), - [anon_sym_SQUOTE] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4571), - [anon_sym_COMMA] = ACTIONS(4571), - [anon_sym_DASH] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4573), - [anon_sym_SLASH] = ACTIONS(4571), - [anon_sym_COLON] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4571), - [anon_sym_EQ] = ACTIONS(4571), - [anon_sym_QMARK] = ACTIONS(4571), - [anon_sym_LBRACK] = ACTIONS(4573), - [anon_sym_BSLASH] = ACTIONS(4573), - [anon_sym_CARET] = ACTIONS(4573), - [anon_sym_BQUOTE] = ACTIONS(4571), - [anon_sym_LBRACE] = ACTIONS(4571), - [anon_sym_PIPE] = ACTIONS(4571), - [anon_sym_TILDE] = ACTIONS(4571), - [anon_sym_LPAREN] = ACTIONS(4571), - [anon_sym_RPAREN] = ACTIONS(4571), - [sym__newline_token] = ACTIONS(4571), - [aux_sym_insert_token1] = ACTIONS(4571), - [aux_sym_delete_token1] = ACTIONS(4571), - [aux_sym_highlight_token1] = ACTIONS(4571), - [aux_sym_edit_comment_token1] = ACTIONS(4571), - [anon_sym_CARET_LBRACK] = ACTIONS(4571), - [anon_sym_LBRACK_CARET] = ACTIONS(4571), - [sym_uri_autolink] = ACTIONS(4571), - [sym_email_autolink] = ACTIONS(4571), - [sym__whitespace_ge_2] = ACTIONS(4571), - [aux_sym__whitespace_token1] = ACTIONS(4573), - [sym__word_no_digit] = ACTIONS(4571), - [sym__digits] = ACTIONS(4571), - [anon_sym_DASH_DASH] = ACTIONS(4573), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4571), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4571), - [sym__code_span_start] = ACTIONS(4571), - [sym__emphasis_open_star] = ACTIONS(4571), - [sym__emphasis_open_underscore] = ACTIONS(4571), - [sym__strikeout_open] = ACTIONS(4571), - [sym__latex_span_start] = ACTIONS(4571), - [sym__single_quote_open] = ACTIONS(4571), - [sym__double_quote_open] = ACTIONS(4571), - [sym__superscript_open] = ACTIONS(4571), - [sym__subscript_open] = ACTIONS(4571), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4571), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4571), - [sym__cite_author_in_text] = ACTIONS(4571), - [sym__cite_suppress_author] = ACTIONS(4571), - [sym__shortcode_open_escaped] = ACTIONS(4571), - [sym__shortcode_open] = ACTIONS(4571), - [sym__unclosed_span] = ACTIONS(4571), - [sym__strong_emphasis_open_star] = ACTIONS(4571), - [sym__strong_emphasis_open_underscore] = ACTIONS(4571), - }, - [STATE(1068)] = { + [STATE(1065)] = { [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -120139,74 +119937,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4221), [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, - [STATE(1069)] = { - [ts_builtin_sym_end] = ACTIONS(4575), - [sym__backslash_escape] = ACTIONS(4575), - [sym_entity_reference] = ACTIONS(4575), - [sym_numeric_character_reference] = ACTIONS(4575), - [anon_sym_LT] = ACTIONS(4577), - [anon_sym_GT] = ACTIONS(4575), - [anon_sym_BANG] = ACTIONS(4575), - [anon_sym_DQUOTE] = ACTIONS(4575), - [anon_sym_POUND] = ACTIONS(4575), - [anon_sym_DOLLAR] = ACTIONS(4575), - [anon_sym_PERCENT] = ACTIONS(4575), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_SQUOTE] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4575), - [anon_sym_COMMA] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4577), - [anon_sym_SLASH] = ACTIONS(4575), - [anon_sym_COLON] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4575), - [anon_sym_EQ] = ACTIONS(4575), - [anon_sym_QMARK] = ACTIONS(4575), - [anon_sym_LBRACK] = ACTIONS(4577), - [anon_sym_BSLASH] = ACTIONS(4577), - [anon_sym_CARET] = ACTIONS(4577), - [anon_sym_BQUOTE] = ACTIONS(4575), - [anon_sym_LBRACE] = ACTIONS(4575), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_TILDE] = ACTIONS(4575), - [anon_sym_LPAREN] = ACTIONS(4575), - [anon_sym_RPAREN] = ACTIONS(4575), - [sym__newline_token] = ACTIONS(4575), - [aux_sym_insert_token1] = ACTIONS(4575), - [aux_sym_delete_token1] = ACTIONS(4575), - [aux_sym_highlight_token1] = ACTIONS(4575), - [aux_sym_edit_comment_token1] = ACTIONS(4575), - [anon_sym_CARET_LBRACK] = ACTIONS(4575), - [anon_sym_LBRACK_CARET] = ACTIONS(4575), - [sym_uri_autolink] = ACTIONS(4575), - [sym_email_autolink] = ACTIONS(4575), - [sym__whitespace_ge_2] = ACTIONS(4575), - [aux_sym__whitespace_token1] = ACTIONS(4577), - [sym__word_no_digit] = ACTIONS(4575), - [sym__digits] = ACTIONS(4575), - [anon_sym_DASH_DASH] = ACTIONS(4577), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), - [sym__code_span_start] = ACTIONS(4575), - [sym__emphasis_open_star] = ACTIONS(4575), - [sym__emphasis_open_underscore] = ACTIONS(4575), - [sym__strikeout_open] = ACTIONS(4575), - [sym__latex_span_start] = ACTIONS(4575), - [sym__single_quote_open] = ACTIONS(4575), - [sym__double_quote_open] = ACTIONS(4575), - [sym__superscript_open] = ACTIONS(4575), - [sym__subscript_open] = ACTIONS(4575), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), - [sym__cite_author_in_text] = ACTIONS(4575), - [sym__cite_suppress_author] = ACTIONS(4575), - [sym__shortcode_open_escaped] = ACTIONS(4575), - [sym__shortcode_open] = ACTIONS(4575), - [sym__unclosed_span] = ACTIONS(4575), - [sym__strong_emphasis_open_star] = ACTIONS(4575), - [sym__strong_emphasis_open_underscore] = ACTIONS(4575), + [STATE(1066)] = { + [sym__backslash_escape] = ACTIONS(4551), + [sym_entity_reference] = ACTIONS(4551), + [sym_numeric_character_reference] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_POUND] = ACTIONS(4551), + [anon_sym_DOLLAR] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4553), + [anon_sym_SQUOTE] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_BSLASH] = ACTIONS(4553), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_BQUOTE] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_RPAREN] = ACTIONS(4551), + [sym__newline_token] = ACTIONS(4551), + [aux_sym_insert_token1] = ACTIONS(4551), + [aux_sym_delete_token1] = ACTIONS(4551), + [aux_sym_highlight_token1] = ACTIONS(4551), + [aux_sym_edit_comment_token1] = ACTIONS(4551), + [anon_sym_CARET_LBRACK] = ACTIONS(4551), + [anon_sym_LBRACK_CARET] = ACTIONS(4551), + [sym_uri_autolink] = ACTIONS(4551), + [sym_email_autolink] = ACTIONS(4551), + [sym__whitespace_ge_2] = ACTIONS(4551), + [aux_sym__whitespace_token1] = ACTIONS(4553), + [sym__word_no_digit] = ACTIONS(4551), + [sym__digits] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), + [sym__code_span_start] = ACTIONS(4551), + [sym__emphasis_open_star] = ACTIONS(4551), + [sym__emphasis_open_underscore] = ACTIONS(4551), + [sym__strikeout_open] = ACTIONS(4551), + [sym__latex_span_start] = ACTIONS(4551), + [sym__single_quote_open] = ACTIONS(4551), + [sym__double_quote_open] = ACTIONS(4551), + [sym__superscript_open] = ACTIONS(4551), + [sym__subscript_open] = ACTIONS(4551), + [sym__subscript_close] = ACTIONS(4551), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), + [sym__cite_author_in_text] = ACTIONS(4551), + [sym__cite_suppress_author] = ACTIONS(4551), + [sym__shortcode_open_escaped] = ACTIONS(4551), + [sym__shortcode_open] = ACTIONS(4551), + [sym__unclosed_span] = ACTIONS(4551), + [sym__strong_emphasis_open_star] = ACTIONS(4551), + [sym__strong_emphasis_open_underscore] = ACTIONS(4551), }, - [STATE(1070)] = { + [STATE(1067)] = { [sym__backslash_escape] = ACTIONS(4555), [sym_entity_reference] = ACTIONS(4555), [sym_numeric_character_reference] = ACTIONS(4555), @@ -120273,7 +120071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4555), [sym__strong_emphasis_open_underscore] = ACTIONS(4555), }, - [STATE(1071)] = { + [STATE(1068)] = { [sym__backslash_escape] = ACTIONS(4559), [sym_entity_reference] = ACTIONS(4559), [sym_numeric_character_reference] = ACTIONS(4559), @@ -120340,7 +120138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4559), [sym__strong_emphasis_open_underscore] = ACTIONS(4559), }, - [STATE(1072)] = { + [STATE(1069)] = { [sym__backslash_escape] = ACTIONS(4563), [sym_entity_reference] = ACTIONS(4563), [sym_numeric_character_reference] = ACTIONS(4563), @@ -120407,74 +120205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4563), [sym__strong_emphasis_open_underscore] = ACTIONS(4563), }, - [STATE(1073)] = { - [sym__backslash_escape] = ACTIONS(4567), - [sym_entity_reference] = ACTIONS(4567), - [sym_numeric_character_reference] = ACTIONS(4567), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4567), - [anon_sym_BANG] = ACTIONS(4567), - [anon_sym_DQUOTE] = ACTIONS(4567), - [anon_sym_POUND] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_COLON] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_QMARK] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4569), - [anon_sym_BSLASH] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym_BQUOTE] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_PIPE] = ACTIONS(4567), - [anon_sym_TILDE] = ACTIONS(4567), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [sym__newline_token] = ACTIONS(4567), - [aux_sym_insert_token1] = ACTIONS(4567), - [aux_sym_delete_token1] = ACTIONS(4567), - [aux_sym_highlight_token1] = ACTIONS(4567), - [aux_sym_edit_comment_token1] = ACTIONS(4567), - [anon_sym_CARET_LBRACK] = ACTIONS(4567), - [anon_sym_LBRACK_CARET] = ACTIONS(4567), - [sym_uri_autolink] = ACTIONS(4567), - [sym_email_autolink] = ACTIONS(4567), - [sym__whitespace_ge_2] = ACTIONS(4567), - [aux_sym__whitespace_token1] = ACTIONS(4569), - [sym__word_no_digit] = ACTIONS(4567), - [sym__digits] = ACTIONS(4567), - [anon_sym_DASH_DASH] = ACTIONS(4569), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), - [sym__code_span_start] = ACTIONS(4567), - [sym__emphasis_open_star] = ACTIONS(4567), - [sym__emphasis_open_underscore] = ACTIONS(4567), - [sym__strikeout_open] = ACTIONS(4567), - [sym__latex_span_start] = ACTIONS(4567), - [sym__single_quote_open] = ACTIONS(4567), - [sym__double_quote_open] = ACTIONS(4567), - [sym__superscript_open] = ACTIONS(4567), - [sym__subscript_open] = ACTIONS(4567), - [sym__subscript_close] = ACTIONS(4567), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), - [sym__cite_author_in_text] = ACTIONS(4567), - [sym__cite_suppress_author] = ACTIONS(4567), - [sym__shortcode_open_escaped] = ACTIONS(4567), - [sym__shortcode_open] = ACTIONS(4567), - [sym__unclosed_span] = ACTIONS(4567), - [sym__strong_emphasis_open_star] = ACTIONS(4567), - [sym__strong_emphasis_open_underscore] = ACTIONS(4567), - }, - [STATE(1074)] = { + [STATE(1070)] = { [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -120541,74 +120272,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4225), [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, - [STATE(1075)] = { - [ts_builtin_sym_end] = ACTIONS(4233), - [sym__backslash_escape] = ACTIONS(4233), - [sym_entity_reference] = ACTIONS(4233), - [sym_numeric_character_reference] = ACTIONS(4233), - [anon_sym_LT] = ACTIONS(4235), - [anon_sym_GT] = ACTIONS(4233), - [anon_sym_BANG] = ACTIONS(4233), - [anon_sym_DQUOTE] = ACTIONS(4233), - [anon_sym_POUND] = ACTIONS(4233), - [anon_sym_DOLLAR] = ACTIONS(4233), - [anon_sym_PERCENT] = ACTIONS(4233), - [anon_sym_AMP] = ACTIONS(4235), - [anon_sym_SQUOTE] = ACTIONS(4233), - [anon_sym_PLUS] = ACTIONS(4233), - [anon_sym_COMMA] = ACTIONS(4233), - [anon_sym_DASH] = ACTIONS(4235), - [anon_sym_DOT] = ACTIONS(4235), - [anon_sym_SLASH] = ACTIONS(4233), - [anon_sym_COLON] = ACTIONS(4233), - [anon_sym_SEMI] = ACTIONS(4233), - [anon_sym_EQ] = ACTIONS(4233), - [anon_sym_QMARK] = ACTIONS(4233), - [anon_sym_LBRACK] = ACTIONS(4235), - [anon_sym_BSLASH] = ACTIONS(4235), - [anon_sym_CARET] = ACTIONS(4235), - [anon_sym_BQUOTE] = ACTIONS(4233), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_PIPE] = ACTIONS(4233), - [anon_sym_TILDE] = ACTIONS(4233), - [anon_sym_LPAREN] = ACTIONS(4233), - [anon_sym_RPAREN] = ACTIONS(4233), - [sym__newline_token] = ACTIONS(4233), - [aux_sym_insert_token1] = ACTIONS(4233), - [aux_sym_delete_token1] = ACTIONS(4233), - [aux_sym_highlight_token1] = ACTIONS(4233), - [aux_sym_edit_comment_token1] = ACTIONS(4233), - [anon_sym_CARET_LBRACK] = ACTIONS(4233), - [anon_sym_LBRACK_CARET] = ACTIONS(4233), - [sym_uri_autolink] = ACTIONS(4233), - [sym_email_autolink] = ACTIONS(4233), - [sym__whitespace_ge_2] = ACTIONS(4233), - [aux_sym__whitespace_token1] = ACTIONS(4235), - [sym__word_no_digit] = ACTIONS(4233), - [sym__digits] = ACTIONS(4233), - [anon_sym_DASH_DASH] = ACTIONS(4235), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4233), - [sym__code_span_start] = ACTIONS(4233), - [sym__emphasis_open_star] = ACTIONS(4233), - [sym__emphasis_open_underscore] = ACTIONS(4233), - [sym__strikeout_open] = ACTIONS(4233), - [sym__latex_span_start] = ACTIONS(4233), - [sym__single_quote_open] = ACTIONS(4233), - [sym__double_quote_open] = ACTIONS(4233), - [sym__superscript_open] = ACTIONS(4233), - [sym__subscript_open] = ACTIONS(4233), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4233), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4233), - [sym__cite_author_in_text] = ACTIONS(4233), - [sym__cite_suppress_author] = ACTIONS(4233), - [sym__shortcode_open_escaped] = ACTIONS(4233), - [sym__shortcode_open] = ACTIONS(4233), - [sym__unclosed_span] = ACTIONS(4233), - [sym__strong_emphasis_open_star] = ACTIONS(4233), - [sym__strong_emphasis_open_underscore] = ACTIONS(4233), + [STATE(1071)] = { + [ts_builtin_sym_end] = ACTIONS(4237), + [sym__backslash_escape] = ACTIONS(4237), + [sym_entity_reference] = ACTIONS(4237), + [sym_numeric_character_reference] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(4239), + [anon_sym_GT] = ACTIONS(4237), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_DQUOTE] = ACTIONS(4237), + [anon_sym_POUND] = ACTIONS(4237), + [anon_sym_DOLLAR] = ACTIONS(4237), + [anon_sym_PERCENT] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(4239), + [anon_sym_SQUOTE] = ACTIONS(4237), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_COMMA] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4239), + [anon_sym_DOT] = ACTIONS(4239), + [anon_sym_SLASH] = ACTIONS(4237), + [anon_sym_COLON] = ACTIONS(4237), + [anon_sym_SEMI] = ACTIONS(4237), + [anon_sym_EQ] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4237), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_BSLASH] = ACTIONS(4239), + [anon_sym_CARET] = ACTIONS(4239), + [anon_sym_BQUOTE] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4237), + [anon_sym_PIPE] = ACTIONS(4237), + [anon_sym_TILDE] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4237), + [anon_sym_RPAREN] = ACTIONS(4237), + [sym__newline_token] = ACTIONS(4237), + [aux_sym_insert_token1] = ACTIONS(4237), + [aux_sym_delete_token1] = ACTIONS(4237), + [aux_sym_highlight_token1] = ACTIONS(4237), + [aux_sym_edit_comment_token1] = ACTIONS(4237), + [anon_sym_CARET_LBRACK] = ACTIONS(4237), + [anon_sym_LBRACK_CARET] = ACTIONS(4237), + [sym_uri_autolink] = ACTIONS(4237), + [sym_email_autolink] = ACTIONS(4237), + [sym__whitespace_ge_2] = ACTIONS(4237), + [aux_sym__whitespace_token1] = ACTIONS(4239), + [sym__word_no_digit] = ACTIONS(4237), + [sym__digits] = ACTIONS(4237), + [anon_sym_DASH_DASH] = ACTIONS(4239), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4237), + [sym__code_span_start] = ACTIONS(4237), + [sym__emphasis_open_star] = ACTIONS(4237), + [sym__emphasis_open_underscore] = ACTIONS(4237), + [sym__strikeout_open] = ACTIONS(4237), + [sym__latex_span_start] = ACTIONS(4237), + [sym__single_quote_open] = ACTIONS(4237), + [sym__double_quote_open] = ACTIONS(4237), + [sym__superscript_open] = ACTIONS(4237), + [sym__subscript_open] = ACTIONS(4237), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4237), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4237), + [sym__cite_author_in_text] = ACTIONS(4237), + [sym__cite_suppress_author] = ACTIONS(4237), + [sym__shortcode_open_escaped] = ACTIONS(4237), + [sym__shortcode_open] = ACTIONS(4237), + [sym__unclosed_span] = ACTIONS(4237), + [sym__strong_emphasis_open_star] = ACTIONS(4237), + [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, - [STATE(1076)] = { + [STATE(1072)] = { [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -120675,7 +120406,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4229), [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, - [STATE(1077)] = { + [STATE(1073)] = { + [sym__backslash_escape] = ACTIONS(4567), + [sym_entity_reference] = ACTIONS(4567), + [sym_numeric_character_reference] = ACTIONS(4567), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_DQUOTE] = ACTIONS(4567), + [anon_sym_POUND] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_BSLASH] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym_BQUOTE] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(4567), + [anon_sym_TILDE] = ACTIONS(4567), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [sym__newline_token] = ACTIONS(4567), + [aux_sym_insert_token1] = ACTIONS(4567), + [aux_sym_delete_token1] = ACTIONS(4567), + [aux_sym_highlight_token1] = ACTIONS(4567), + [aux_sym_edit_comment_token1] = ACTIONS(4567), + [anon_sym_CARET_LBRACK] = ACTIONS(4567), + [anon_sym_LBRACK_CARET] = ACTIONS(4567), + [sym_uri_autolink] = ACTIONS(4567), + [sym_email_autolink] = ACTIONS(4567), + [sym__whitespace_ge_2] = ACTIONS(4567), + [aux_sym__whitespace_token1] = ACTIONS(4569), + [sym__word_no_digit] = ACTIONS(4567), + [sym__digits] = ACTIONS(4567), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), + [sym__code_span_start] = ACTIONS(4567), + [sym__emphasis_open_star] = ACTIONS(4567), + [sym__emphasis_open_underscore] = ACTIONS(4567), + [sym__strikeout_open] = ACTIONS(4567), + [sym__latex_span_start] = ACTIONS(4567), + [sym__single_quote_open] = ACTIONS(4567), + [sym__double_quote_open] = ACTIONS(4567), + [sym__superscript_open] = ACTIONS(4567), + [sym__subscript_open] = ACTIONS(4567), + [sym__subscript_close] = ACTIONS(4567), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), + [sym__cite_author_in_text] = ACTIONS(4567), + [sym__cite_suppress_author] = ACTIONS(4567), + [sym__shortcode_open_escaped] = ACTIONS(4567), + [sym__shortcode_open] = ACTIONS(4567), + [sym__unclosed_span] = ACTIONS(4567), + [sym__strong_emphasis_open_star] = ACTIONS(4567), + [sym__strong_emphasis_open_underscore] = ACTIONS(4567), + }, + [STATE(1074)] = { [sym__backslash_escape] = ACTIONS(4571), [sym_entity_reference] = ACTIONS(4571), [sym_numeric_character_reference] = ACTIONS(4571), @@ -120742,74 +120540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4571), [sym__strong_emphasis_open_underscore] = ACTIONS(4571), }, - [STATE(1078)] = { - [sym__backslash_escape] = ACTIONS(4575), - [sym_entity_reference] = ACTIONS(4575), - [sym_numeric_character_reference] = ACTIONS(4575), - [anon_sym_LT] = ACTIONS(4577), - [anon_sym_GT] = ACTIONS(4575), - [anon_sym_BANG] = ACTIONS(4575), - [anon_sym_DQUOTE] = ACTIONS(4575), - [anon_sym_POUND] = ACTIONS(4575), - [anon_sym_DOLLAR] = ACTIONS(4575), - [anon_sym_PERCENT] = ACTIONS(4575), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_SQUOTE] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4575), - [anon_sym_COMMA] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4577), - [anon_sym_SLASH] = ACTIONS(4575), - [anon_sym_COLON] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4575), - [anon_sym_EQ] = ACTIONS(4575), - [anon_sym_QMARK] = ACTIONS(4575), - [anon_sym_LBRACK] = ACTIONS(4577), - [anon_sym_BSLASH] = ACTIONS(4577), - [anon_sym_CARET] = ACTIONS(4577), - [anon_sym_BQUOTE] = ACTIONS(4575), - [anon_sym_LBRACE] = ACTIONS(4575), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_TILDE] = ACTIONS(4575), - [anon_sym_LPAREN] = ACTIONS(4575), - [anon_sym_RPAREN] = ACTIONS(4575), - [sym__newline_token] = ACTIONS(4575), - [aux_sym_insert_token1] = ACTIONS(4575), - [aux_sym_delete_token1] = ACTIONS(4575), - [aux_sym_highlight_token1] = ACTIONS(4575), - [aux_sym_edit_comment_token1] = ACTIONS(4575), - [anon_sym_CARET_LBRACK] = ACTIONS(4575), - [anon_sym_LBRACK_CARET] = ACTIONS(4575), - [sym_uri_autolink] = ACTIONS(4575), - [sym_email_autolink] = ACTIONS(4575), - [sym__whitespace_ge_2] = ACTIONS(4575), - [aux_sym__whitespace_token1] = ACTIONS(4577), - [sym__word_no_digit] = ACTIONS(4575), - [sym__digits] = ACTIONS(4575), - [anon_sym_DASH_DASH] = ACTIONS(4577), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), - [sym__code_span_start] = ACTIONS(4575), - [sym__emphasis_open_star] = ACTIONS(4575), - [sym__emphasis_open_underscore] = ACTIONS(4575), - [sym__strikeout_open] = ACTIONS(4575), - [sym__latex_span_start] = ACTIONS(4575), - [sym__single_quote_open] = ACTIONS(4575), - [sym__double_quote_open] = ACTIONS(4575), - [sym__superscript_open] = ACTIONS(4575), - [sym__subscript_open] = ACTIONS(4575), - [sym__subscript_close] = ACTIONS(4575), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), - [sym__cite_author_in_text] = ACTIONS(4575), - [sym__cite_suppress_author] = ACTIONS(4575), - [sym__shortcode_open_escaped] = ACTIONS(4575), - [sym__shortcode_open] = ACTIONS(4575), - [sym__unclosed_span] = ACTIONS(4575), - [sym__strong_emphasis_open_star] = ACTIONS(4575), - [sym__strong_emphasis_open_underscore] = ACTIONS(4575), - }, - [STATE(1079)] = { + [STATE(1075)] = { [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -120876,7 +120607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4233), [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, - [STATE(1080)] = { + [STATE(1076)] = { [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -120943,74 +120674,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4237), [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, - [STATE(1081)] = { - [ts_builtin_sym_end] = ACTIONS(4237), - [sym__backslash_escape] = ACTIONS(4237), - [sym_entity_reference] = ACTIONS(4237), - [sym_numeric_character_reference] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4239), - [anon_sym_GT] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4237), - [anon_sym_DQUOTE] = ACTIONS(4237), - [anon_sym_POUND] = ACTIONS(4237), - [anon_sym_DOLLAR] = ACTIONS(4237), - [anon_sym_PERCENT] = ACTIONS(4237), - [anon_sym_AMP] = ACTIONS(4239), - [anon_sym_SQUOTE] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4237), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_DASH] = ACTIONS(4239), - [anon_sym_DOT] = ACTIONS(4239), - [anon_sym_SLASH] = ACTIONS(4237), - [anon_sym_COLON] = ACTIONS(4237), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_EQ] = ACTIONS(4237), - [anon_sym_QMARK] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4239), - [anon_sym_BSLASH] = ACTIONS(4239), - [anon_sym_CARET] = ACTIONS(4239), - [anon_sym_BQUOTE] = ACTIONS(4237), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_PIPE] = ACTIONS(4237), - [anon_sym_TILDE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4237), - [anon_sym_RPAREN] = ACTIONS(4237), - [sym__newline_token] = ACTIONS(4237), - [aux_sym_insert_token1] = ACTIONS(4237), - [aux_sym_delete_token1] = ACTIONS(4237), - [aux_sym_highlight_token1] = ACTIONS(4237), - [aux_sym_edit_comment_token1] = ACTIONS(4237), - [anon_sym_CARET_LBRACK] = ACTIONS(4237), - [anon_sym_LBRACK_CARET] = ACTIONS(4237), - [sym_uri_autolink] = ACTIONS(4237), - [sym_email_autolink] = ACTIONS(4237), - [sym__whitespace_ge_2] = ACTIONS(4237), - [aux_sym__whitespace_token1] = ACTIONS(4239), - [sym__word_no_digit] = ACTIONS(4237), - [sym__digits] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4239), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4237), - [sym__code_span_start] = ACTIONS(4237), - [sym__emphasis_open_star] = ACTIONS(4237), - [sym__emphasis_open_underscore] = ACTIONS(4237), - [sym__strikeout_open] = ACTIONS(4237), - [sym__latex_span_start] = ACTIONS(4237), - [sym__single_quote_open] = ACTIONS(4237), - [sym__double_quote_open] = ACTIONS(4237), - [sym__superscript_open] = ACTIONS(4237), - [sym__subscript_open] = ACTIONS(4237), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4237), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4237), - [sym__cite_author_in_text] = ACTIONS(4237), - [sym__cite_suppress_author] = ACTIONS(4237), - [sym__shortcode_open_escaped] = ACTIONS(4237), - [sym__shortcode_open] = ACTIONS(4237), - [sym__unclosed_span] = ACTIONS(4237), - [sym__strong_emphasis_open_star] = ACTIONS(4237), - [sym__strong_emphasis_open_underscore] = ACTIONS(4237), + [STATE(1077)] = { + [ts_builtin_sym_end] = ACTIONS(4241), + [sym__backslash_escape] = ACTIONS(4241), + [sym_entity_reference] = ACTIONS(4241), + [sym_numeric_character_reference] = ACTIONS(4241), + [anon_sym_LT] = ACTIONS(4243), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_DQUOTE] = ACTIONS(4241), + [anon_sym_POUND] = ACTIONS(4241), + [anon_sym_DOLLAR] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4243), + [anon_sym_SQUOTE] = ACTIONS(4241), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_COMMA] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4243), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_COLON] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_QMARK] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_BSLASH] = ACTIONS(4243), + [anon_sym_CARET] = ACTIONS(4243), + [anon_sym_BQUOTE] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(4241), + [anon_sym_PIPE] = ACTIONS(4241), + [anon_sym_TILDE] = ACTIONS(4241), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_RPAREN] = ACTIONS(4241), + [sym__newline_token] = ACTIONS(4241), + [aux_sym_insert_token1] = ACTIONS(4241), + [aux_sym_delete_token1] = ACTIONS(4241), + [aux_sym_highlight_token1] = ACTIONS(4241), + [aux_sym_edit_comment_token1] = ACTIONS(4241), + [anon_sym_CARET_LBRACK] = ACTIONS(4241), + [anon_sym_LBRACK_CARET] = ACTIONS(4241), + [sym_uri_autolink] = ACTIONS(4241), + [sym_email_autolink] = ACTIONS(4241), + [sym__whitespace_ge_2] = ACTIONS(4241), + [aux_sym__whitespace_token1] = ACTIONS(4243), + [sym__word_no_digit] = ACTIONS(4241), + [sym__digits] = ACTIONS(4241), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4241), + [sym__code_span_start] = ACTIONS(4241), + [sym__emphasis_open_star] = ACTIONS(4241), + [sym__emphasis_open_underscore] = ACTIONS(4241), + [sym__strikeout_open] = ACTIONS(4241), + [sym__latex_span_start] = ACTIONS(4241), + [sym__single_quote_open] = ACTIONS(4241), + [sym__double_quote_open] = ACTIONS(4241), + [sym__superscript_open] = ACTIONS(4241), + [sym__subscript_open] = ACTIONS(4241), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4241), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4241), + [sym__cite_author_in_text] = ACTIONS(4241), + [sym__cite_suppress_author] = ACTIONS(4241), + [sym__shortcode_open_escaped] = ACTIONS(4241), + [sym__shortcode_open] = ACTIONS(4241), + [sym__unclosed_span] = ACTIONS(4241), + [sym__strong_emphasis_open_star] = ACTIONS(4241), + [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, - [STATE(1082)] = { + [STATE(1078)] = { [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -121077,7 +120808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4241), [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, - [STATE(1083)] = { + [STATE(1079)] = { [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -121144,275 +120875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4245), [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, - [STATE(1084)] = { - [sym__backslash_escape] = ACTIONS(4579), - [sym_entity_reference] = ACTIONS(4579), - [sym_numeric_character_reference] = ACTIONS(4579), - [anon_sym_LT] = ACTIONS(4581), - [anon_sym_GT] = ACTIONS(4579), - [anon_sym_BANG] = ACTIONS(4579), - [anon_sym_DQUOTE] = ACTIONS(4579), - [anon_sym_POUND] = ACTIONS(4579), - [anon_sym_DOLLAR] = ACTIONS(4579), - [anon_sym_PERCENT] = ACTIONS(4579), - [anon_sym_AMP] = ACTIONS(4581), - [anon_sym_SQUOTE] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_COMMA] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4579), - [anon_sym_COLON] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4579), - [anon_sym_EQ] = ACTIONS(4579), - [anon_sym_QMARK] = ACTIONS(4579), - [anon_sym_LBRACK] = ACTIONS(4581), - [anon_sym_BSLASH] = ACTIONS(4581), - [anon_sym_CARET] = ACTIONS(4581), - [anon_sym_BQUOTE] = ACTIONS(4579), - [anon_sym_LBRACE] = ACTIONS(4579), - [anon_sym_PIPE] = ACTIONS(4579), - [anon_sym_TILDE] = ACTIONS(4579), - [anon_sym_LPAREN] = ACTIONS(4579), - [anon_sym_RPAREN] = ACTIONS(4579), - [sym__newline_token] = ACTIONS(4579), - [aux_sym_insert_token1] = ACTIONS(4579), - [aux_sym_delete_token1] = ACTIONS(4579), - [aux_sym_highlight_token1] = ACTIONS(4579), - [aux_sym_edit_comment_token1] = ACTIONS(4579), - [anon_sym_CARET_LBRACK] = ACTIONS(4579), - [anon_sym_LBRACK_CARET] = ACTIONS(4579), - [sym_uri_autolink] = ACTIONS(4579), - [sym_email_autolink] = ACTIONS(4579), - [sym__whitespace_ge_2] = ACTIONS(4579), - [aux_sym__whitespace_token1] = ACTIONS(4581), - [sym__word_no_digit] = ACTIONS(4579), - [sym__digits] = ACTIONS(4579), - [anon_sym_DASH_DASH] = ACTIONS(4581), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4579), - [sym__code_span_start] = ACTIONS(4579), - [sym__emphasis_open_star] = ACTIONS(4579), - [sym__emphasis_open_underscore] = ACTIONS(4579), - [sym__strikeout_open] = ACTIONS(4579), - [sym__latex_span_start] = ACTIONS(4579), - [sym__single_quote_open] = ACTIONS(4579), - [sym__double_quote_open] = ACTIONS(4579), - [sym__superscript_open] = ACTIONS(4579), - [sym__subscript_open] = ACTIONS(4579), - [sym__subscript_close] = ACTIONS(4579), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4579), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4579), - [sym__cite_author_in_text] = ACTIONS(4579), - [sym__cite_suppress_author] = ACTIONS(4579), - [sym__shortcode_open_escaped] = ACTIONS(4579), - [sym__shortcode_open] = ACTIONS(4579), - [sym__unclosed_span] = ACTIONS(4579), - [sym__strong_emphasis_open_star] = ACTIONS(4579), - [sym__strong_emphasis_open_underscore] = ACTIONS(4579), - }, - [STATE(1085)] = { - [sym__backslash_escape] = ACTIONS(4583), - [sym_entity_reference] = ACTIONS(4583), - [sym_numeric_character_reference] = ACTIONS(4583), - [anon_sym_LT] = ACTIONS(4585), - [anon_sym_GT] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(4583), - [anon_sym_DQUOTE] = ACTIONS(4583), - [anon_sym_POUND] = ACTIONS(4583), - [anon_sym_DOLLAR] = ACTIONS(4583), - [anon_sym_PERCENT] = ACTIONS(4583), - [anon_sym_AMP] = ACTIONS(4585), - [anon_sym_SQUOTE] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4583), - [anon_sym_COMMA] = ACTIONS(4583), - [anon_sym_DASH] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_SLASH] = ACTIONS(4583), - [anon_sym_COLON] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4583), - [anon_sym_EQ] = ACTIONS(4583), - [anon_sym_QMARK] = ACTIONS(4583), - [anon_sym_LBRACK] = ACTIONS(4585), - [anon_sym_BSLASH] = ACTIONS(4585), - [anon_sym_CARET] = ACTIONS(4585), - [anon_sym_BQUOTE] = ACTIONS(4583), - [anon_sym_LBRACE] = ACTIONS(4583), - [anon_sym_PIPE] = ACTIONS(4583), - [anon_sym_TILDE] = ACTIONS(4583), - [anon_sym_LPAREN] = ACTIONS(4583), - [anon_sym_RPAREN] = ACTIONS(4583), - [sym__newline_token] = ACTIONS(4583), - [aux_sym_insert_token1] = ACTIONS(4583), - [aux_sym_delete_token1] = ACTIONS(4583), - [aux_sym_highlight_token1] = ACTIONS(4583), - [aux_sym_edit_comment_token1] = ACTIONS(4583), - [anon_sym_CARET_LBRACK] = ACTIONS(4583), - [anon_sym_LBRACK_CARET] = ACTIONS(4583), - [sym_uri_autolink] = ACTIONS(4583), - [sym_email_autolink] = ACTIONS(4583), - [sym__whitespace_ge_2] = ACTIONS(4583), - [aux_sym__whitespace_token1] = ACTIONS(4585), - [sym__word_no_digit] = ACTIONS(4583), - [sym__digits] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4583), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4583), - [sym__code_span_start] = ACTIONS(4583), - [sym__emphasis_open_star] = ACTIONS(4583), - [sym__emphasis_open_underscore] = ACTIONS(4583), - [sym__strikeout_open] = ACTIONS(4583), - [sym__latex_span_start] = ACTIONS(4583), - [sym__single_quote_open] = ACTIONS(4583), - [sym__double_quote_open] = ACTIONS(4583), - [sym__superscript_open] = ACTIONS(4583), - [sym__subscript_open] = ACTIONS(4583), - [sym__subscript_close] = ACTIONS(4583), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4583), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4583), - [sym__cite_author_in_text] = ACTIONS(4583), - [sym__cite_suppress_author] = ACTIONS(4583), - [sym__shortcode_open_escaped] = ACTIONS(4583), - [sym__shortcode_open] = ACTIONS(4583), - [sym__unclosed_span] = ACTIONS(4583), - [sym__strong_emphasis_open_star] = ACTIONS(4583), - [sym__strong_emphasis_open_underscore] = ACTIONS(4583), - }, - [STATE(1086)] = { - [sym__backslash_escape] = ACTIONS(4587), - [sym_entity_reference] = ACTIONS(4587), - [sym_numeric_character_reference] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4589), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_DQUOTE] = ACTIONS(4587), - [anon_sym_POUND] = ACTIONS(4587), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_AMP] = ACTIONS(4589), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_COMMA] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_QMARK] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_BSLASH] = ACTIONS(4589), - [anon_sym_CARET] = ACTIONS(4589), - [anon_sym_BQUOTE] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_TILDE] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4587), - [anon_sym_RPAREN] = ACTIONS(4587), - [sym__newline_token] = ACTIONS(4587), - [aux_sym_insert_token1] = ACTIONS(4587), - [aux_sym_delete_token1] = ACTIONS(4587), - [aux_sym_highlight_token1] = ACTIONS(4587), - [aux_sym_edit_comment_token1] = ACTIONS(4587), - [anon_sym_CARET_LBRACK] = ACTIONS(4587), - [anon_sym_LBRACK_CARET] = ACTIONS(4587), - [sym_uri_autolink] = ACTIONS(4587), - [sym_email_autolink] = ACTIONS(4587), - [sym__whitespace_ge_2] = ACTIONS(4587), - [aux_sym__whitespace_token1] = ACTIONS(4589), - [sym__word_no_digit] = ACTIONS(4587), - [sym__digits] = ACTIONS(4587), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), - [sym__code_span_start] = ACTIONS(4587), - [sym__emphasis_open_star] = ACTIONS(4587), - [sym__emphasis_open_underscore] = ACTIONS(4587), - [sym__strikeout_open] = ACTIONS(4587), - [sym__latex_span_start] = ACTIONS(4587), - [sym__single_quote_open] = ACTIONS(4587), - [sym__double_quote_open] = ACTIONS(4587), - [sym__superscript_open] = ACTIONS(4587), - [sym__subscript_open] = ACTIONS(4587), - [sym__subscript_close] = ACTIONS(4587), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), - [sym__cite_author_in_text] = ACTIONS(4587), - [sym__cite_suppress_author] = ACTIONS(4587), - [sym__shortcode_open_escaped] = ACTIONS(4587), - [sym__shortcode_open] = ACTIONS(4587), - [sym__unclosed_span] = ACTIONS(4587), - [sym__strong_emphasis_open_star] = ACTIONS(4587), - [sym__strong_emphasis_open_underscore] = ACTIONS(4587), - }, - [STATE(1087)] = { - [ts_builtin_sym_end] = ACTIONS(4241), - [sym__backslash_escape] = ACTIONS(4241), - [sym_entity_reference] = ACTIONS(4241), - [sym_numeric_character_reference] = ACTIONS(4241), - [anon_sym_LT] = ACTIONS(4243), - [anon_sym_GT] = ACTIONS(4241), - [anon_sym_BANG] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(4241), - [anon_sym_POUND] = ACTIONS(4241), - [anon_sym_DOLLAR] = ACTIONS(4241), - [anon_sym_PERCENT] = ACTIONS(4241), - [anon_sym_AMP] = ACTIONS(4243), - [anon_sym_SQUOTE] = ACTIONS(4241), - [anon_sym_PLUS] = ACTIONS(4241), - [anon_sym_COMMA] = ACTIONS(4241), - [anon_sym_DASH] = ACTIONS(4243), - [anon_sym_DOT] = ACTIONS(4243), - [anon_sym_SLASH] = ACTIONS(4241), - [anon_sym_COLON] = ACTIONS(4241), - [anon_sym_SEMI] = ACTIONS(4241), - [anon_sym_EQ] = ACTIONS(4241), - [anon_sym_QMARK] = ACTIONS(4241), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_BSLASH] = ACTIONS(4243), - [anon_sym_CARET] = ACTIONS(4243), - [anon_sym_BQUOTE] = ACTIONS(4241), - [anon_sym_LBRACE] = ACTIONS(4241), - [anon_sym_PIPE] = ACTIONS(4241), - [anon_sym_TILDE] = ACTIONS(4241), - [anon_sym_LPAREN] = ACTIONS(4241), - [anon_sym_RPAREN] = ACTIONS(4241), - [sym__newline_token] = ACTIONS(4241), - [aux_sym_insert_token1] = ACTIONS(4241), - [aux_sym_delete_token1] = ACTIONS(4241), - [aux_sym_highlight_token1] = ACTIONS(4241), - [aux_sym_edit_comment_token1] = ACTIONS(4241), - [anon_sym_CARET_LBRACK] = ACTIONS(4241), - [anon_sym_LBRACK_CARET] = ACTIONS(4241), - [sym_uri_autolink] = ACTIONS(4241), - [sym_email_autolink] = ACTIONS(4241), - [sym__whitespace_ge_2] = ACTIONS(4241), - [aux_sym__whitespace_token1] = ACTIONS(4243), - [sym__word_no_digit] = ACTIONS(4241), - [sym__digits] = ACTIONS(4241), - [anon_sym_DASH_DASH] = ACTIONS(4243), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4241), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4241), - [sym__code_span_start] = ACTIONS(4241), - [sym__emphasis_open_star] = ACTIONS(4241), - [sym__emphasis_open_underscore] = ACTIONS(4241), - [sym__strikeout_open] = ACTIONS(4241), - [sym__latex_span_start] = ACTIONS(4241), - [sym__single_quote_open] = ACTIONS(4241), - [sym__double_quote_open] = ACTIONS(4241), - [sym__superscript_open] = ACTIONS(4241), - [sym__subscript_open] = ACTIONS(4241), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4241), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4241), - [sym__cite_author_in_text] = ACTIONS(4241), - [sym__cite_suppress_author] = ACTIONS(4241), - [sym__shortcode_open_escaped] = ACTIONS(4241), - [sym__shortcode_open] = ACTIONS(4241), - [sym__unclosed_span] = ACTIONS(4241), - [sym__strong_emphasis_open_star] = ACTIONS(4241), - [sym__strong_emphasis_open_underscore] = ACTIONS(4241), - }, - [STATE(1088)] = { + [STATE(1080)] = { [ts_builtin_sym_end] = ACTIONS(4245), [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), @@ -121479,74 +120942,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4245), [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, - [STATE(1089)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_close_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(1081)] = { + [sym__backslash_escape] = ACTIONS(4575), + [sym_entity_reference] = ACTIONS(4575), + [sym_numeric_character_reference] = ACTIONS(4575), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4575), + [anon_sym_DQUOTE] = ACTIONS(4575), + [anon_sym_POUND] = ACTIONS(4575), + [anon_sym_DOLLAR] = ACTIONS(4575), + [anon_sym_PERCENT] = ACTIONS(4575), + [anon_sym_AMP] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4575), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_EQ] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4577), + [anon_sym_BSLASH] = ACTIONS(4577), + [anon_sym_CARET] = ACTIONS(4577), + [anon_sym_BQUOTE] = ACTIONS(4575), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_PIPE] = ACTIONS(4575), + [anon_sym_TILDE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_RPAREN] = ACTIONS(4575), + [sym__newline_token] = ACTIONS(4575), + [aux_sym_insert_token1] = ACTIONS(4575), + [aux_sym_delete_token1] = ACTIONS(4575), + [aux_sym_highlight_token1] = ACTIONS(4575), + [aux_sym_edit_comment_token1] = ACTIONS(4575), + [anon_sym_CARET_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_CARET] = ACTIONS(4575), + [sym_uri_autolink] = ACTIONS(4575), + [sym_email_autolink] = ACTIONS(4575), + [sym__whitespace_ge_2] = ACTIONS(4575), + [aux_sym__whitespace_token1] = ACTIONS(4577), + [sym__word_no_digit] = ACTIONS(4575), + [sym__digits] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4577), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), + [sym__code_span_start] = ACTIONS(4575), + [sym__emphasis_open_star] = ACTIONS(4575), + [sym__emphasis_open_underscore] = ACTIONS(4575), + [sym__strikeout_open] = ACTIONS(4575), + [sym__latex_span_start] = ACTIONS(4575), + [sym__single_quote_open] = ACTIONS(4575), + [sym__double_quote_open] = ACTIONS(4575), + [sym__superscript_open] = ACTIONS(4575), + [sym__subscript_open] = ACTIONS(4575), + [sym__subscript_close] = ACTIONS(4575), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), + [sym__cite_author_in_text] = ACTIONS(4575), + [sym__cite_suppress_author] = ACTIONS(4575), + [sym__shortcode_open_escaped] = ACTIONS(4575), + [sym__shortcode_open] = ACTIONS(4575), + [sym__unclosed_span] = ACTIONS(4575), + [sym__strong_emphasis_open_star] = ACTIONS(4575), + [sym__strong_emphasis_open_underscore] = ACTIONS(4575), }, - [STATE(1090)] = { + [STATE(1082)] = { + [sym__backslash_escape] = ACTIONS(4579), + [sym_entity_reference] = ACTIONS(4579), + [sym_numeric_character_reference] = ACTIONS(4579), + [anon_sym_LT] = ACTIONS(4581), + [anon_sym_GT] = ACTIONS(4579), + [anon_sym_BANG] = ACTIONS(4579), + [anon_sym_DQUOTE] = ACTIONS(4579), + [anon_sym_POUND] = ACTIONS(4579), + [anon_sym_DOLLAR] = ACTIONS(4579), + [anon_sym_PERCENT] = ACTIONS(4579), + [anon_sym_AMP] = ACTIONS(4581), + [anon_sym_SQUOTE] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(4579), + [anon_sym_COMMA] = ACTIONS(4579), + [anon_sym_DASH] = ACTIONS(4581), + [anon_sym_DOT] = ACTIONS(4581), + [anon_sym_SLASH] = ACTIONS(4579), + [anon_sym_COLON] = ACTIONS(4579), + [anon_sym_SEMI] = ACTIONS(4579), + [anon_sym_EQ] = ACTIONS(4579), + [anon_sym_QMARK] = ACTIONS(4579), + [anon_sym_LBRACK] = ACTIONS(4581), + [anon_sym_BSLASH] = ACTIONS(4581), + [anon_sym_CARET] = ACTIONS(4581), + [anon_sym_BQUOTE] = ACTIONS(4579), + [anon_sym_LBRACE] = ACTIONS(4579), + [anon_sym_PIPE] = ACTIONS(4579), + [anon_sym_TILDE] = ACTIONS(4579), + [anon_sym_LPAREN] = ACTIONS(4579), + [anon_sym_RPAREN] = ACTIONS(4579), + [sym__newline_token] = ACTIONS(4579), + [aux_sym_insert_token1] = ACTIONS(4579), + [aux_sym_delete_token1] = ACTIONS(4579), + [aux_sym_highlight_token1] = ACTIONS(4579), + [aux_sym_edit_comment_token1] = ACTIONS(4579), + [anon_sym_CARET_LBRACK] = ACTIONS(4579), + [anon_sym_LBRACK_CARET] = ACTIONS(4579), + [sym_uri_autolink] = ACTIONS(4579), + [sym_email_autolink] = ACTIONS(4579), + [sym__whitespace_ge_2] = ACTIONS(4579), + [aux_sym__whitespace_token1] = ACTIONS(4581), + [sym__word_no_digit] = ACTIONS(4579), + [sym__digits] = ACTIONS(4579), + [anon_sym_DASH_DASH] = ACTIONS(4581), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4579), + [sym__code_span_start] = ACTIONS(4579), + [sym__emphasis_open_star] = ACTIONS(4579), + [sym__emphasis_open_underscore] = ACTIONS(4579), + [sym__strikeout_open] = ACTIONS(4579), + [sym__latex_span_start] = ACTIONS(4579), + [sym__single_quote_open] = ACTIONS(4579), + [sym__double_quote_open] = ACTIONS(4579), + [sym__superscript_open] = ACTIONS(4579), + [sym__subscript_open] = ACTIONS(4579), + [sym__subscript_close] = ACTIONS(4579), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4579), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4579), + [sym__cite_author_in_text] = ACTIONS(4579), + [sym__cite_suppress_author] = ACTIONS(4579), + [sym__shortcode_open_escaped] = ACTIONS(4579), + [sym__shortcode_open] = ACTIONS(4579), + [sym__unclosed_span] = ACTIONS(4579), + [sym__strong_emphasis_open_star] = ACTIONS(4579), + [sym__strong_emphasis_open_underscore] = ACTIONS(4579), + }, + [STATE(1083)] = { + [sym__backslash_escape] = ACTIONS(4583), + [sym_entity_reference] = ACTIONS(4583), + [sym_numeric_character_reference] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_BANG] = ACTIONS(4583), + [anon_sym_DQUOTE] = ACTIONS(4583), + [anon_sym_POUND] = ACTIONS(4583), + [anon_sym_DOLLAR] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4583), + [anon_sym_AMP] = ACTIONS(4585), + [anon_sym_SQUOTE] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_COMMA] = ACTIONS(4583), + [anon_sym_DASH] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_SLASH] = ACTIONS(4583), + [anon_sym_COLON] = ACTIONS(4583), + [anon_sym_SEMI] = ACTIONS(4583), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_QMARK] = ACTIONS(4583), + [anon_sym_LBRACK] = ACTIONS(4585), + [anon_sym_BSLASH] = ACTIONS(4585), + [anon_sym_CARET] = ACTIONS(4585), + [anon_sym_BQUOTE] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4583), + [anon_sym_PIPE] = ACTIONS(4583), + [anon_sym_TILDE] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym_RPAREN] = ACTIONS(4583), + [sym__newline_token] = ACTIONS(4583), + [aux_sym_insert_token1] = ACTIONS(4583), + [aux_sym_delete_token1] = ACTIONS(4583), + [aux_sym_highlight_token1] = ACTIONS(4583), + [aux_sym_edit_comment_token1] = ACTIONS(4583), + [anon_sym_CARET_LBRACK] = ACTIONS(4583), + [anon_sym_LBRACK_CARET] = ACTIONS(4583), + [sym_uri_autolink] = ACTIONS(4583), + [sym_email_autolink] = ACTIONS(4583), + [sym__whitespace_ge_2] = ACTIONS(4583), + [aux_sym__whitespace_token1] = ACTIONS(4585), + [sym__word_no_digit] = ACTIONS(4583), + [sym__digits] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4585), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4583), + [sym__code_span_start] = ACTIONS(4583), + [sym__emphasis_open_star] = ACTIONS(4583), + [sym__emphasis_open_underscore] = ACTIONS(4583), + [sym__strikeout_open] = ACTIONS(4583), + [sym__latex_span_start] = ACTIONS(4583), + [sym__single_quote_open] = ACTIONS(4583), + [sym__double_quote_open] = ACTIONS(4583), + [sym__superscript_open] = ACTIONS(4583), + [sym__subscript_open] = ACTIONS(4583), + [sym__subscript_close] = ACTIONS(4583), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4583), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4583), + [sym__cite_author_in_text] = ACTIONS(4583), + [sym__cite_suppress_author] = ACTIONS(4583), + [sym__shortcode_open_escaped] = ACTIONS(4583), + [sym__shortcode_open] = ACTIONS(4583), + [sym__unclosed_span] = ACTIONS(4583), + [sym__strong_emphasis_open_star] = ACTIONS(4583), + [sym__strong_emphasis_open_underscore] = ACTIONS(4583), + }, + [STATE(1084)] = { + [ts_builtin_sym_end] = ACTIONS(4575), + [sym__backslash_escape] = ACTIONS(4575), + [sym_entity_reference] = ACTIONS(4575), + [sym_numeric_character_reference] = ACTIONS(4575), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4575), + [anon_sym_DQUOTE] = ACTIONS(4575), + [anon_sym_POUND] = ACTIONS(4575), + [anon_sym_DOLLAR] = ACTIONS(4575), + [anon_sym_PERCENT] = ACTIONS(4575), + [anon_sym_AMP] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4575), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_EQ] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4577), + [anon_sym_BSLASH] = ACTIONS(4577), + [anon_sym_CARET] = ACTIONS(4577), + [anon_sym_BQUOTE] = ACTIONS(4575), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_PIPE] = ACTIONS(4575), + [anon_sym_TILDE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_RPAREN] = ACTIONS(4575), + [sym__newline_token] = ACTIONS(4575), + [aux_sym_insert_token1] = ACTIONS(4575), + [aux_sym_delete_token1] = ACTIONS(4575), + [aux_sym_highlight_token1] = ACTIONS(4575), + [aux_sym_edit_comment_token1] = ACTIONS(4575), + [anon_sym_CARET_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_CARET] = ACTIONS(4575), + [sym_uri_autolink] = ACTIONS(4575), + [sym_email_autolink] = ACTIONS(4575), + [sym__whitespace_ge_2] = ACTIONS(4575), + [aux_sym__whitespace_token1] = ACTIONS(4577), + [sym__word_no_digit] = ACTIONS(4575), + [sym__digits] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4577), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), + [sym__code_span_start] = ACTIONS(4575), + [sym__emphasis_open_star] = ACTIONS(4575), + [sym__emphasis_open_underscore] = ACTIONS(4575), + [sym__strikeout_open] = ACTIONS(4575), + [sym__latex_span_start] = ACTIONS(4575), + [sym__single_quote_open] = ACTIONS(4575), + [sym__double_quote_open] = ACTIONS(4575), + [sym__superscript_open] = ACTIONS(4575), + [sym__subscript_open] = ACTIONS(4575), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), + [sym__cite_author_in_text] = ACTIONS(4575), + [sym__cite_suppress_author] = ACTIONS(4575), + [sym__shortcode_open_escaped] = ACTIONS(4575), + [sym__shortcode_open] = ACTIONS(4575), + [sym__unclosed_span] = ACTIONS(4575), + [sym__strong_emphasis_open_star] = ACTIONS(4575), + [sym__strong_emphasis_open_underscore] = ACTIONS(4575), + }, + [STATE(1085)] = { [ts_builtin_sym_end] = ACTIONS(4579), [sym__backslash_escape] = ACTIONS(4579), [sym_entity_reference] = ACTIONS(4579), @@ -121613,7 +121277,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4579), [sym__strong_emphasis_open_underscore] = ACTIONS(4579), }, - [STATE(1091)] = { + [STATE(1086)] = { + [sym__backslash_escape] = ACTIONS(4583), + [sym_entity_reference] = ACTIONS(4583), + [sym_numeric_character_reference] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_BANG] = ACTIONS(4583), + [anon_sym_DQUOTE] = ACTIONS(4583), + [anon_sym_POUND] = ACTIONS(4583), + [anon_sym_DOLLAR] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4583), + [anon_sym_AMP] = ACTIONS(4585), + [anon_sym_SQUOTE] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_COMMA] = ACTIONS(4583), + [anon_sym_DASH] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_SLASH] = ACTIONS(4583), + [anon_sym_COLON] = ACTIONS(4583), + [anon_sym_SEMI] = ACTIONS(4583), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_QMARK] = ACTIONS(4583), + [anon_sym_LBRACK] = ACTIONS(4585), + [anon_sym_BSLASH] = ACTIONS(4585), + [anon_sym_CARET] = ACTIONS(4585), + [anon_sym_BQUOTE] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4583), + [anon_sym_PIPE] = ACTIONS(4583), + [anon_sym_TILDE] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym_RPAREN] = ACTIONS(4583), + [sym__newline_token] = ACTIONS(4583), + [aux_sym_insert_token1] = ACTIONS(4583), + [aux_sym_delete_token1] = ACTIONS(4583), + [aux_sym_highlight_token1] = ACTIONS(4583), + [aux_sym_edit_comment_token1] = ACTIONS(4583), + [anon_sym_CARET_LBRACK] = ACTIONS(4583), + [anon_sym_LBRACK_CARET] = ACTIONS(4583), + [sym_uri_autolink] = ACTIONS(4583), + [sym_email_autolink] = ACTIONS(4583), + [sym__whitespace_ge_2] = ACTIONS(4583), + [aux_sym__whitespace_token1] = ACTIONS(4585), + [sym__word_no_digit] = ACTIONS(4583), + [sym__digits] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4585), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4583), + [sym__code_span_start] = ACTIONS(4583), + [sym__emphasis_open_star] = ACTIONS(4583), + [sym__emphasis_open_underscore] = ACTIONS(4583), + [sym__emphasis_close_star] = ACTIONS(4583), + [sym__strikeout_open] = ACTIONS(4583), + [sym__latex_span_start] = ACTIONS(4583), + [sym__single_quote_open] = ACTIONS(4583), + [sym__double_quote_open] = ACTIONS(4583), + [sym__superscript_open] = ACTIONS(4583), + [sym__subscript_open] = ACTIONS(4583), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4583), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4583), + [sym__cite_author_in_text] = ACTIONS(4583), + [sym__cite_suppress_author] = ACTIONS(4583), + [sym__shortcode_open_escaped] = ACTIONS(4583), + [sym__shortcode_open] = ACTIONS(4583), + [sym__unclosed_span] = ACTIONS(4583), + [sym__strong_emphasis_open_star] = ACTIONS(4583), + [sym__strong_emphasis_open_underscore] = ACTIONS(4583), + }, + [STATE(1087)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_close_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + }, + [STATE(1088)] = { + [sym__backslash_escape] = ACTIONS(4587), + [sym_entity_reference] = ACTIONS(4587), + [sym_numeric_character_reference] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4587), + [anon_sym_DQUOTE] = ACTIONS(4587), + [anon_sym_POUND] = ACTIONS(4587), + [anon_sym_DOLLAR] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4587), + [anon_sym_AMP] = ACTIONS(4589), + [anon_sym_SQUOTE] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_BSLASH] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4589), + [anon_sym_BQUOTE] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_PIPE] = ACTIONS(4587), + [anon_sym_TILDE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4587), + [sym__newline_token] = ACTIONS(4587), + [aux_sym_insert_token1] = ACTIONS(4587), + [aux_sym_delete_token1] = ACTIONS(4587), + [aux_sym_highlight_token1] = ACTIONS(4587), + [aux_sym_edit_comment_token1] = ACTIONS(4587), + [anon_sym_CARET_LBRACK] = ACTIONS(4587), + [anon_sym_LBRACK_CARET] = ACTIONS(4587), + [sym_uri_autolink] = ACTIONS(4587), + [sym_email_autolink] = ACTIONS(4587), + [sym__whitespace_ge_2] = ACTIONS(4587), + [aux_sym__whitespace_token1] = ACTIONS(4589), + [sym__word_no_digit] = ACTIONS(4587), + [sym__digits] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), + [sym__code_span_start] = ACTIONS(4587), + [sym__emphasis_open_star] = ACTIONS(4587), + [sym__emphasis_open_underscore] = ACTIONS(4587), + [sym__strikeout_open] = ACTIONS(4587), + [sym__latex_span_start] = ACTIONS(4587), + [sym__single_quote_open] = ACTIONS(4587), + [sym__double_quote_open] = ACTIONS(4587), + [sym__superscript_open] = ACTIONS(4587), + [sym__subscript_open] = ACTIONS(4587), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), + [sym__cite_author_in_text] = ACTIONS(4587), + [sym__cite_suppress_author] = ACTIONS(4587), + [sym__shortcode_open_escaped] = ACTIONS(4587), + [sym__shortcode_open] = ACTIONS(4587), + [sym__unclosed_span] = ACTIONS(4587), + [sym__strong_emphasis_open_star] = ACTIONS(4587), + [sym__strong_emphasis_close_star] = ACTIONS(4587), + [sym__strong_emphasis_open_underscore] = ACTIONS(4587), + }, + [STATE(1089)] = { [sym__backslash_escape] = ACTIONS(4591), [sym_entity_reference] = ACTIONS(4591), [sym_numeric_character_reference] = ACTIONS(4591), @@ -121680,7 +121545,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4591), [sym__strong_emphasis_open_underscore] = ACTIONS(4591), }, - [STATE(1092)] = { + [STATE(1090)] = { + [ts_builtin_sym_end] = ACTIONS(4635), + [sym__backslash_escape] = ACTIONS(4635), + [sym_entity_reference] = ACTIONS(4635), + [sym_numeric_character_reference] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4637), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4635), + [anon_sym_POUND] = ACTIONS(4635), + [anon_sym_DOLLAR] = ACTIONS(4635), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_AMP] = ACTIONS(4637), + [anon_sym_SQUOTE] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(4635), + [anon_sym_DASH] = ACTIONS(4637), + [anon_sym_DOT] = ACTIONS(4637), + [anon_sym_SLASH] = ACTIONS(4635), + [anon_sym_COLON] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_QMARK] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_BSLASH] = ACTIONS(4637), + [anon_sym_CARET] = ACTIONS(4637), + [anon_sym_BQUOTE] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_TILDE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_RPAREN] = ACTIONS(4635), + [sym__newline_token] = ACTIONS(4635), + [aux_sym_insert_token1] = ACTIONS(4635), + [aux_sym_delete_token1] = ACTIONS(4635), + [aux_sym_highlight_token1] = ACTIONS(4635), + [aux_sym_edit_comment_token1] = ACTIONS(4635), + [anon_sym_CARET_LBRACK] = ACTIONS(4635), + [anon_sym_LBRACK_CARET] = ACTIONS(4635), + [sym_uri_autolink] = ACTIONS(4635), + [sym_email_autolink] = ACTIONS(4635), + [sym__whitespace_ge_2] = ACTIONS(4635), + [aux_sym__whitespace_token1] = ACTIONS(4637), + [sym__word_no_digit] = ACTIONS(4635), + [sym__digits] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4635), + [sym__code_span_start] = ACTIONS(4635), + [sym__emphasis_open_star] = ACTIONS(4635), + [sym__emphasis_open_underscore] = ACTIONS(4635), + [sym__strikeout_open] = ACTIONS(4635), + [sym__latex_span_start] = ACTIONS(4635), + [sym__single_quote_open] = ACTIONS(4635), + [sym__double_quote_open] = ACTIONS(4635), + [sym__superscript_open] = ACTIONS(4635), + [sym__subscript_open] = ACTIONS(4635), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4635), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4635), + [sym__cite_author_in_text] = ACTIONS(4635), + [sym__cite_suppress_author] = ACTIONS(4635), + [sym__shortcode_open_escaped] = ACTIONS(4635), + [sym__shortcode_open] = ACTIONS(4635), + [sym__unclosed_span] = ACTIONS(4635), + [sym__strong_emphasis_open_star] = ACTIONS(4635), + [sym__strong_emphasis_open_underscore] = ACTIONS(4635), + }, + [STATE(1091)] = { [sym__backslash_escape] = ACTIONS(4595), [sym_entity_reference] = ACTIONS(4595), [sym_numeric_character_reference] = ACTIONS(4595), @@ -121747,141 +121679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4595), [sym__strong_emphasis_open_underscore] = ACTIONS(4595), }, - [STATE(1093)] = { - [ts_builtin_sym_end] = ACTIONS(4583), - [sym__backslash_escape] = ACTIONS(4583), - [sym_entity_reference] = ACTIONS(4583), - [sym_numeric_character_reference] = ACTIONS(4583), - [anon_sym_LT] = ACTIONS(4585), - [anon_sym_GT] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(4583), - [anon_sym_DQUOTE] = ACTIONS(4583), - [anon_sym_POUND] = ACTIONS(4583), - [anon_sym_DOLLAR] = ACTIONS(4583), - [anon_sym_PERCENT] = ACTIONS(4583), - [anon_sym_AMP] = ACTIONS(4585), - [anon_sym_SQUOTE] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4583), - [anon_sym_COMMA] = ACTIONS(4583), - [anon_sym_DASH] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_SLASH] = ACTIONS(4583), - [anon_sym_COLON] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4583), - [anon_sym_EQ] = ACTIONS(4583), - [anon_sym_QMARK] = ACTIONS(4583), - [anon_sym_LBRACK] = ACTIONS(4585), - [anon_sym_BSLASH] = ACTIONS(4585), - [anon_sym_CARET] = ACTIONS(4585), - [anon_sym_BQUOTE] = ACTIONS(4583), - [anon_sym_LBRACE] = ACTIONS(4583), - [anon_sym_PIPE] = ACTIONS(4583), - [anon_sym_TILDE] = ACTIONS(4583), - [anon_sym_LPAREN] = ACTIONS(4583), - [anon_sym_RPAREN] = ACTIONS(4583), - [sym__newline_token] = ACTIONS(4583), - [aux_sym_insert_token1] = ACTIONS(4583), - [aux_sym_delete_token1] = ACTIONS(4583), - [aux_sym_highlight_token1] = ACTIONS(4583), - [aux_sym_edit_comment_token1] = ACTIONS(4583), - [anon_sym_CARET_LBRACK] = ACTIONS(4583), - [anon_sym_LBRACK_CARET] = ACTIONS(4583), - [sym_uri_autolink] = ACTIONS(4583), - [sym_email_autolink] = ACTIONS(4583), - [sym__whitespace_ge_2] = ACTIONS(4583), - [aux_sym__whitespace_token1] = ACTIONS(4585), - [sym__word_no_digit] = ACTIONS(4583), - [sym__digits] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4583), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4583), - [sym__code_span_start] = ACTIONS(4583), - [sym__emphasis_open_star] = ACTIONS(4583), - [sym__emphasis_open_underscore] = ACTIONS(4583), - [sym__strikeout_open] = ACTIONS(4583), - [sym__latex_span_start] = ACTIONS(4583), - [sym__single_quote_open] = ACTIONS(4583), - [sym__double_quote_open] = ACTIONS(4583), - [sym__superscript_open] = ACTIONS(4583), - [sym__subscript_open] = ACTIONS(4583), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4583), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4583), - [sym__cite_author_in_text] = ACTIONS(4583), - [sym__cite_suppress_author] = ACTIONS(4583), - [sym__shortcode_open_escaped] = ACTIONS(4583), - [sym__shortcode_open] = ACTIONS(4583), - [sym__unclosed_span] = ACTIONS(4583), - [sym__strong_emphasis_open_star] = ACTIONS(4583), - [sym__strong_emphasis_open_underscore] = ACTIONS(4583), - }, - [STATE(1094)] = { - [sym__backslash_escape] = ACTIONS(4587), - [sym_entity_reference] = ACTIONS(4587), - [sym_numeric_character_reference] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4589), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_DQUOTE] = ACTIONS(4587), - [anon_sym_POUND] = ACTIONS(4587), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_AMP] = ACTIONS(4589), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_COMMA] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_QMARK] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_BSLASH] = ACTIONS(4589), - [anon_sym_CARET] = ACTIONS(4589), - [anon_sym_BQUOTE] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_TILDE] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4587), - [anon_sym_RPAREN] = ACTIONS(4587), - [sym__newline_token] = ACTIONS(4587), - [aux_sym_insert_token1] = ACTIONS(4587), - [aux_sym_delete_token1] = ACTIONS(4587), - [aux_sym_highlight_token1] = ACTIONS(4587), - [aux_sym_edit_comment_token1] = ACTIONS(4587), - [anon_sym_CARET_LBRACK] = ACTIONS(4587), - [anon_sym_LBRACK_CARET] = ACTIONS(4587), - [sym_uri_autolink] = ACTIONS(4587), - [sym_email_autolink] = ACTIONS(4587), - [sym__whitespace_ge_2] = ACTIONS(4587), - [aux_sym__whitespace_token1] = ACTIONS(4589), - [sym__word_no_digit] = ACTIONS(4587), - [sym__digits] = ACTIONS(4587), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), - [sym__code_span_start] = ACTIONS(4587), - [sym__emphasis_open_star] = ACTIONS(4587), - [sym__emphasis_open_underscore] = ACTIONS(4587), - [sym__emphasis_close_star] = ACTIONS(4587), - [sym__strikeout_open] = ACTIONS(4587), - [sym__latex_span_start] = ACTIONS(4587), - [sym__single_quote_open] = ACTIONS(4587), - [sym__double_quote_open] = ACTIONS(4587), - [sym__superscript_open] = ACTIONS(4587), - [sym__subscript_open] = ACTIONS(4587), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), - [sym__cite_author_in_text] = ACTIONS(4587), - [sym__cite_suppress_author] = ACTIONS(4587), - [sym__shortcode_open_escaped] = ACTIONS(4587), - [sym__shortcode_open] = ACTIONS(4587), - [sym__unclosed_span] = ACTIONS(4587), - [sym__strong_emphasis_open_star] = ACTIONS(4587), - [sym__strong_emphasis_open_underscore] = ACTIONS(4587), - }, - [STATE(1095)] = { + [STATE(1092)] = { [sym__backslash_escape] = ACTIONS(4599), [sym_entity_reference] = ACTIONS(4599), [sym_numeric_character_reference] = ACTIONS(4599), @@ -121948,7 +121746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4599), [sym__strong_emphasis_open_underscore] = ACTIONS(4599), }, - [STATE(1096)] = { + [STATE(1093)] = { [sym__backslash_escape] = ACTIONS(4603), [sym_entity_reference] = ACTIONS(4603), [sym_numeric_character_reference] = ACTIONS(4603), @@ -122015,7 +121813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4603), [sym__strong_emphasis_open_underscore] = ACTIONS(4603), }, - [STATE(1097)] = { + [STATE(1094)] = { [sym__backslash_escape] = ACTIONS(4607), [sym_entity_reference] = ACTIONS(4607), [sym_numeric_character_reference] = ACTIONS(4607), @@ -122082,7 +121880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4607), [sym__strong_emphasis_open_underscore] = ACTIONS(4607), }, - [STATE(1098)] = { + [STATE(1095)] = { [sym__backslash_escape] = ACTIONS(4611), [sym_entity_reference] = ACTIONS(4611), [sym_numeric_character_reference] = ACTIONS(4611), @@ -122149,7 +121947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4611), [sym__strong_emphasis_open_underscore] = ACTIONS(4611), }, - [STATE(1099)] = { + [STATE(1096)] = { [sym__backslash_escape] = ACTIONS(4615), [sym_entity_reference] = ACTIONS(4615), [sym_numeric_character_reference] = ACTIONS(4615), @@ -122216,7 +122014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4615), [sym__strong_emphasis_open_underscore] = ACTIONS(4615), }, - [STATE(1100)] = { + [STATE(1097)] = { [sym__backslash_escape] = ACTIONS(4619), [sym_entity_reference] = ACTIONS(4619), [sym_numeric_character_reference] = ACTIONS(4619), @@ -122283,7 +122081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4619), [sym__strong_emphasis_open_underscore] = ACTIONS(4619), }, - [STATE(1101)] = { + [STATE(1098)] = { [sym__backslash_escape] = ACTIONS(4623), [sym_entity_reference] = ACTIONS(4623), [sym_numeric_character_reference] = ACTIONS(4623), @@ -122350,7 +122148,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4623), [sym__strong_emphasis_open_underscore] = ACTIONS(4623), }, - [STATE(1102)] = { + [STATE(1099)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__emphasis_close_star] = ACTIONS(4329), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + }, + [STATE(1100)] = { [sym__backslash_escape] = ACTIONS(4627), [sym_entity_reference] = ACTIONS(4627), [sym_numeric_character_reference] = ACTIONS(4627), @@ -122417,7 +122282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4627), [sym__strong_emphasis_open_underscore] = ACTIONS(4627), }, - [STATE(1103)] = { + [STATE(1101)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -122484,7 +122349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4631), [sym__strong_emphasis_open_underscore] = ACTIONS(4631), }, - [STATE(1104)] = { + [STATE(1102)] = { [sym__backslash_escape] = ACTIONS(4635), [sym_entity_reference] = ACTIONS(4635), [sym_numeric_character_reference] = ACTIONS(4635), @@ -122539,6 +122404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__single_quote_open] = ACTIONS(4635), [sym__double_quote_open] = ACTIONS(4635), [sym__superscript_open] = ACTIONS(4635), + [sym__superscript_close] = ACTIONS(4635), [sym__subscript_open] = ACTIONS(4635), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4635), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4635), @@ -122548,125 +122414,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__shortcode_open] = ACTIONS(4635), [sym__unclosed_span] = ACTIONS(4635), [sym__strong_emphasis_open_star] = ACTIONS(4635), - [sym__strong_emphasis_close_star] = ACTIONS(4635), [sym__strong_emphasis_open_underscore] = ACTIONS(4635), }, - [STATE(1105)] = { - [sym__backslash_escape] = ACTIONS(4639), - [sym_entity_reference] = ACTIONS(4639), - [sym_numeric_character_reference] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4641), - [anon_sym_GT] = ACTIONS(4639), - [anon_sym_BANG] = ACTIONS(4639), - [anon_sym_DQUOTE] = ACTIONS(4639), - [anon_sym_POUND] = ACTIONS(4639), - [anon_sym_DOLLAR] = ACTIONS(4639), - [anon_sym_PERCENT] = ACTIONS(4639), - [anon_sym_AMP] = ACTIONS(4641), - [anon_sym_SQUOTE] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4641), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_SLASH] = ACTIONS(4639), - [anon_sym_COLON] = ACTIONS(4639), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_EQ] = ACTIONS(4639), - [anon_sym_QMARK] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4641), - [anon_sym_BSLASH] = ACTIONS(4641), - [anon_sym_CARET] = ACTIONS(4641), - [anon_sym_BQUOTE] = ACTIONS(4639), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_PIPE] = ACTIONS(4639), - [anon_sym_TILDE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_RPAREN] = ACTIONS(4639), - [sym__newline_token] = ACTIONS(4639), - [aux_sym_insert_token1] = ACTIONS(4639), - [aux_sym_delete_token1] = ACTIONS(4639), - [aux_sym_highlight_token1] = ACTIONS(4639), - [aux_sym_edit_comment_token1] = ACTIONS(4639), - [anon_sym_CARET_LBRACK] = ACTIONS(4639), - [anon_sym_LBRACK_CARET] = ACTIONS(4639), - [sym_uri_autolink] = ACTIONS(4639), - [sym_email_autolink] = ACTIONS(4639), - [sym__whitespace_ge_2] = ACTIONS(4639), - [aux_sym__whitespace_token1] = ACTIONS(4641), - [sym__word_no_digit] = ACTIONS(4639), - [sym__digits] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4641), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4639), - [sym__code_span_start] = ACTIONS(4639), - [sym__emphasis_open_star] = ACTIONS(4639), - [sym__emphasis_open_underscore] = ACTIONS(4639), - [sym__strikeout_open] = ACTIONS(4639), - [sym__latex_span_start] = ACTIONS(4639), - [sym__single_quote_open] = ACTIONS(4639), - [sym__double_quote_open] = ACTIONS(4639), - [sym__superscript_open] = ACTIONS(4639), - [sym__superscript_close] = ACTIONS(4639), - [sym__subscript_open] = ACTIONS(4639), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4639), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4639), - [sym__cite_author_in_text] = ACTIONS(4639), - [sym__cite_suppress_author] = ACTIONS(4639), - [sym__shortcode_open_escaped] = ACTIONS(4639), - [sym__shortcode_open] = ACTIONS(4639), - [sym__unclosed_span] = ACTIONS(4639), - [sym__strong_emphasis_open_star] = ACTIONS(4639), - [sym__strong_emphasis_open_underscore] = ACTIONS(4639), - }, - [STATE(1106)] = { - [ts_builtin_sym_end] = ACTIONS(4639), - [sym__backslash_escape] = ACTIONS(4639), - [sym_entity_reference] = ACTIONS(4639), - [sym_numeric_character_reference] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4641), - [anon_sym_GT] = ACTIONS(4639), - [anon_sym_BANG] = ACTIONS(4639), - [anon_sym_DQUOTE] = ACTIONS(4639), - [anon_sym_POUND] = ACTIONS(4639), - [anon_sym_DOLLAR] = ACTIONS(4639), - [anon_sym_PERCENT] = ACTIONS(4639), - [anon_sym_AMP] = ACTIONS(4641), - [anon_sym_SQUOTE] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4641), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_SLASH] = ACTIONS(4639), - [anon_sym_COLON] = ACTIONS(4639), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_EQ] = ACTIONS(4639), - [anon_sym_QMARK] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4641), - [anon_sym_BSLASH] = ACTIONS(4641), - [anon_sym_CARET] = ACTIONS(4641), - [anon_sym_BQUOTE] = ACTIONS(4639), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_PIPE] = ACTIONS(4639), - [anon_sym_TILDE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_RPAREN] = ACTIONS(4639), - [sym__newline_token] = ACTIONS(4639), - [aux_sym_insert_token1] = ACTIONS(4639), - [aux_sym_delete_token1] = ACTIONS(4639), - [aux_sym_highlight_token1] = ACTIONS(4639), - [aux_sym_edit_comment_token1] = ACTIONS(4639), - [anon_sym_CARET_LBRACK] = ACTIONS(4639), - [anon_sym_LBRACK_CARET] = ACTIONS(4639), - [sym_uri_autolink] = ACTIONS(4639), - [sym_email_autolink] = ACTIONS(4639), - [sym__whitespace_ge_2] = ACTIONS(4639), - [aux_sym__whitespace_token1] = ACTIONS(4641), - [sym__word_no_digit] = ACTIONS(4639), - [sym__digits] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4641), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4639), - [sym__code_span_start] = ACTIONS(4639), + [STATE(1103)] = { + [sym__backslash_escape] = ACTIONS(4587), + [sym_entity_reference] = ACTIONS(4587), + [sym_numeric_character_reference] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4587), + [anon_sym_DQUOTE] = ACTIONS(4587), + [anon_sym_POUND] = ACTIONS(4587), + [anon_sym_DOLLAR] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4587), + [anon_sym_AMP] = ACTIONS(4589), + [anon_sym_SQUOTE] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_BSLASH] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4589), + [anon_sym_BQUOTE] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_PIPE] = ACTIONS(4587), + [anon_sym_TILDE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4587), + [sym__newline_token] = ACTIONS(4587), + [aux_sym_insert_token1] = ACTIONS(4587), + [aux_sym_delete_token1] = ACTIONS(4587), + [aux_sym_highlight_token1] = ACTIONS(4587), + [aux_sym_edit_comment_token1] = ACTIONS(4587), + [anon_sym_CARET_LBRACK] = ACTIONS(4587), + [anon_sym_LBRACK_CARET] = ACTIONS(4587), + [sym_uri_autolink] = ACTIONS(4587), + [sym_email_autolink] = ACTIONS(4587), + [sym__whitespace_ge_2] = ACTIONS(4587), + [aux_sym__whitespace_token1] = ACTIONS(4589), + [sym__word_no_digit] = ACTIONS(4587), + [sym__digits] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), + [sym__code_span_start] = ACTIONS(4587), + [sym__emphasis_open_star] = ACTIONS(4587), + [sym__emphasis_open_underscore] = ACTIONS(4587), + [sym__emphasis_close_star] = ACTIONS(4587), + [sym__strikeout_open] = ACTIONS(4587), + [sym__latex_span_start] = ACTIONS(4587), + [sym__single_quote_open] = ACTIONS(4587), + [sym__double_quote_open] = ACTIONS(4587), + [sym__superscript_open] = ACTIONS(4587), + [sym__subscript_open] = ACTIONS(4587), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), + [sym__cite_author_in_text] = ACTIONS(4587), + [sym__cite_suppress_author] = ACTIONS(4587), + [sym__shortcode_open_escaped] = ACTIONS(4587), + [sym__shortcode_open] = ACTIONS(4587), + [sym__unclosed_span] = ACTIONS(4587), + [sym__strong_emphasis_open_star] = ACTIONS(4587), + [sym__strong_emphasis_open_underscore] = ACTIONS(4587), + }, + [STATE(1104)] = { + [sym__backslash_escape] = ACTIONS(4591), + [sym_entity_reference] = ACTIONS(4591), + [sym_numeric_character_reference] = ACTIONS(4591), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_GT] = ACTIONS(4591), + [anon_sym_BANG] = ACTIONS(4591), + [anon_sym_DQUOTE] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4591), + [anon_sym_DOLLAR] = ACTIONS(4591), + [anon_sym_PERCENT] = ACTIONS(4591), + [anon_sym_AMP] = ACTIONS(4593), + [anon_sym_SQUOTE] = ACTIONS(4591), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [anon_sym_LBRACK] = ACTIONS(4593), + [anon_sym_BSLASH] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4593), + [anon_sym_BQUOTE] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4591), + [anon_sym_LPAREN] = ACTIONS(4591), + [anon_sym_RPAREN] = ACTIONS(4591), + [sym__newline_token] = ACTIONS(4591), + [aux_sym_insert_token1] = ACTIONS(4591), + [aux_sym_delete_token1] = ACTIONS(4591), + [aux_sym_highlight_token1] = ACTIONS(4591), + [aux_sym_edit_comment_token1] = ACTIONS(4591), + [anon_sym_CARET_LBRACK] = ACTIONS(4591), + [anon_sym_LBRACK_CARET] = ACTIONS(4591), + [sym_uri_autolink] = ACTIONS(4591), + [sym_email_autolink] = ACTIONS(4591), + [sym__whitespace_ge_2] = ACTIONS(4591), + [aux_sym__whitespace_token1] = ACTIONS(4593), + [sym__word_no_digit] = ACTIONS(4591), + [sym__digits] = ACTIONS(4591), + [anon_sym_DASH_DASH] = ACTIONS(4593), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4591), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), + [sym__code_span_start] = ACTIONS(4591), + [sym__emphasis_open_star] = ACTIONS(4591), + [sym__emphasis_open_underscore] = ACTIONS(4591), + [sym__emphasis_close_star] = ACTIONS(4591), + [sym__strikeout_open] = ACTIONS(4591), + [sym__latex_span_start] = ACTIONS(4591), + [sym__single_quote_open] = ACTIONS(4591), + [sym__double_quote_open] = ACTIONS(4591), + [sym__superscript_open] = ACTIONS(4591), + [sym__subscript_open] = ACTIONS(4591), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4591), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4591), + [sym__cite_author_in_text] = ACTIONS(4591), + [sym__cite_suppress_author] = ACTIONS(4591), + [sym__shortcode_open_escaped] = ACTIONS(4591), + [sym__shortcode_open] = ACTIONS(4591), + [sym__unclosed_span] = ACTIONS(4591), + [sym__strong_emphasis_open_star] = ACTIONS(4591), + [sym__strong_emphasis_open_underscore] = ACTIONS(4591), + }, + [STATE(1105)] = { + [sym__backslash_escape] = ACTIONS(4767), + [sym_entity_reference] = ACTIONS(4767), + [sym_numeric_character_reference] = ACTIONS(4767), + [anon_sym_LT] = ACTIONS(4769), + [anon_sym_GT] = ACTIONS(4767), + [anon_sym_BANG] = ACTIONS(4767), + [anon_sym_DQUOTE] = ACTIONS(4767), + [anon_sym_POUND] = ACTIONS(4767), + [anon_sym_DOLLAR] = ACTIONS(4767), + [anon_sym_PERCENT] = ACTIONS(4767), + [anon_sym_AMP] = ACTIONS(4769), + [anon_sym_SQUOTE] = ACTIONS(4767), + [anon_sym_PLUS] = ACTIONS(4767), + [anon_sym_COMMA] = ACTIONS(4767), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_DOT] = ACTIONS(4769), + [anon_sym_SLASH] = ACTIONS(4767), + [anon_sym_COLON] = ACTIONS(4767), + [anon_sym_SEMI] = ACTIONS(4767), + [anon_sym_EQ] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4767), + [anon_sym_LBRACK] = ACTIONS(4769), + [anon_sym_BSLASH] = ACTIONS(4769), + [anon_sym_RBRACK] = ACTIONS(4767), + [anon_sym_CARET] = ACTIONS(4769), + [anon_sym_BQUOTE] = ACTIONS(4767), + [anon_sym_LBRACE] = ACTIONS(4767), + [anon_sym_PIPE] = ACTIONS(4767), + [anon_sym_TILDE] = ACTIONS(4767), + [anon_sym_LPAREN] = ACTIONS(4767), + [anon_sym_RPAREN] = ACTIONS(4767), + [sym__newline_token] = ACTIONS(4767), + [aux_sym_insert_token1] = ACTIONS(4767), + [aux_sym_delete_token1] = ACTIONS(4767), + [aux_sym_highlight_token1] = ACTIONS(4767), + [aux_sym_edit_comment_token1] = ACTIONS(4767), + [anon_sym_CARET_LBRACK] = ACTIONS(4767), + [anon_sym_LBRACK_CARET] = ACTIONS(4767), + [sym_uri_autolink] = ACTIONS(4767), + [sym_email_autolink] = ACTIONS(4767), + [sym__whitespace_ge_2] = ACTIONS(4767), + [aux_sym__whitespace_token1] = ACTIONS(4769), + [sym__word_no_digit] = ACTIONS(4767), + [sym__digits] = ACTIONS(4767), + [anon_sym_DASH_DASH] = ACTIONS(4769), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4767), + [sym__code_span_start] = ACTIONS(4767), + [sym__emphasis_open_star] = ACTIONS(4767), + [sym__emphasis_open_underscore] = ACTIONS(4767), + [sym__strikeout_open] = ACTIONS(4767), + [sym__latex_span_start] = ACTIONS(4767), + [sym__single_quote_open] = ACTIONS(4767), + [sym__double_quote_open] = ACTIONS(4767), + [sym__superscript_open] = ACTIONS(4767), + [sym__subscript_open] = ACTIONS(4767), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4767), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4767), + [sym__cite_author_in_text] = ACTIONS(4767), + [sym__cite_suppress_author] = ACTIONS(4767), + [sym__shortcode_open_escaped] = ACTIONS(4767), + [sym__shortcode_open] = ACTIONS(4767), + [sym__unclosed_span] = ACTIONS(4767), + [sym__strong_emphasis_open_star] = ACTIONS(4767), + [sym__strong_emphasis_open_underscore] = ACTIONS(4767), + }, + [STATE(1106)] = { + [sym__backslash_escape] = ACTIONS(4639), + [sym_entity_reference] = ACTIONS(4639), + [sym_numeric_character_reference] = ACTIONS(4639), + [anon_sym_LT] = ACTIONS(4641), + [anon_sym_GT] = ACTIONS(4639), + [anon_sym_BANG] = ACTIONS(4639), + [anon_sym_DQUOTE] = ACTIONS(4639), + [anon_sym_POUND] = ACTIONS(4639), + [anon_sym_DOLLAR] = ACTIONS(4639), + [anon_sym_PERCENT] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4641), + [anon_sym_SQUOTE] = ACTIONS(4639), + [anon_sym_PLUS] = ACTIONS(4639), + [anon_sym_COMMA] = ACTIONS(4639), + [anon_sym_DASH] = ACTIONS(4641), + [anon_sym_DOT] = ACTIONS(4641), + [anon_sym_SLASH] = ACTIONS(4639), + [anon_sym_COLON] = ACTIONS(4639), + [anon_sym_SEMI] = ACTIONS(4639), + [anon_sym_EQ] = ACTIONS(4639), + [anon_sym_QMARK] = ACTIONS(4639), + [anon_sym_LBRACK] = ACTIONS(4641), + [anon_sym_BSLASH] = ACTIONS(4641), + [anon_sym_CARET] = ACTIONS(4641), + [anon_sym_BQUOTE] = ACTIONS(4639), + [anon_sym_LBRACE] = ACTIONS(4639), + [anon_sym_PIPE] = ACTIONS(4639), + [anon_sym_TILDE] = ACTIONS(4639), + [anon_sym_LPAREN] = ACTIONS(4639), + [anon_sym_RPAREN] = ACTIONS(4639), + [sym__newline_token] = ACTIONS(4639), + [aux_sym_insert_token1] = ACTIONS(4639), + [aux_sym_delete_token1] = ACTIONS(4639), + [aux_sym_highlight_token1] = ACTIONS(4639), + [aux_sym_edit_comment_token1] = ACTIONS(4639), + [anon_sym_CARET_LBRACK] = ACTIONS(4639), + [anon_sym_LBRACK_CARET] = ACTIONS(4639), + [sym_uri_autolink] = ACTIONS(4639), + [sym_email_autolink] = ACTIONS(4639), + [sym__whitespace_ge_2] = ACTIONS(4639), + [aux_sym__whitespace_token1] = ACTIONS(4641), + [sym__word_no_digit] = ACTIONS(4639), + [sym__digits] = ACTIONS(4639), + [anon_sym_DASH_DASH] = ACTIONS(4641), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4639), + [sym__code_span_start] = ACTIONS(4639), [sym__emphasis_open_star] = ACTIONS(4639), [sym__emphasis_open_underscore] = ACTIONS(4639), [sym__strikeout_open] = ACTIONS(4639), @@ -122675,6 +122673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__double_quote_open] = ACTIONS(4639), [sym__superscript_open] = ACTIONS(4639), [sym__subscript_open] = ACTIONS(4639), + [sym__subscript_close] = ACTIONS(4639), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4639), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4639), [sym__cite_author_in_text] = ACTIONS(4639), @@ -122741,7 +122740,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__double_quote_open] = ACTIONS(4643), [sym__superscript_open] = ACTIONS(4643), [sym__subscript_open] = ACTIONS(4643), - [sym__subscript_close] = ACTIONS(4643), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4643), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4643), [sym__cite_author_in_text] = ACTIONS(4643), @@ -122750,76 +122748,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__shortcode_open] = ACTIONS(4643), [sym__unclosed_span] = ACTIONS(4643), [sym__strong_emphasis_open_star] = ACTIONS(4643), + [sym__strong_emphasis_close_star] = ACTIONS(4643), [sym__strong_emphasis_open_underscore] = ACTIONS(4643), }, [STATE(1108)] = { - [sym__backslash_escape] = ACTIONS(4647), - [sym_entity_reference] = ACTIONS(4647), - [sym_numeric_character_reference] = ACTIONS(4647), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4647), - [anon_sym_BANG] = ACTIONS(4647), - [anon_sym_DQUOTE] = ACTIONS(4647), - [anon_sym_POUND] = ACTIONS(4647), - [anon_sym_DOLLAR] = ACTIONS(4647), - [anon_sym_PERCENT] = ACTIONS(4647), - [anon_sym_AMP] = ACTIONS(4649), - [anon_sym_SQUOTE] = ACTIONS(4647), - [anon_sym_PLUS] = ACTIONS(4647), - [anon_sym_COMMA] = ACTIONS(4647), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_SLASH] = ACTIONS(4647), - [anon_sym_COLON] = ACTIONS(4647), - [anon_sym_SEMI] = ACTIONS(4647), - [anon_sym_EQ] = ACTIONS(4647), - [anon_sym_QMARK] = ACTIONS(4647), - [anon_sym_LBRACK] = ACTIONS(4649), - [anon_sym_BSLASH] = ACTIONS(4649), - [anon_sym_CARET] = ACTIONS(4649), - [anon_sym_BQUOTE] = ACTIONS(4647), - [anon_sym_LBRACE] = ACTIONS(4647), - [anon_sym_PIPE] = ACTIONS(4647), - [anon_sym_TILDE] = ACTIONS(4647), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_RPAREN] = ACTIONS(4647), - [sym__newline_token] = ACTIONS(4647), - [aux_sym_insert_token1] = ACTIONS(4647), - [aux_sym_delete_token1] = ACTIONS(4647), - [aux_sym_highlight_token1] = ACTIONS(4647), - [aux_sym_edit_comment_token1] = ACTIONS(4647), - [anon_sym_CARET_LBRACK] = ACTIONS(4647), - [anon_sym_LBRACK_CARET] = ACTIONS(4647), - [sym_uri_autolink] = ACTIONS(4647), - [sym_email_autolink] = ACTIONS(4647), - [sym__whitespace_ge_2] = ACTIONS(4647), - [aux_sym__whitespace_token1] = ACTIONS(4649), - [sym__word_no_digit] = ACTIONS(4647), - [sym__digits] = ACTIONS(4647), - [anon_sym_DASH_DASH] = ACTIONS(4649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4647), - [sym__code_span_start] = ACTIONS(4647), - [sym__emphasis_open_star] = ACTIONS(4647), - [sym__emphasis_open_underscore] = ACTIONS(4647), - [sym__strikeout_open] = ACTIONS(4647), - [sym__latex_span_start] = ACTIONS(4647), - [sym__single_quote_open] = ACTIONS(4647), - [sym__double_quote_open] = ACTIONS(4647), - [sym__superscript_open] = ACTIONS(4647), - [sym__subscript_open] = ACTIONS(4647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4647), - [sym__cite_author_in_text] = ACTIONS(4647), - [sym__cite_suppress_author] = ACTIONS(4647), - [sym__shortcode_open_escaped] = ACTIONS(4647), - [sym__shortcode_open] = ACTIONS(4647), - [sym__unclosed_span] = ACTIONS(4647), - [sym__strong_emphasis_open_star] = ACTIONS(4647), - [sym__strong_emphasis_close_star] = ACTIONS(4647), - [sym__strong_emphasis_open_underscore] = ACTIONS(4647), - }, - [STATE(1109)] = { [sym__backslash_escape] = ACTIONS(4181), [sym_entity_reference] = ACTIONS(4181), [sym_numeric_character_reference] = ACTIONS(4181), @@ -122886,74 +122818,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4181), [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, - [STATE(1110)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__emphasis_close_star] = ACTIONS(4335), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(1109)] = { + [sym__backslash_escape] = ACTIONS(4647), + [sym_entity_reference] = ACTIONS(4647), + [sym_numeric_character_reference] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_POUND] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [anon_sym_PERCENT] = ACTIONS(4647), + [anon_sym_AMP] = ACTIONS(4649), + [anon_sym_SQUOTE] = ACTIONS(4647), + [anon_sym_PLUS] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4647), + [anon_sym_DASH] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4649), + [anon_sym_SLASH] = ACTIONS(4647), + [anon_sym_COLON] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_LBRACK] = ACTIONS(4649), + [anon_sym_BSLASH] = ACTIONS(4649), + [anon_sym_CARET] = ACTIONS(4649), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LBRACE] = ACTIONS(4647), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_TILDE] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4647), + [anon_sym_RPAREN] = ACTIONS(4647), + [sym__newline_token] = ACTIONS(4647), + [aux_sym_insert_token1] = ACTIONS(4647), + [aux_sym_delete_token1] = ACTIONS(4647), + [aux_sym_highlight_token1] = ACTIONS(4647), + [aux_sym_edit_comment_token1] = ACTIONS(4647), + [anon_sym_CARET_LBRACK] = ACTIONS(4647), + [anon_sym_LBRACK_CARET] = ACTIONS(4647), + [sym_uri_autolink] = ACTIONS(4647), + [sym_email_autolink] = ACTIONS(4647), + [sym__whitespace_ge_2] = ACTIONS(4647), + [aux_sym__whitespace_token1] = ACTIONS(4649), + [sym__word_no_digit] = ACTIONS(4647), + [sym__digits] = ACTIONS(4647), + [anon_sym_DASH_DASH] = ACTIONS(4649), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4647), + [sym__code_span_start] = ACTIONS(4647), + [sym__emphasis_open_star] = ACTIONS(4647), + [sym__emphasis_open_underscore] = ACTIONS(4647), + [sym__strikeout_open] = ACTIONS(4647), + [sym__latex_span_start] = ACTIONS(4647), + [sym__single_quote_open] = ACTIONS(4647), + [sym__double_quote_open] = ACTIONS(4647), + [sym__superscript_open] = ACTIONS(4647), + [sym__subscript_open] = ACTIONS(4647), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4647), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4647), + [sym__cite_author_in_text] = ACTIONS(4647), + [sym__cite_suppress_author] = ACTIONS(4647), + [sym__shortcode_open_escaped] = ACTIONS(4647), + [sym__shortcode_open] = ACTIONS(4647), + [sym__unclosed_span] = ACTIONS(4647), + [sym__strong_emphasis_open_star] = ACTIONS(4647), + [sym__strong_emphasis_close_star] = ACTIONS(4647), + [sym__strong_emphasis_open_underscore] = ACTIONS(4647), }, - [STATE(1111)] = { + [STATE(1110)] = { [sym__backslash_escape] = ACTIONS(4651), [sym_entity_reference] = ACTIONS(4651), [sym_numeric_character_reference] = ACTIONS(4651), @@ -123020,7 +122952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4651), [sym__strong_emphasis_open_underscore] = ACTIONS(4651), }, - [STATE(1112)] = { + [STATE(1111)] = { [sym__backslash_escape] = ACTIONS(4655), [sym_entity_reference] = ACTIONS(4655), [sym_numeric_character_reference] = ACTIONS(4655), @@ -123087,7 +123019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4655), [sym__strong_emphasis_open_underscore] = ACTIONS(4655), }, - [STATE(1113)] = { + [STATE(1112)] = { [sym__backslash_escape] = ACTIONS(4659), [sym_entity_reference] = ACTIONS(4659), [sym_numeric_character_reference] = ACTIONS(4659), @@ -123154,7 +123086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4659), [sym__strong_emphasis_open_underscore] = ACTIONS(4659), }, - [STATE(1114)] = { + [STATE(1113)] = { [sym__backslash_escape] = ACTIONS(4663), [sym_entity_reference] = ACTIONS(4663), [sym_numeric_character_reference] = ACTIONS(4663), @@ -123221,7 +123153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4663), [sym__strong_emphasis_open_underscore] = ACTIONS(4663), }, - [STATE(1115)] = { + [STATE(1114)] = { [sym__backslash_escape] = ACTIONS(4667), [sym_entity_reference] = ACTIONS(4667), [sym_numeric_character_reference] = ACTIONS(4667), @@ -123288,7 +123220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4667), [sym__strong_emphasis_open_underscore] = ACTIONS(4667), }, - [STATE(1116)] = { + [STATE(1115)] = { [sym__backslash_escape] = ACTIONS(4671), [sym_entity_reference] = ACTIONS(4671), [sym_numeric_character_reference] = ACTIONS(4671), @@ -123355,7 +123287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4671), [sym__strong_emphasis_open_underscore] = ACTIONS(4671), }, - [STATE(1117)] = { + [STATE(1116)] = { [sym__backslash_escape] = ACTIONS(4675), [sym_entity_reference] = ACTIONS(4675), [sym_numeric_character_reference] = ACTIONS(4675), @@ -123422,7 +123354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4675), [sym__strong_emphasis_open_underscore] = ACTIONS(4675), }, - [STATE(1118)] = { + [STATE(1117)] = { [sym__backslash_escape] = ACTIONS(4679), [sym_entity_reference] = ACTIONS(4679), [sym_numeric_character_reference] = ACTIONS(4679), @@ -123489,7 +123421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4679), [sym__strong_emphasis_open_underscore] = ACTIONS(4679), }, - [STATE(1119)] = { + [STATE(1118)] = { [sym__backslash_escape] = ACTIONS(4683), [sym_entity_reference] = ACTIONS(4683), [sym_numeric_character_reference] = ACTIONS(4683), @@ -123556,7 +123488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4683), [sym__strong_emphasis_open_underscore] = ACTIONS(4683), }, - [STATE(1120)] = { + [STATE(1119)] = { [sym__backslash_escape] = ACTIONS(4687), [sym_entity_reference] = ACTIONS(4687), [sym_numeric_character_reference] = ACTIONS(4687), @@ -123623,7 +123555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4687), [sym__strong_emphasis_open_underscore] = ACTIONS(4687), }, - [STATE(1121)] = { + [STATE(1120)] = { [sym__backslash_escape] = ACTIONS(4691), [sym_entity_reference] = ACTIONS(4691), [sym_numeric_character_reference] = ACTIONS(4691), @@ -123690,7 +123622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4691), [sym__strong_emphasis_open_underscore] = ACTIONS(4691), }, - [STATE(1122)] = { + [STATE(1121)] = { [sym__backslash_escape] = ACTIONS(4695), [sym_entity_reference] = ACTIONS(4695), [sym_numeric_character_reference] = ACTIONS(4695), @@ -123757,7 +123689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4695), [sym__strong_emphasis_open_underscore] = ACTIONS(4695), }, - [STATE(1123)] = { + [STATE(1122)] = { [sym__backslash_escape] = ACTIONS(4699), [sym_entity_reference] = ACTIONS(4699), [sym_numeric_character_reference] = ACTIONS(4699), @@ -123824,7 +123756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4699), [sym__strong_emphasis_open_underscore] = ACTIONS(4699), }, - [STATE(1124)] = { + [STATE(1123)] = { [sym__backslash_escape] = ACTIONS(4703), [sym_entity_reference] = ACTIONS(4703), [sym_numeric_character_reference] = ACTIONS(4703), @@ -123891,7 +123823,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4703), [sym__strong_emphasis_open_underscore] = ACTIONS(4703), }, + [STATE(1124)] = { + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_close_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + }, [STATE(1125)] = { + [sym__backslash_escape] = ACTIONS(4595), + [sym_entity_reference] = ACTIONS(4595), + [sym_numeric_character_reference] = ACTIONS(4595), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_BANG] = ACTIONS(4595), + [anon_sym_DQUOTE] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4595), + [anon_sym_DOLLAR] = ACTIONS(4595), + [anon_sym_PERCENT] = ACTIONS(4595), + [anon_sym_AMP] = ACTIONS(4597), + [anon_sym_SQUOTE] = ACTIONS(4595), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_COMMA] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [anon_sym_LBRACK] = ACTIONS(4597), + [anon_sym_BSLASH] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4597), + [anon_sym_BQUOTE] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4595), + [anon_sym_PIPE] = ACTIONS(4595), + [anon_sym_TILDE] = ACTIONS(4595), + [anon_sym_LPAREN] = ACTIONS(4595), + [anon_sym_RPAREN] = ACTIONS(4595), + [sym__newline_token] = ACTIONS(4595), + [aux_sym_insert_token1] = ACTIONS(4595), + [aux_sym_delete_token1] = ACTIONS(4595), + [aux_sym_highlight_token1] = ACTIONS(4595), + [aux_sym_edit_comment_token1] = ACTIONS(4595), + [anon_sym_CARET_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACK_CARET] = ACTIONS(4595), + [sym_uri_autolink] = ACTIONS(4595), + [sym_email_autolink] = ACTIONS(4595), + [sym__whitespace_ge_2] = ACTIONS(4595), + [aux_sym__whitespace_token1] = ACTIONS(4597), + [sym__word_no_digit] = ACTIONS(4595), + [sym__digits] = ACTIONS(4595), + [anon_sym_DASH_DASH] = ACTIONS(4597), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4595), + [sym__code_span_start] = ACTIONS(4595), + [sym__emphasis_open_star] = ACTIONS(4595), + [sym__emphasis_open_underscore] = ACTIONS(4595), + [sym__emphasis_close_star] = ACTIONS(4595), + [sym__strikeout_open] = ACTIONS(4595), + [sym__latex_span_start] = ACTIONS(4595), + [sym__single_quote_open] = ACTIONS(4595), + [sym__double_quote_open] = ACTIONS(4595), + [sym__superscript_open] = ACTIONS(4595), + [sym__subscript_open] = ACTIONS(4595), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4595), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4595), + [sym__cite_author_in_text] = ACTIONS(4595), + [sym__cite_suppress_author] = ACTIONS(4595), + [sym__shortcode_open_escaped] = ACTIONS(4595), + [sym__shortcode_open] = ACTIONS(4595), + [sym__unclosed_span] = ACTIONS(4595), + [sym__strong_emphasis_open_star] = ACTIONS(4595), + [sym__strong_emphasis_open_underscore] = ACTIONS(4595), + }, + [STATE(1126)] = { [sym__backslash_escape] = ACTIONS(4707), [sym_entity_reference] = ACTIONS(4707), [sym_numeric_character_reference] = ACTIONS(4707), @@ -123958,74 +124024,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4707), [sym__strong_emphasis_open_underscore] = ACTIONS(4707), }, - [STATE(1126)] = { - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_close_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - }, [STATE(1127)] = { + [sym__backslash_escape] = ACTIONS(4599), + [sym_entity_reference] = ACTIONS(4599), + [sym_numeric_character_reference] = ACTIONS(4599), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_GT] = ACTIONS(4599), + [anon_sym_BANG] = ACTIONS(4599), + [anon_sym_DQUOTE] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4599), + [anon_sym_DOLLAR] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_AMP] = ACTIONS(4601), + [anon_sym_SQUOTE] = ACTIONS(4599), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_COMMA] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(4601), + [anon_sym_BSLASH] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4601), + [anon_sym_BQUOTE] = ACTIONS(4599), + [anon_sym_LBRACE] = ACTIONS(4599), + [anon_sym_PIPE] = ACTIONS(4599), + [anon_sym_TILDE] = ACTIONS(4599), + [anon_sym_LPAREN] = ACTIONS(4599), + [anon_sym_RPAREN] = ACTIONS(4599), + [sym__newline_token] = ACTIONS(4599), + [aux_sym_insert_token1] = ACTIONS(4599), + [aux_sym_delete_token1] = ACTIONS(4599), + [aux_sym_highlight_token1] = ACTIONS(4599), + [aux_sym_edit_comment_token1] = ACTIONS(4599), + [anon_sym_CARET_LBRACK] = ACTIONS(4599), + [anon_sym_LBRACK_CARET] = ACTIONS(4599), + [sym_uri_autolink] = ACTIONS(4599), + [sym_email_autolink] = ACTIONS(4599), + [sym__whitespace_ge_2] = ACTIONS(4599), + [aux_sym__whitespace_token1] = ACTIONS(4601), + [sym__word_no_digit] = ACTIONS(4599), + [sym__digits] = ACTIONS(4599), + [anon_sym_DASH_DASH] = ACTIONS(4601), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4599), + [sym__code_span_start] = ACTIONS(4599), + [sym__emphasis_open_star] = ACTIONS(4599), + [sym__emphasis_open_underscore] = ACTIONS(4599), + [sym__emphasis_close_star] = ACTIONS(4599), + [sym__strikeout_open] = ACTIONS(4599), + [sym__latex_span_start] = ACTIONS(4599), + [sym__single_quote_open] = ACTIONS(4599), + [sym__double_quote_open] = ACTIONS(4599), + [sym__superscript_open] = ACTIONS(4599), + [sym__subscript_open] = ACTIONS(4599), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4599), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4599), + [sym__cite_author_in_text] = ACTIONS(4599), + [sym__cite_suppress_author] = ACTIONS(4599), + [sym__shortcode_open_escaped] = ACTIONS(4599), + [sym__shortcode_open] = ACTIONS(4599), + [sym__unclosed_span] = ACTIONS(4599), + [sym__strong_emphasis_open_star] = ACTIONS(4599), + [sym__strong_emphasis_open_underscore] = ACTIONS(4599), + }, + [STATE(1128)] = { [sym__backslash_escape] = ACTIONS(4711), [sym_entity_reference] = ACTIONS(4711), [sym_numeric_character_reference] = ACTIONS(4711), @@ -124092,74 +124158,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4711), [sym__strong_emphasis_open_underscore] = ACTIONS(4711), }, - [STATE(1128)] = { - [sym__backslash_escape] = ACTIONS(4591), - [sym_entity_reference] = ACTIONS(4591), - [sym_numeric_character_reference] = ACTIONS(4591), - [anon_sym_LT] = ACTIONS(4593), - [anon_sym_GT] = ACTIONS(4591), - [anon_sym_BANG] = ACTIONS(4591), - [anon_sym_DQUOTE] = ACTIONS(4591), - [anon_sym_POUND] = ACTIONS(4591), - [anon_sym_DOLLAR] = ACTIONS(4591), - [anon_sym_PERCENT] = ACTIONS(4591), - [anon_sym_AMP] = ACTIONS(4593), - [anon_sym_SQUOTE] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_COMMA] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4593), - [anon_sym_SLASH] = ACTIONS(4591), - [anon_sym_COLON] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4591), - [anon_sym_EQ] = ACTIONS(4591), - [anon_sym_QMARK] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_BSLASH] = ACTIONS(4593), - [anon_sym_CARET] = ACTIONS(4593), - [anon_sym_BQUOTE] = ACTIONS(4591), - [anon_sym_LBRACE] = ACTIONS(4591), - [anon_sym_PIPE] = ACTIONS(4591), - [anon_sym_TILDE] = ACTIONS(4591), - [anon_sym_LPAREN] = ACTIONS(4591), - [anon_sym_RPAREN] = ACTIONS(4591), - [sym__newline_token] = ACTIONS(4591), - [aux_sym_insert_token1] = ACTIONS(4591), - [aux_sym_delete_token1] = ACTIONS(4591), - [aux_sym_highlight_token1] = ACTIONS(4591), - [aux_sym_edit_comment_token1] = ACTIONS(4591), - [anon_sym_CARET_LBRACK] = ACTIONS(4591), - [anon_sym_LBRACK_CARET] = ACTIONS(4591), - [sym_uri_autolink] = ACTIONS(4591), - [sym_email_autolink] = ACTIONS(4591), - [sym__whitespace_ge_2] = ACTIONS(4591), - [aux_sym__whitespace_token1] = ACTIONS(4593), - [sym__word_no_digit] = ACTIONS(4591), - [sym__digits] = ACTIONS(4591), - [anon_sym_DASH_DASH] = ACTIONS(4593), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4591), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), - [sym__code_span_start] = ACTIONS(4591), - [sym__emphasis_open_star] = ACTIONS(4591), - [sym__emphasis_open_underscore] = ACTIONS(4591), - [sym__emphasis_close_star] = ACTIONS(4591), - [sym__strikeout_open] = ACTIONS(4591), - [sym__latex_span_start] = ACTIONS(4591), - [sym__single_quote_open] = ACTIONS(4591), - [sym__double_quote_open] = ACTIONS(4591), - [sym__superscript_open] = ACTIONS(4591), - [sym__subscript_open] = ACTIONS(4591), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4591), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4591), - [sym__cite_author_in_text] = ACTIONS(4591), - [sym__cite_suppress_author] = ACTIONS(4591), - [sym__shortcode_open_escaped] = ACTIONS(4591), - [sym__shortcode_open] = ACTIONS(4591), - [sym__unclosed_span] = ACTIONS(4591), - [sym__strong_emphasis_open_star] = ACTIONS(4591), - [sym__strong_emphasis_open_underscore] = ACTIONS(4591), - }, [STATE(1129)] = { + [sym__backslash_escape] = ACTIONS(4603), + [sym_entity_reference] = ACTIONS(4603), + [sym_numeric_character_reference] = ACTIONS(4603), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_GT] = ACTIONS(4603), + [anon_sym_BANG] = ACTIONS(4603), + [anon_sym_DQUOTE] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4603), + [anon_sym_DOLLAR] = ACTIONS(4603), + [anon_sym_PERCENT] = ACTIONS(4603), + [anon_sym_AMP] = ACTIONS(4605), + [anon_sym_SQUOTE] = ACTIONS(4603), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_COMMA] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [anon_sym_LBRACK] = ACTIONS(4605), + [anon_sym_BSLASH] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4605), + [anon_sym_BQUOTE] = ACTIONS(4603), + [anon_sym_LBRACE] = ACTIONS(4603), + [anon_sym_PIPE] = ACTIONS(4603), + [anon_sym_TILDE] = ACTIONS(4603), + [anon_sym_LPAREN] = ACTIONS(4603), + [anon_sym_RPAREN] = ACTIONS(4603), + [sym__newline_token] = ACTIONS(4603), + [aux_sym_insert_token1] = ACTIONS(4603), + [aux_sym_delete_token1] = ACTIONS(4603), + [aux_sym_highlight_token1] = ACTIONS(4603), + [aux_sym_edit_comment_token1] = ACTIONS(4603), + [anon_sym_CARET_LBRACK] = ACTIONS(4603), + [anon_sym_LBRACK_CARET] = ACTIONS(4603), + [sym_uri_autolink] = ACTIONS(4603), + [sym_email_autolink] = ACTIONS(4603), + [sym__whitespace_ge_2] = ACTIONS(4603), + [aux_sym__whitespace_token1] = ACTIONS(4605), + [sym__word_no_digit] = ACTIONS(4603), + [sym__digits] = ACTIONS(4603), + [anon_sym_DASH_DASH] = ACTIONS(4605), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4603), + [sym__code_span_start] = ACTIONS(4603), + [sym__emphasis_open_star] = ACTIONS(4603), + [sym__emphasis_open_underscore] = ACTIONS(4603), + [sym__emphasis_close_star] = ACTIONS(4603), + [sym__strikeout_open] = ACTIONS(4603), + [sym__latex_span_start] = ACTIONS(4603), + [sym__single_quote_open] = ACTIONS(4603), + [sym__double_quote_open] = ACTIONS(4603), + [sym__superscript_open] = ACTIONS(4603), + [sym__subscript_open] = ACTIONS(4603), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4603), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4603), + [sym__cite_author_in_text] = ACTIONS(4603), + [sym__cite_suppress_author] = ACTIONS(4603), + [sym__shortcode_open_escaped] = ACTIONS(4603), + [sym__shortcode_open] = ACTIONS(4603), + [sym__unclosed_span] = ACTIONS(4603), + [sym__strong_emphasis_open_star] = ACTIONS(4603), + [sym__strong_emphasis_open_underscore] = ACTIONS(4603), + }, + [STATE(1130)] = { [sym__backslash_escape] = ACTIONS(4715), [sym_entity_reference] = ACTIONS(4715), [sym_numeric_character_reference] = ACTIONS(4715), @@ -124226,74 +124292,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4715), [sym__strong_emphasis_open_underscore] = ACTIONS(4715), }, - [STATE(1130)] = { - [sym__backslash_escape] = ACTIONS(4595), - [sym_entity_reference] = ACTIONS(4595), - [sym_numeric_character_reference] = ACTIONS(4595), - [anon_sym_LT] = ACTIONS(4597), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_DQUOTE] = ACTIONS(4595), - [anon_sym_POUND] = ACTIONS(4595), - [anon_sym_DOLLAR] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4597), - [anon_sym_SQUOTE] = ACTIONS(4595), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_COMMA] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4597), - [anon_sym_DOT] = ACTIONS(4597), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_COLON] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_QMARK] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_BSLASH] = ACTIONS(4597), - [anon_sym_CARET] = ACTIONS(4597), - [anon_sym_BQUOTE] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(4595), - [anon_sym_PIPE] = ACTIONS(4595), - [anon_sym_TILDE] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(4595), - [anon_sym_RPAREN] = ACTIONS(4595), - [sym__newline_token] = ACTIONS(4595), - [aux_sym_insert_token1] = ACTIONS(4595), - [aux_sym_delete_token1] = ACTIONS(4595), - [aux_sym_highlight_token1] = ACTIONS(4595), - [aux_sym_edit_comment_token1] = ACTIONS(4595), - [anon_sym_CARET_LBRACK] = ACTIONS(4595), - [anon_sym_LBRACK_CARET] = ACTIONS(4595), - [sym_uri_autolink] = ACTIONS(4595), - [sym_email_autolink] = ACTIONS(4595), - [sym__whitespace_ge_2] = ACTIONS(4595), - [aux_sym__whitespace_token1] = ACTIONS(4597), - [sym__word_no_digit] = ACTIONS(4595), - [sym__digits] = ACTIONS(4595), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4595), - [sym__code_span_start] = ACTIONS(4595), - [sym__emphasis_open_star] = ACTIONS(4595), - [sym__emphasis_open_underscore] = ACTIONS(4595), - [sym__emphasis_close_star] = ACTIONS(4595), - [sym__strikeout_open] = ACTIONS(4595), - [sym__latex_span_start] = ACTIONS(4595), - [sym__single_quote_open] = ACTIONS(4595), - [sym__double_quote_open] = ACTIONS(4595), - [sym__superscript_open] = ACTIONS(4595), - [sym__subscript_open] = ACTIONS(4595), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4595), - [sym__cite_author_in_text] = ACTIONS(4595), - [sym__cite_suppress_author] = ACTIONS(4595), - [sym__shortcode_open_escaped] = ACTIONS(4595), - [sym__shortcode_open] = ACTIONS(4595), - [sym__unclosed_span] = ACTIONS(4595), - [sym__strong_emphasis_open_star] = ACTIONS(4595), - [sym__strong_emphasis_open_underscore] = ACTIONS(4595), - }, [STATE(1131)] = { + [sym__backslash_escape] = ACTIONS(4607), + [sym_entity_reference] = ACTIONS(4607), + [sym_numeric_character_reference] = ACTIONS(4607), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_GT] = ACTIONS(4607), + [anon_sym_BANG] = ACTIONS(4607), + [anon_sym_DQUOTE] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4607), + [anon_sym_DOLLAR] = ACTIONS(4607), + [anon_sym_PERCENT] = ACTIONS(4607), + [anon_sym_AMP] = ACTIONS(4609), + [anon_sym_SQUOTE] = ACTIONS(4607), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_COMMA] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_BSLASH] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4609), + [anon_sym_BQUOTE] = ACTIONS(4607), + [anon_sym_LBRACE] = ACTIONS(4607), + [anon_sym_PIPE] = ACTIONS(4607), + [anon_sym_TILDE] = ACTIONS(4607), + [anon_sym_LPAREN] = ACTIONS(4607), + [anon_sym_RPAREN] = ACTIONS(4607), + [sym__newline_token] = ACTIONS(4607), + [aux_sym_insert_token1] = ACTIONS(4607), + [aux_sym_delete_token1] = ACTIONS(4607), + [aux_sym_highlight_token1] = ACTIONS(4607), + [aux_sym_edit_comment_token1] = ACTIONS(4607), + [anon_sym_CARET_LBRACK] = ACTIONS(4607), + [anon_sym_LBRACK_CARET] = ACTIONS(4607), + [sym_uri_autolink] = ACTIONS(4607), + [sym_email_autolink] = ACTIONS(4607), + [sym__whitespace_ge_2] = ACTIONS(4607), + [aux_sym__whitespace_token1] = ACTIONS(4609), + [sym__word_no_digit] = ACTIONS(4607), + [sym__digits] = ACTIONS(4607), + [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4607), + [sym__code_span_start] = ACTIONS(4607), + [sym__emphasis_open_star] = ACTIONS(4607), + [sym__emphasis_open_underscore] = ACTIONS(4607), + [sym__emphasis_close_star] = ACTIONS(4607), + [sym__strikeout_open] = ACTIONS(4607), + [sym__latex_span_start] = ACTIONS(4607), + [sym__single_quote_open] = ACTIONS(4607), + [sym__double_quote_open] = ACTIONS(4607), + [sym__superscript_open] = ACTIONS(4607), + [sym__subscript_open] = ACTIONS(4607), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4607), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4607), + [sym__cite_author_in_text] = ACTIONS(4607), + [sym__cite_suppress_author] = ACTIONS(4607), + [sym__shortcode_open_escaped] = ACTIONS(4607), + [sym__shortcode_open] = ACTIONS(4607), + [sym__unclosed_span] = ACTIONS(4607), + [sym__strong_emphasis_open_star] = ACTIONS(4607), + [sym__strong_emphasis_open_underscore] = ACTIONS(4607), + }, + [STATE(1132)] = { + [sym__backslash_escape] = ACTIONS(4611), + [sym_entity_reference] = ACTIONS(4611), + [sym_numeric_character_reference] = ACTIONS(4611), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_GT] = ACTIONS(4611), + [anon_sym_BANG] = ACTIONS(4611), + [anon_sym_DQUOTE] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4611), + [anon_sym_DOLLAR] = ACTIONS(4611), + [anon_sym_PERCENT] = ACTIONS(4611), + [anon_sym_AMP] = ACTIONS(4613), + [anon_sym_SQUOTE] = ACTIONS(4611), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_COMMA] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_BSLASH] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4613), + [anon_sym_BQUOTE] = ACTIONS(4611), + [anon_sym_LBRACE] = ACTIONS(4611), + [anon_sym_PIPE] = ACTIONS(4611), + [anon_sym_TILDE] = ACTIONS(4611), + [anon_sym_LPAREN] = ACTIONS(4611), + [anon_sym_RPAREN] = ACTIONS(4611), + [sym__newline_token] = ACTIONS(4611), + [aux_sym_insert_token1] = ACTIONS(4611), + [aux_sym_delete_token1] = ACTIONS(4611), + [aux_sym_highlight_token1] = ACTIONS(4611), + [aux_sym_edit_comment_token1] = ACTIONS(4611), + [anon_sym_CARET_LBRACK] = ACTIONS(4611), + [anon_sym_LBRACK_CARET] = ACTIONS(4611), + [sym_uri_autolink] = ACTIONS(4611), + [sym_email_autolink] = ACTIONS(4611), + [sym__whitespace_ge_2] = ACTIONS(4611), + [aux_sym__whitespace_token1] = ACTIONS(4613), + [sym__word_no_digit] = ACTIONS(4611), + [sym__digits] = ACTIONS(4611), + [anon_sym_DASH_DASH] = ACTIONS(4613), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4611), + [sym__code_span_start] = ACTIONS(4611), + [sym__emphasis_open_star] = ACTIONS(4611), + [sym__emphasis_open_underscore] = ACTIONS(4611), + [sym__emphasis_close_star] = ACTIONS(4611), + [sym__strikeout_open] = ACTIONS(4611), + [sym__latex_span_start] = ACTIONS(4611), + [sym__single_quote_open] = ACTIONS(4611), + [sym__double_quote_open] = ACTIONS(4611), + [sym__superscript_open] = ACTIONS(4611), + [sym__subscript_open] = ACTIONS(4611), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4611), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4611), + [sym__cite_author_in_text] = ACTIONS(4611), + [sym__cite_suppress_author] = ACTIONS(4611), + [sym__shortcode_open_escaped] = ACTIONS(4611), + [sym__shortcode_open] = ACTIONS(4611), + [sym__unclosed_span] = ACTIONS(4611), + [sym__strong_emphasis_open_star] = ACTIONS(4611), + [sym__strong_emphasis_open_underscore] = ACTIONS(4611), + }, + [STATE(1133)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_close_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), + }, + [STATE(1134)] = { + [sym__backslash_escape] = ACTIONS(4615), + [sym_entity_reference] = ACTIONS(4615), + [sym_numeric_character_reference] = ACTIONS(4615), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_GT] = ACTIONS(4615), + [anon_sym_BANG] = ACTIONS(4615), + [anon_sym_DQUOTE] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4615), + [anon_sym_DOLLAR] = ACTIONS(4615), + [anon_sym_PERCENT] = ACTIONS(4615), + [anon_sym_AMP] = ACTIONS(4617), + [anon_sym_SQUOTE] = ACTIONS(4615), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_COMMA] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [anon_sym_LBRACK] = ACTIONS(4617), + [anon_sym_BSLASH] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4617), + [anon_sym_BQUOTE] = ACTIONS(4615), + [anon_sym_LBRACE] = ACTIONS(4615), + [anon_sym_PIPE] = ACTIONS(4615), + [anon_sym_TILDE] = ACTIONS(4615), + [anon_sym_LPAREN] = ACTIONS(4615), + [anon_sym_RPAREN] = ACTIONS(4615), + [sym__newline_token] = ACTIONS(4615), + [aux_sym_insert_token1] = ACTIONS(4615), + [aux_sym_delete_token1] = ACTIONS(4615), + [aux_sym_highlight_token1] = ACTIONS(4615), + [aux_sym_edit_comment_token1] = ACTIONS(4615), + [anon_sym_CARET_LBRACK] = ACTIONS(4615), + [anon_sym_LBRACK_CARET] = ACTIONS(4615), + [sym_uri_autolink] = ACTIONS(4615), + [sym_email_autolink] = ACTIONS(4615), + [sym__whitespace_ge_2] = ACTIONS(4615), + [aux_sym__whitespace_token1] = ACTIONS(4617), + [sym__word_no_digit] = ACTIONS(4615), + [sym__digits] = ACTIONS(4615), + [anon_sym_DASH_DASH] = ACTIONS(4617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4615), + [sym__code_span_start] = ACTIONS(4615), + [sym__emphasis_open_star] = ACTIONS(4615), + [sym__emphasis_open_underscore] = ACTIONS(4615), + [sym__emphasis_close_star] = ACTIONS(4615), + [sym__strikeout_open] = ACTIONS(4615), + [sym__latex_span_start] = ACTIONS(4615), + [sym__single_quote_open] = ACTIONS(4615), + [sym__double_quote_open] = ACTIONS(4615), + [sym__superscript_open] = ACTIONS(4615), + [sym__subscript_open] = ACTIONS(4615), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4615), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4615), + [sym__cite_author_in_text] = ACTIONS(4615), + [sym__cite_suppress_author] = ACTIONS(4615), + [sym__shortcode_open_escaped] = ACTIONS(4615), + [sym__shortcode_open] = ACTIONS(4615), + [sym__unclosed_span] = ACTIONS(4615), + [sym__strong_emphasis_open_star] = ACTIONS(4615), + [sym__strong_emphasis_open_underscore] = ACTIONS(4615), + }, + [STATE(1135)] = { [sym__backslash_escape] = ACTIONS(4719), [sym_entity_reference] = ACTIONS(4719), [sym_numeric_character_reference] = ACTIONS(4719), @@ -124360,141 +124627,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4719), [sym__strong_emphasis_open_underscore] = ACTIONS(4719), }, - [STATE(1132)] = { - [sym__backslash_escape] = ACTIONS(4767), - [sym_entity_reference] = ACTIONS(4767), - [sym_numeric_character_reference] = ACTIONS(4767), - [anon_sym_LT] = ACTIONS(4769), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_BANG] = ACTIONS(4767), - [anon_sym_DQUOTE] = ACTIONS(4767), - [anon_sym_POUND] = ACTIONS(4767), - [anon_sym_DOLLAR] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4767), - [anon_sym_AMP] = ACTIONS(4769), - [anon_sym_SQUOTE] = ACTIONS(4767), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_COMMA] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4769), - [anon_sym_DOT] = ACTIONS(4769), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_COLON] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_QMARK] = ACTIONS(4767), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_BSLASH] = ACTIONS(4769), - [anon_sym_RBRACK] = ACTIONS(4767), - [anon_sym_CARET] = ACTIONS(4769), - [anon_sym_BQUOTE] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4767), - [anon_sym_PIPE] = ACTIONS(4767), - [anon_sym_TILDE] = ACTIONS(4767), - [anon_sym_LPAREN] = ACTIONS(4767), - [anon_sym_RPAREN] = ACTIONS(4767), - [sym__newline_token] = ACTIONS(4767), - [aux_sym_insert_token1] = ACTIONS(4767), - [aux_sym_delete_token1] = ACTIONS(4767), - [aux_sym_highlight_token1] = ACTIONS(4767), - [aux_sym_edit_comment_token1] = ACTIONS(4767), - [anon_sym_CARET_LBRACK] = ACTIONS(4767), - [anon_sym_LBRACK_CARET] = ACTIONS(4767), - [sym_uri_autolink] = ACTIONS(4767), - [sym_email_autolink] = ACTIONS(4767), - [sym__whitespace_ge_2] = ACTIONS(4767), - [aux_sym__whitespace_token1] = ACTIONS(4769), - [sym__word_no_digit] = ACTIONS(4767), - [sym__digits] = ACTIONS(4767), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4767), - [sym__code_span_start] = ACTIONS(4767), - [sym__emphasis_open_star] = ACTIONS(4767), - [sym__emphasis_open_underscore] = ACTIONS(4767), - [sym__strikeout_open] = ACTIONS(4767), - [sym__latex_span_start] = ACTIONS(4767), - [sym__single_quote_open] = ACTIONS(4767), - [sym__double_quote_open] = ACTIONS(4767), - [sym__superscript_open] = ACTIONS(4767), - [sym__subscript_open] = ACTIONS(4767), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4767), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4767), - [sym__cite_author_in_text] = ACTIONS(4767), - [sym__cite_suppress_author] = ACTIONS(4767), - [sym__shortcode_open_escaped] = ACTIONS(4767), - [sym__shortcode_open] = ACTIONS(4767), - [sym__unclosed_span] = ACTIONS(4767), - [sym__strong_emphasis_open_star] = ACTIONS(4767), - [sym__strong_emphasis_open_underscore] = ACTIONS(4767), + [STATE(1136)] = { + [sym__backslash_escape] = ACTIONS(4619), + [sym_entity_reference] = ACTIONS(4619), + [sym_numeric_character_reference] = ACTIONS(4619), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_GT] = ACTIONS(4619), + [anon_sym_BANG] = ACTIONS(4619), + [anon_sym_DQUOTE] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4619), + [anon_sym_DOLLAR] = ACTIONS(4619), + [anon_sym_PERCENT] = ACTIONS(4619), + [anon_sym_AMP] = ACTIONS(4621), + [anon_sym_SQUOTE] = ACTIONS(4619), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_COMMA] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [anon_sym_LBRACK] = ACTIONS(4621), + [anon_sym_BSLASH] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4621), + [anon_sym_BQUOTE] = ACTIONS(4619), + [anon_sym_LBRACE] = ACTIONS(4619), + [anon_sym_PIPE] = ACTIONS(4619), + [anon_sym_TILDE] = ACTIONS(4619), + [anon_sym_LPAREN] = ACTIONS(4619), + [anon_sym_RPAREN] = ACTIONS(4619), + [sym__newline_token] = ACTIONS(4619), + [aux_sym_insert_token1] = ACTIONS(4619), + [aux_sym_delete_token1] = ACTIONS(4619), + [aux_sym_highlight_token1] = ACTIONS(4619), + [aux_sym_edit_comment_token1] = ACTIONS(4619), + [anon_sym_CARET_LBRACK] = ACTIONS(4619), + [anon_sym_LBRACK_CARET] = ACTIONS(4619), + [sym_uri_autolink] = ACTIONS(4619), + [sym_email_autolink] = ACTIONS(4619), + [sym__whitespace_ge_2] = ACTIONS(4619), + [aux_sym__whitespace_token1] = ACTIONS(4621), + [sym__word_no_digit] = ACTIONS(4619), + [sym__digits] = ACTIONS(4619), + [anon_sym_DASH_DASH] = ACTIONS(4621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4619), + [sym__code_span_start] = ACTIONS(4619), + [sym__emphasis_open_star] = ACTIONS(4619), + [sym__emphasis_open_underscore] = ACTIONS(4619), + [sym__emphasis_close_star] = ACTIONS(4619), + [sym__strikeout_open] = ACTIONS(4619), + [sym__latex_span_start] = ACTIONS(4619), + [sym__single_quote_open] = ACTIONS(4619), + [sym__double_quote_open] = ACTIONS(4619), + [sym__superscript_open] = ACTIONS(4619), + [sym__subscript_open] = ACTIONS(4619), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4619), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4619), + [sym__cite_author_in_text] = ACTIONS(4619), + [sym__cite_suppress_author] = ACTIONS(4619), + [sym__shortcode_open_escaped] = ACTIONS(4619), + [sym__shortcode_open] = ACTIONS(4619), + [sym__unclosed_span] = ACTIONS(4619), + [sym__strong_emphasis_open_star] = ACTIONS(4619), + [sym__strong_emphasis_open_underscore] = ACTIONS(4619), }, - [STATE(1133)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_close_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), + [STATE(1137)] = { + [sym__backslash_escape] = ACTIONS(4623), + [sym_entity_reference] = ACTIONS(4623), + [sym_numeric_character_reference] = ACTIONS(4623), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_BANG] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4623), + [anon_sym_DOLLAR] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_AMP] = ACTIONS(4625), + [anon_sym_SQUOTE] = ACTIONS(4623), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_COMMA] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_BSLASH] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4625), + [anon_sym_BQUOTE] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4623), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_TILDE] = ACTIONS(4623), + [anon_sym_LPAREN] = ACTIONS(4623), + [anon_sym_RPAREN] = ACTIONS(4623), + [sym__newline_token] = ACTIONS(4623), + [aux_sym_insert_token1] = ACTIONS(4623), + [aux_sym_delete_token1] = ACTIONS(4623), + [aux_sym_highlight_token1] = ACTIONS(4623), + [aux_sym_edit_comment_token1] = ACTIONS(4623), + [anon_sym_CARET_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACK_CARET] = ACTIONS(4623), + [sym_uri_autolink] = ACTIONS(4623), + [sym_email_autolink] = ACTIONS(4623), + [sym__whitespace_ge_2] = ACTIONS(4623), + [aux_sym__whitespace_token1] = ACTIONS(4625), + [sym__word_no_digit] = ACTIONS(4623), + [sym__digits] = ACTIONS(4623), + [anon_sym_DASH_DASH] = ACTIONS(4625), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4623), + [sym__code_span_start] = ACTIONS(4623), + [sym__emphasis_open_star] = ACTIONS(4623), + [sym__emphasis_open_underscore] = ACTIONS(4623), + [sym__emphasis_close_star] = ACTIONS(4623), + [sym__strikeout_open] = ACTIONS(4623), + [sym__latex_span_start] = ACTIONS(4623), + [sym__single_quote_open] = ACTIONS(4623), + [sym__double_quote_open] = ACTIONS(4623), + [sym__superscript_open] = ACTIONS(4623), + [sym__subscript_open] = ACTIONS(4623), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4623), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4623), + [sym__cite_author_in_text] = ACTIONS(4623), + [sym__cite_suppress_author] = ACTIONS(4623), + [sym__shortcode_open_escaped] = ACTIONS(4623), + [sym__shortcode_open] = ACTIONS(4623), + [sym__unclosed_span] = ACTIONS(4623), + [sym__strong_emphasis_open_star] = ACTIONS(4623), + [sym__strong_emphasis_open_underscore] = ACTIONS(4623), }, - [STATE(1134)] = { + [STATE(1138)] = { [sym__backslash_escape] = ACTIONS(4723), [sym_entity_reference] = ACTIONS(4723), [sym_numeric_character_reference] = ACTIONS(4723), @@ -124561,141 +124828,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4723), [sym__strong_emphasis_open_underscore] = ACTIONS(4723), }, - [STATE(1135)] = { - [sym__backslash_escape] = ACTIONS(4599), - [sym_entity_reference] = ACTIONS(4599), - [sym_numeric_character_reference] = ACTIONS(4599), - [anon_sym_LT] = ACTIONS(4601), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_BANG] = ACTIONS(4599), - [anon_sym_DQUOTE] = ACTIONS(4599), - [anon_sym_POUND] = ACTIONS(4599), - [anon_sym_DOLLAR] = ACTIONS(4599), - [anon_sym_PERCENT] = ACTIONS(4599), - [anon_sym_AMP] = ACTIONS(4601), - [anon_sym_SQUOTE] = ACTIONS(4599), - [anon_sym_PLUS] = ACTIONS(4599), - [anon_sym_COMMA] = ACTIONS(4599), - [anon_sym_DASH] = ACTIONS(4601), - [anon_sym_DOT] = ACTIONS(4601), - [anon_sym_SLASH] = ACTIONS(4599), - [anon_sym_COLON] = ACTIONS(4599), - [anon_sym_SEMI] = ACTIONS(4599), - [anon_sym_EQ] = ACTIONS(4599), - [anon_sym_QMARK] = ACTIONS(4599), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_BSLASH] = ACTIONS(4601), - [anon_sym_CARET] = ACTIONS(4601), - [anon_sym_BQUOTE] = ACTIONS(4599), - [anon_sym_LBRACE] = ACTIONS(4599), - [anon_sym_PIPE] = ACTIONS(4599), - [anon_sym_TILDE] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4599), - [anon_sym_RPAREN] = ACTIONS(4599), - [sym__newline_token] = ACTIONS(4599), - [aux_sym_insert_token1] = ACTIONS(4599), - [aux_sym_delete_token1] = ACTIONS(4599), - [aux_sym_highlight_token1] = ACTIONS(4599), - [aux_sym_edit_comment_token1] = ACTIONS(4599), - [anon_sym_CARET_LBRACK] = ACTIONS(4599), - [anon_sym_LBRACK_CARET] = ACTIONS(4599), - [sym_uri_autolink] = ACTIONS(4599), - [sym_email_autolink] = ACTIONS(4599), - [sym__whitespace_ge_2] = ACTIONS(4599), - [aux_sym__whitespace_token1] = ACTIONS(4601), - [sym__word_no_digit] = ACTIONS(4599), - [sym__digits] = ACTIONS(4599), - [anon_sym_DASH_DASH] = ACTIONS(4601), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4599), - [sym__code_span_start] = ACTIONS(4599), - [sym__emphasis_open_star] = ACTIONS(4599), - [sym__emphasis_open_underscore] = ACTIONS(4599), - [sym__emphasis_close_star] = ACTIONS(4599), - [sym__strikeout_open] = ACTIONS(4599), - [sym__latex_span_start] = ACTIONS(4599), - [sym__single_quote_open] = ACTIONS(4599), - [sym__double_quote_open] = ACTIONS(4599), - [sym__superscript_open] = ACTIONS(4599), - [sym__subscript_open] = ACTIONS(4599), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4599), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4599), - [sym__cite_author_in_text] = ACTIONS(4599), - [sym__cite_suppress_author] = ACTIONS(4599), - [sym__shortcode_open_escaped] = ACTIONS(4599), - [sym__shortcode_open] = ACTIONS(4599), - [sym__unclosed_span] = ACTIONS(4599), - [sym__strong_emphasis_open_star] = ACTIONS(4599), - [sym__strong_emphasis_open_underscore] = ACTIONS(4599), + [STATE(1139)] = { + [sym__backslash_escape] = ACTIONS(4527), + [sym_entity_reference] = ACTIONS(4527), + [sym_numeric_character_reference] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_POUND] = ACTIONS(4527), + [anon_sym_DOLLAR] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_BSLASH] = ACTIONS(4529), + [anon_sym_CARET] = ACTIONS(4529), + [anon_sym_BQUOTE] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_RPAREN] = ACTIONS(4527), + [sym__newline_token] = ACTIONS(4527), + [aux_sym_insert_token1] = ACTIONS(4527), + [aux_sym_delete_token1] = ACTIONS(4527), + [aux_sym_highlight_token1] = ACTIONS(4527), + [aux_sym_edit_comment_token1] = ACTIONS(4527), + [anon_sym_CARET_LBRACK] = ACTIONS(4527), + [anon_sym_LBRACK_CARET] = ACTIONS(4527), + [sym_uri_autolink] = ACTIONS(4527), + [sym_email_autolink] = ACTIONS(4527), + [sym__whitespace_ge_2] = ACTIONS(4527), + [aux_sym__whitespace_token1] = ACTIONS(4529), + [sym__word_no_digit] = ACTIONS(4527), + [sym__digits] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), + [sym__code_span_start] = ACTIONS(4527), + [sym__emphasis_open_star] = ACTIONS(4527), + [sym__emphasis_open_underscore] = ACTIONS(4527), + [sym__strikeout_open] = ACTIONS(4527), + [sym__latex_span_start] = ACTIONS(4527), + [sym__single_quote_open] = ACTIONS(4527), + [sym__double_quote_open] = ACTIONS(4527), + [sym__superscript_open] = ACTIONS(4527), + [sym__subscript_open] = ACTIONS(4527), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), + [sym__cite_author_in_text] = ACTIONS(4527), + [sym__cite_suppress_author] = ACTIONS(4527), + [sym__shortcode_open_escaped] = ACTIONS(4527), + [sym__shortcode_open] = ACTIONS(4527), + [sym__unclosed_span] = ACTIONS(4527), + [sym__strong_emphasis_open_star] = ACTIONS(4527), + [sym__strong_emphasis_close_star] = ACTIONS(4527), + [sym__strong_emphasis_open_underscore] = ACTIONS(4527), }, - [STATE(1136)] = { - [sym__backslash_escape] = ACTIONS(4603), - [sym_entity_reference] = ACTIONS(4603), - [sym_numeric_character_reference] = ACTIONS(4603), - [anon_sym_LT] = ACTIONS(4605), - [anon_sym_GT] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(4603), - [anon_sym_DQUOTE] = ACTIONS(4603), - [anon_sym_POUND] = ACTIONS(4603), - [anon_sym_DOLLAR] = ACTIONS(4603), - [anon_sym_PERCENT] = ACTIONS(4603), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_SQUOTE] = ACTIONS(4603), - [anon_sym_PLUS] = ACTIONS(4603), - [anon_sym_COMMA] = ACTIONS(4603), - [anon_sym_DASH] = ACTIONS(4605), - [anon_sym_DOT] = ACTIONS(4605), - [anon_sym_SLASH] = ACTIONS(4603), - [anon_sym_COLON] = ACTIONS(4603), - [anon_sym_SEMI] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(4603), - [anon_sym_QMARK] = ACTIONS(4603), - [anon_sym_LBRACK] = ACTIONS(4605), - [anon_sym_BSLASH] = ACTIONS(4605), - [anon_sym_CARET] = ACTIONS(4605), - [anon_sym_BQUOTE] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(4603), - [anon_sym_PIPE] = ACTIONS(4603), - [anon_sym_TILDE] = ACTIONS(4603), - [anon_sym_LPAREN] = ACTIONS(4603), - [anon_sym_RPAREN] = ACTIONS(4603), - [sym__newline_token] = ACTIONS(4603), - [aux_sym_insert_token1] = ACTIONS(4603), - [aux_sym_delete_token1] = ACTIONS(4603), - [aux_sym_highlight_token1] = ACTIONS(4603), - [aux_sym_edit_comment_token1] = ACTIONS(4603), - [anon_sym_CARET_LBRACK] = ACTIONS(4603), - [anon_sym_LBRACK_CARET] = ACTIONS(4603), - [sym_uri_autolink] = ACTIONS(4603), - [sym_email_autolink] = ACTIONS(4603), - [sym__whitespace_ge_2] = ACTIONS(4603), - [aux_sym__whitespace_token1] = ACTIONS(4605), - [sym__word_no_digit] = ACTIONS(4603), - [sym__digits] = ACTIONS(4603), - [anon_sym_DASH_DASH] = ACTIONS(4605), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4603), - [sym__code_span_start] = ACTIONS(4603), - [sym__emphasis_open_star] = ACTIONS(4603), - [sym__emphasis_open_underscore] = ACTIONS(4603), - [sym__emphasis_close_star] = ACTIONS(4603), - [sym__strikeout_open] = ACTIONS(4603), - [sym__latex_span_start] = ACTIONS(4603), - [sym__single_quote_open] = ACTIONS(4603), - [sym__double_quote_open] = ACTIONS(4603), - [sym__superscript_open] = ACTIONS(4603), - [sym__subscript_open] = ACTIONS(4603), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4603), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4603), - [sym__cite_author_in_text] = ACTIONS(4603), - [sym__cite_suppress_author] = ACTIONS(4603), - [sym__shortcode_open_escaped] = ACTIONS(4603), - [sym__shortcode_open] = ACTIONS(4603), - [sym__unclosed_span] = ACTIONS(4603), - [sym__strong_emphasis_open_star] = ACTIONS(4603), - [sym__strong_emphasis_open_underscore] = ACTIONS(4603), - }, - [STATE(1137)] = { + [STATE(1140)] = { [sym__backslash_escape] = ACTIONS(4727), [sym_entity_reference] = ACTIONS(4727), [sym_numeric_character_reference] = ACTIONS(4727), @@ -124762,7 +124962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4727), [sym__strong_emphasis_open_underscore] = ACTIONS(4727), }, - [STATE(1138)] = { + [STATE(1141)] = { [sym__backslash_escape] = ACTIONS(4731), [sym_entity_reference] = ACTIONS(4731), [sym_numeric_character_reference] = ACTIONS(4731), @@ -124829,7 +125029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4731), [sym__strong_emphasis_open_underscore] = ACTIONS(4731), }, - [STATE(1139)] = { + [STATE(1142)] = { [sym__backslash_escape] = ACTIONS(4735), [sym_entity_reference] = ACTIONS(4735), [sym_numeric_character_reference] = ACTIONS(4735), @@ -124896,7 +125096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4735), [sym__strong_emphasis_open_underscore] = ACTIONS(4735), }, - [STATE(1140)] = { + [STATE(1143)] = { [sym__backslash_escape] = ACTIONS(4739), [sym_entity_reference] = ACTIONS(4739), [sym_numeric_character_reference] = ACTIONS(4739), @@ -124963,7 +125163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4739), [sym__strong_emphasis_open_underscore] = ACTIONS(4739), }, - [STATE(1141)] = { + [STATE(1144)] = { [sym__backslash_escape] = ACTIONS(4743), [sym_entity_reference] = ACTIONS(4743), [sym_numeric_character_reference] = ACTIONS(4743), @@ -125030,7 +125230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4743), [sym__strong_emphasis_open_underscore] = ACTIONS(4743), }, - [STATE(1142)] = { + [STATE(1145)] = { [sym__backslash_escape] = ACTIONS(4747), [sym_entity_reference] = ACTIONS(4747), [sym_numeric_character_reference] = ACTIONS(4747), @@ -125097,7 +125297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4747), [sym__strong_emphasis_open_underscore] = ACTIONS(4747), }, - [STATE(1143)] = { + [STATE(1146)] = { [sym__backslash_escape] = ACTIONS(4751), [sym_entity_reference] = ACTIONS(4751), [sym_numeric_character_reference] = ACTIONS(4751), @@ -125164,7 +125364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4751), [sym__strong_emphasis_open_underscore] = ACTIONS(4751), }, - [STATE(1144)] = { + [STATE(1147)] = { [sym__backslash_escape] = ACTIONS(4755), [sym_entity_reference] = ACTIONS(4755), [sym_numeric_character_reference] = ACTIONS(4755), @@ -125231,7 +125431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4755), [sym__strong_emphasis_open_underscore] = ACTIONS(4755), }, - [STATE(1145)] = { + [STATE(1148)] = { [sym__backslash_escape] = ACTIONS(4759), [sym_entity_reference] = ACTIONS(4759), [sym_numeric_character_reference] = ACTIONS(4759), @@ -125298,74 +125498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4759), [sym__strong_emphasis_open_underscore] = ACTIONS(4759), }, - [STATE(1146)] = { - [sym__backslash_escape] = ACTIONS(4607), - [sym_entity_reference] = ACTIONS(4607), - [sym_numeric_character_reference] = ACTIONS(4607), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(4607), - [anon_sym_DQUOTE] = ACTIONS(4607), - [anon_sym_POUND] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4607), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_AMP] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4607), - [anon_sym_COLON] = ACTIONS(4607), - [anon_sym_SEMI] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_QMARK] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4609), - [anon_sym_BSLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym_BQUOTE] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [anon_sym_PIPE] = ACTIONS(4607), - [anon_sym_TILDE] = ACTIONS(4607), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [sym__newline_token] = ACTIONS(4607), - [aux_sym_insert_token1] = ACTIONS(4607), - [aux_sym_delete_token1] = ACTIONS(4607), - [aux_sym_highlight_token1] = ACTIONS(4607), - [aux_sym_edit_comment_token1] = ACTIONS(4607), - [anon_sym_CARET_LBRACK] = ACTIONS(4607), - [anon_sym_LBRACK_CARET] = ACTIONS(4607), - [sym_uri_autolink] = ACTIONS(4607), - [sym_email_autolink] = ACTIONS(4607), - [sym__whitespace_ge_2] = ACTIONS(4607), - [aux_sym__whitespace_token1] = ACTIONS(4609), - [sym__word_no_digit] = ACTIONS(4607), - [sym__digits] = ACTIONS(4607), - [anon_sym_DASH_DASH] = ACTIONS(4609), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4607), - [sym__code_span_start] = ACTIONS(4607), - [sym__emphasis_open_star] = ACTIONS(4607), - [sym__emphasis_open_underscore] = ACTIONS(4607), - [sym__emphasis_close_star] = ACTIONS(4607), - [sym__strikeout_open] = ACTIONS(4607), - [sym__latex_span_start] = ACTIONS(4607), - [sym__single_quote_open] = ACTIONS(4607), - [sym__double_quote_open] = ACTIONS(4607), - [sym__superscript_open] = ACTIONS(4607), - [sym__subscript_open] = ACTIONS(4607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4607), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4607), - [sym__cite_author_in_text] = ACTIONS(4607), - [sym__cite_suppress_author] = ACTIONS(4607), - [sym__shortcode_open_escaped] = ACTIONS(4607), - [sym__shortcode_open] = ACTIONS(4607), - [sym__unclosed_span] = ACTIONS(4607), - [sym__strong_emphasis_open_star] = ACTIONS(4607), - [sym__strong_emphasis_open_underscore] = ACTIONS(4607), - }, - [STATE(1147)] = { + [STATE(1149)] = { [sym__backslash_escape] = ACTIONS(4763), [sym_entity_reference] = ACTIONS(4763), [sym_numeric_character_reference] = ACTIONS(4763), @@ -125432,140 +125565,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4763), [sym__strong_emphasis_open_underscore] = ACTIONS(4763), }, - [STATE(1148)] = { - [sym__backslash_escape] = ACTIONS(4527), - [sym_entity_reference] = ACTIONS(4527), - [sym_numeric_character_reference] = ACTIONS(4527), - [anon_sym_LT] = ACTIONS(4529), - [anon_sym_GT] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(4527), - [anon_sym_DQUOTE] = ACTIONS(4527), - [anon_sym_POUND] = ACTIONS(4527), - [anon_sym_DOLLAR] = ACTIONS(4527), - [anon_sym_PERCENT] = ACTIONS(4527), - [anon_sym_AMP] = ACTIONS(4529), - [anon_sym_SQUOTE] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(4527), - [anon_sym_COMMA] = ACTIONS(4527), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_DOT] = ACTIONS(4529), - [anon_sym_SLASH] = ACTIONS(4527), - [anon_sym_COLON] = ACTIONS(4527), - [anon_sym_SEMI] = ACTIONS(4527), - [anon_sym_EQ] = ACTIONS(4527), - [anon_sym_QMARK] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4529), - [anon_sym_BSLASH] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(4529), - [anon_sym_BQUOTE] = ACTIONS(4527), - [anon_sym_LBRACE] = ACTIONS(4527), - [anon_sym_PIPE] = ACTIONS(4527), - [anon_sym_TILDE] = ACTIONS(4527), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym_RPAREN] = ACTIONS(4527), - [sym__newline_token] = ACTIONS(4527), - [aux_sym_insert_token1] = ACTIONS(4527), - [aux_sym_delete_token1] = ACTIONS(4527), - [aux_sym_highlight_token1] = ACTIONS(4527), - [aux_sym_edit_comment_token1] = ACTIONS(4527), - [anon_sym_CARET_LBRACK] = ACTIONS(4527), - [anon_sym_LBRACK_CARET] = ACTIONS(4527), - [sym_uri_autolink] = ACTIONS(4527), - [sym_email_autolink] = ACTIONS(4527), - [sym__whitespace_ge_2] = ACTIONS(4527), - [aux_sym__whitespace_token1] = ACTIONS(4529), - [sym__word_no_digit] = ACTIONS(4527), - [sym__digits] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), - [sym__code_span_start] = ACTIONS(4527), - [sym__emphasis_open_star] = ACTIONS(4527), - [sym__emphasis_open_underscore] = ACTIONS(4527), - [sym__strikeout_open] = ACTIONS(4527), - [sym__latex_span_start] = ACTIONS(4527), - [sym__single_quote_open] = ACTIONS(4527), - [sym__double_quote_open] = ACTIONS(4527), - [sym__superscript_open] = ACTIONS(4527), - [sym__subscript_open] = ACTIONS(4527), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), - [sym__cite_author_in_text] = ACTIONS(4527), - [sym__cite_suppress_author] = ACTIONS(4527), - [sym__shortcode_open_escaped] = ACTIONS(4527), - [sym__shortcode_open] = ACTIONS(4527), - [sym__unclosed_span] = ACTIONS(4527), - [sym__strong_emphasis_open_star] = ACTIONS(4527), - [sym__strong_emphasis_close_star] = ACTIONS(4527), - [sym__strong_emphasis_open_underscore] = ACTIONS(4527), - }, - [STATE(1149)] = { - [sym__backslash_escape] = ACTIONS(4531), - [sym_entity_reference] = ACTIONS(4531), - [sym_numeric_character_reference] = ACTIONS(4531), - [anon_sym_LT] = ACTIONS(4533), - [anon_sym_GT] = ACTIONS(4531), - [anon_sym_BANG] = ACTIONS(4531), - [anon_sym_DQUOTE] = ACTIONS(4531), - [anon_sym_POUND] = ACTIONS(4531), - [anon_sym_DOLLAR] = ACTIONS(4531), - [anon_sym_PERCENT] = ACTIONS(4531), - [anon_sym_AMP] = ACTIONS(4533), - [anon_sym_SQUOTE] = ACTIONS(4531), - [anon_sym_PLUS] = ACTIONS(4531), - [anon_sym_COMMA] = ACTIONS(4531), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4533), - [anon_sym_SLASH] = ACTIONS(4531), - [anon_sym_COLON] = ACTIONS(4531), - [anon_sym_SEMI] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4531), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_BSLASH] = ACTIONS(4533), - [anon_sym_CARET] = ACTIONS(4533), - [anon_sym_BQUOTE] = ACTIONS(4531), - [anon_sym_LBRACE] = ACTIONS(4531), - [anon_sym_PIPE] = ACTIONS(4531), - [anon_sym_TILDE] = ACTIONS(4531), - [anon_sym_LPAREN] = ACTIONS(4531), - [anon_sym_RPAREN] = ACTIONS(4531), - [sym__newline_token] = ACTIONS(4531), - [aux_sym_insert_token1] = ACTIONS(4531), - [aux_sym_delete_token1] = ACTIONS(4531), - [aux_sym_highlight_token1] = ACTIONS(4531), - [aux_sym_edit_comment_token1] = ACTIONS(4531), - [anon_sym_CARET_LBRACK] = ACTIONS(4531), - [anon_sym_LBRACK_CARET] = ACTIONS(4531), - [sym_uri_autolink] = ACTIONS(4531), - [sym_email_autolink] = ACTIONS(4531), - [sym__whitespace_ge_2] = ACTIONS(4531), - [aux_sym__whitespace_token1] = ACTIONS(4533), - [sym__word_no_digit] = ACTIONS(4531), - [sym__digits] = ACTIONS(4531), - [anon_sym_DASH_DASH] = ACTIONS(4533), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), - [sym__code_span_start] = ACTIONS(4531), - [sym__emphasis_open_star] = ACTIONS(4531), - [sym__emphasis_open_underscore] = ACTIONS(4531), - [sym__strikeout_open] = ACTIONS(4531), - [sym__latex_span_start] = ACTIONS(4531), - [sym__single_quote_open] = ACTIONS(4531), - [sym__double_quote_open] = ACTIONS(4531), - [sym__superscript_open] = ACTIONS(4531), - [sym__subscript_open] = ACTIONS(4531), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), - [sym__cite_author_in_text] = ACTIONS(4531), - [sym__cite_suppress_author] = ACTIONS(4531), - [sym__shortcode_open_escaped] = ACTIONS(4531), - [sym__shortcode_open] = ACTIONS(4531), - [sym__unclosed_span] = ACTIONS(4531), - [sym__strong_emphasis_open_star] = ACTIONS(4531), - [sym__strong_emphasis_close_star] = ACTIONS(4531), - [sym__strong_emphasis_open_underscore] = ACTIONS(4531), - }, [STATE(1150)] = { [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), @@ -125634,71 +125633,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, [STATE(1151)] = { - [sym__backslash_escape] = ACTIONS(4611), - [sym_entity_reference] = ACTIONS(4611), - [sym_numeric_character_reference] = ACTIONS(4611), - [anon_sym_LT] = ACTIONS(4613), - [anon_sym_GT] = ACTIONS(4611), - [anon_sym_BANG] = ACTIONS(4611), - [anon_sym_DQUOTE] = ACTIONS(4611), - [anon_sym_POUND] = ACTIONS(4611), - [anon_sym_DOLLAR] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_AMP] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_DOT] = ACTIONS(4613), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_COLON] = ACTIONS(4611), - [anon_sym_SEMI] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_QMARK] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4613), - [anon_sym_BSLASH] = ACTIONS(4613), - [anon_sym_CARET] = ACTIONS(4613), - [anon_sym_BQUOTE] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(4611), - [anon_sym_PIPE] = ACTIONS(4611), - [anon_sym_TILDE] = ACTIONS(4611), - [anon_sym_LPAREN] = ACTIONS(4611), - [anon_sym_RPAREN] = ACTIONS(4611), - [sym__newline_token] = ACTIONS(4611), - [aux_sym_insert_token1] = ACTIONS(4611), - [aux_sym_delete_token1] = ACTIONS(4611), - [aux_sym_highlight_token1] = ACTIONS(4611), - [aux_sym_edit_comment_token1] = ACTIONS(4611), - [anon_sym_CARET_LBRACK] = ACTIONS(4611), - [anon_sym_LBRACK_CARET] = ACTIONS(4611), - [sym_uri_autolink] = ACTIONS(4611), - [sym_email_autolink] = ACTIONS(4611), - [sym__whitespace_ge_2] = ACTIONS(4611), - [aux_sym__whitespace_token1] = ACTIONS(4613), - [sym__word_no_digit] = ACTIONS(4611), - [sym__digits] = ACTIONS(4611), - [anon_sym_DASH_DASH] = ACTIONS(4613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4611), - [sym__code_span_start] = ACTIONS(4611), - [sym__emphasis_open_star] = ACTIONS(4611), - [sym__emphasis_open_underscore] = ACTIONS(4611), - [sym__emphasis_close_star] = ACTIONS(4611), - [sym__strikeout_open] = ACTIONS(4611), - [sym__latex_span_start] = ACTIONS(4611), - [sym__single_quote_open] = ACTIONS(4611), - [sym__double_quote_open] = ACTIONS(4611), - [sym__superscript_open] = ACTIONS(4611), - [sym__subscript_open] = ACTIONS(4611), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4611), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4611), - [sym__cite_author_in_text] = ACTIONS(4611), - [sym__cite_suppress_author] = ACTIONS(4611), - [sym__shortcode_open_escaped] = ACTIONS(4611), - [sym__shortcode_open] = ACTIONS(4611), - [sym__unclosed_span] = ACTIONS(4611), - [sym__strong_emphasis_open_star] = ACTIONS(4611), - [sym__strong_emphasis_open_underscore] = ACTIONS(4611), + [sym__backslash_escape] = ACTIONS(4627), + [sym_entity_reference] = ACTIONS(4627), + [sym_numeric_character_reference] = ACTIONS(4627), + [anon_sym_LT] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4627), + [anon_sym_BANG] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4627), + [anon_sym_DOLLAR] = ACTIONS(4627), + [anon_sym_PERCENT] = ACTIONS(4627), + [anon_sym_AMP] = ACTIONS(4629), + [anon_sym_SQUOTE] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_COMMA] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4629), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [anon_sym_LBRACK] = ACTIONS(4629), + [anon_sym_BSLASH] = ACTIONS(4629), + [anon_sym_CARET] = ACTIONS(4629), + [anon_sym_BQUOTE] = ACTIONS(4627), + [anon_sym_LBRACE] = ACTIONS(4627), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_LPAREN] = ACTIONS(4627), + [anon_sym_RPAREN] = ACTIONS(4627), + [sym__newline_token] = ACTIONS(4627), + [aux_sym_insert_token1] = ACTIONS(4627), + [aux_sym_delete_token1] = ACTIONS(4627), + [aux_sym_highlight_token1] = ACTIONS(4627), + [aux_sym_edit_comment_token1] = ACTIONS(4627), + [anon_sym_CARET_LBRACK] = ACTIONS(4627), + [anon_sym_LBRACK_CARET] = ACTIONS(4627), + [sym_uri_autolink] = ACTIONS(4627), + [sym_email_autolink] = ACTIONS(4627), + [sym__whitespace_ge_2] = ACTIONS(4627), + [aux_sym__whitespace_token1] = ACTIONS(4629), + [sym__word_no_digit] = ACTIONS(4627), + [sym__digits] = ACTIONS(4627), + [anon_sym_DASH_DASH] = ACTIONS(4629), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4627), + [sym__code_span_start] = ACTIONS(4627), + [sym__emphasis_open_star] = ACTIONS(4627), + [sym__emphasis_open_underscore] = ACTIONS(4627), + [sym__emphasis_close_star] = ACTIONS(4627), + [sym__strikeout_open] = ACTIONS(4627), + [sym__latex_span_start] = ACTIONS(4627), + [sym__single_quote_open] = ACTIONS(4627), + [sym__double_quote_open] = ACTIONS(4627), + [sym__superscript_open] = ACTIONS(4627), + [sym__subscript_open] = ACTIONS(4627), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4627), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4627), + [sym__cite_author_in_text] = ACTIONS(4627), + [sym__cite_suppress_author] = ACTIONS(4627), + [sym__shortcode_open_escaped] = ACTIONS(4627), + [sym__shortcode_open] = ACTIONS(4627), + [sym__unclosed_span] = ACTIONS(4627), + [sym__strong_emphasis_open_star] = ACTIONS(4627), + [sym__strong_emphasis_open_underscore] = ACTIONS(4627), }, [STATE(1152)] = { [sym__backslash_escape] = ACTIONS(4213), @@ -125768,73 +125767,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, [STATE(1153)] = { - [sym__backslash_escape] = ACTIONS(4615), - [sym_entity_reference] = ACTIONS(4615), - [sym_numeric_character_reference] = ACTIONS(4615), - [anon_sym_LT] = ACTIONS(4617), - [anon_sym_GT] = ACTIONS(4615), - [anon_sym_BANG] = ACTIONS(4615), - [anon_sym_DQUOTE] = ACTIONS(4615), - [anon_sym_POUND] = ACTIONS(4615), - [anon_sym_DOLLAR] = ACTIONS(4615), - [anon_sym_PERCENT] = ACTIONS(4615), - [anon_sym_AMP] = ACTIONS(4617), - [anon_sym_SQUOTE] = ACTIONS(4615), - [anon_sym_PLUS] = ACTIONS(4615), - [anon_sym_COMMA] = ACTIONS(4615), - [anon_sym_DASH] = ACTIONS(4617), - [anon_sym_DOT] = ACTIONS(4617), - [anon_sym_SLASH] = ACTIONS(4615), - [anon_sym_COLON] = ACTIONS(4615), - [anon_sym_SEMI] = ACTIONS(4615), - [anon_sym_EQ] = ACTIONS(4615), - [anon_sym_QMARK] = ACTIONS(4615), - [anon_sym_LBRACK] = ACTIONS(4617), - [anon_sym_BSLASH] = ACTIONS(4617), - [anon_sym_CARET] = ACTIONS(4617), - [anon_sym_BQUOTE] = ACTIONS(4615), - [anon_sym_LBRACE] = ACTIONS(4615), - [anon_sym_PIPE] = ACTIONS(4615), - [anon_sym_TILDE] = ACTIONS(4615), - [anon_sym_LPAREN] = ACTIONS(4615), - [anon_sym_RPAREN] = ACTIONS(4615), - [sym__newline_token] = ACTIONS(4615), - [aux_sym_insert_token1] = ACTIONS(4615), - [aux_sym_delete_token1] = ACTIONS(4615), - [aux_sym_highlight_token1] = ACTIONS(4615), - [aux_sym_edit_comment_token1] = ACTIONS(4615), - [anon_sym_CARET_LBRACK] = ACTIONS(4615), - [anon_sym_LBRACK_CARET] = ACTIONS(4615), - [sym_uri_autolink] = ACTIONS(4615), - [sym_email_autolink] = ACTIONS(4615), - [sym__whitespace_ge_2] = ACTIONS(4615), - [aux_sym__whitespace_token1] = ACTIONS(4617), - [sym__word_no_digit] = ACTIONS(4615), - [sym__digits] = ACTIONS(4615), - [anon_sym_DASH_DASH] = ACTIONS(4617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4615), - [sym__code_span_start] = ACTIONS(4615), - [sym__emphasis_open_star] = ACTIONS(4615), - [sym__emphasis_open_underscore] = ACTIONS(4615), - [sym__emphasis_close_star] = ACTIONS(4615), - [sym__strikeout_open] = ACTIONS(4615), - [sym__latex_span_start] = ACTIONS(4615), - [sym__single_quote_open] = ACTIONS(4615), - [sym__double_quote_open] = ACTIONS(4615), - [sym__superscript_open] = ACTIONS(4615), - [sym__subscript_open] = ACTIONS(4615), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4615), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4615), - [sym__cite_author_in_text] = ACTIONS(4615), - [sym__cite_suppress_author] = ACTIONS(4615), - [sym__shortcode_open_escaped] = ACTIONS(4615), - [sym__shortcode_open] = ACTIONS(4615), - [sym__unclosed_span] = ACTIONS(4615), - [sym__strong_emphasis_open_star] = ACTIONS(4615), - [sym__strong_emphasis_open_underscore] = ACTIONS(4615), + [sym__backslash_escape] = ACTIONS(4631), + [sym_entity_reference] = ACTIONS(4631), + [sym_numeric_character_reference] = ACTIONS(4631), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(4631), + [anon_sym_POUND] = ACTIONS(4631), + [anon_sym_DOLLAR] = ACTIONS(4631), + [anon_sym_PERCENT] = ACTIONS(4631), + [anon_sym_AMP] = ACTIONS(4633), + [anon_sym_SQUOTE] = ACTIONS(4631), + [anon_sym_PLUS] = ACTIONS(4631), + [anon_sym_COMMA] = ACTIONS(4631), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4631), + [anon_sym_COLON] = ACTIONS(4631), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_EQ] = ACTIONS(4631), + [anon_sym_QMARK] = ACTIONS(4631), + [anon_sym_LBRACK] = ACTIONS(4633), + [anon_sym_BSLASH] = ACTIONS(4633), + [anon_sym_CARET] = ACTIONS(4633), + [anon_sym_BQUOTE] = ACTIONS(4631), + [anon_sym_LBRACE] = ACTIONS(4631), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_TILDE] = ACTIONS(4631), + [anon_sym_LPAREN] = ACTIONS(4631), + [anon_sym_RPAREN] = ACTIONS(4631), + [sym__newline_token] = ACTIONS(4631), + [aux_sym_insert_token1] = ACTIONS(4631), + [aux_sym_delete_token1] = ACTIONS(4631), + [aux_sym_highlight_token1] = ACTIONS(4631), + [aux_sym_edit_comment_token1] = ACTIONS(4631), + [anon_sym_CARET_LBRACK] = ACTIONS(4631), + [anon_sym_LBRACK_CARET] = ACTIONS(4631), + [sym_uri_autolink] = ACTIONS(4631), + [sym_email_autolink] = ACTIONS(4631), + [sym__whitespace_ge_2] = ACTIONS(4631), + [aux_sym__whitespace_token1] = ACTIONS(4633), + [sym__word_no_digit] = ACTIONS(4631), + [sym__digits] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4633), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4631), + [sym__code_span_start] = ACTIONS(4631), + [sym__emphasis_open_star] = ACTIONS(4631), + [sym__emphasis_open_underscore] = ACTIONS(4631), + [sym__emphasis_close_star] = ACTIONS(4631), + [sym__strikeout_open] = ACTIONS(4631), + [sym__latex_span_start] = ACTIONS(4631), + [sym__single_quote_open] = ACTIONS(4631), + [sym__double_quote_open] = ACTIONS(4631), + [sym__superscript_open] = ACTIONS(4631), + [sym__subscript_open] = ACTIONS(4631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4631), + [sym__cite_author_in_text] = ACTIONS(4631), + [sym__cite_suppress_author] = ACTIONS(4631), + [sym__shortcode_open_escaped] = ACTIONS(4631), + [sym__shortcode_open] = ACTIONS(4631), + [sym__unclosed_span] = ACTIONS(4631), + [sym__strong_emphasis_open_star] = ACTIONS(4631), + [sym__strong_emphasis_open_underscore] = ACTIONS(4631), }, [STATE(1154)] = { + [sym__backslash_escape] = ACTIONS(4531), + [sym_entity_reference] = ACTIONS(4531), + [sym_numeric_character_reference] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_DQUOTE] = ACTIONS(4531), + [anon_sym_POUND] = ACTIONS(4531), + [anon_sym_DOLLAR] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4533), + [anon_sym_SQUOTE] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_DASH] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4533), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_BSLASH] = ACTIONS(4533), + [anon_sym_CARET] = ACTIONS(4533), + [anon_sym_BQUOTE] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_TILDE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_RPAREN] = ACTIONS(4531), + [sym__newline_token] = ACTIONS(4531), + [aux_sym_insert_token1] = ACTIONS(4531), + [aux_sym_delete_token1] = ACTIONS(4531), + [aux_sym_highlight_token1] = ACTIONS(4531), + [aux_sym_edit_comment_token1] = ACTIONS(4531), + [anon_sym_CARET_LBRACK] = ACTIONS(4531), + [anon_sym_LBRACK_CARET] = ACTIONS(4531), + [sym_uri_autolink] = ACTIONS(4531), + [sym_email_autolink] = ACTIONS(4531), + [sym__whitespace_ge_2] = ACTIONS(4531), + [aux_sym__whitespace_token1] = ACTIONS(4533), + [sym__word_no_digit] = ACTIONS(4531), + [sym__digits] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), + [sym__code_span_start] = ACTIONS(4531), + [sym__emphasis_open_star] = ACTIONS(4531), + [sym__emphasis_open_underscore] = ACTIONS(4531), + [sym__strikeout_open] = ACTIONS(4531), + [sym__latex_span_start] = ACTIONS(4531), + [sym__single_quote_open] = ACTIONS(4531), + [sym__double_quote_open] = ACTIONS(4531), + [sym__superscript_open] = ACTIONS(4531), + [sym__subscript_open] = ACTIONS(4531), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), + [sym__cite_author_in_text] = ACTIONS(4531), + [sym__cite_suppress_author] = ACTIONS(4531), + [sym__shortcode_open_escaped] = ACTIONS(4531), + [sym__shortcode_open] = ACTIONS(4531), + [sym__unclosed_span] = ACTIONS(4531), + [sym__strong_emphasis_open_star] = ACTIONS(4531), + [sym__strong_emphasis_close_star] = ACTIONS(4531), + [sym__strong_emphasis_open_underscore] = ACTIONS(4531), + }, + [STATE(1155)] = { [sym__backslash_escape] = ACTIONS(4535), [sym_entity_reference] = ACTIONS(4535), [sym_numeric_character_reference] = ACTIONS(4535), @@ -125901,7 +125967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4535), [sym__strong_emphasis_open_underscore] = ACTIONS(4535), }, - [STATE(1155)] = { + [STATE(1156)] = { [sym__backslash_escape] = ACTIONS(4539), [sym_entity_reference] = ACTIONS(4539), [sym_numeric_character_reference] = ACTIONS(4539), @@ -125968,7 +126034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4539), [sym__strong_emphasis_open_underscore] = ACTIONS(4539), }, - [STATE(1156)] = { + [STATE(1157)] = { [sym__backslash_escape] = ACTIONS(4543), [sym_entity_reference] = ACTIONS(4543), [sym_numeric_character_reference] = ACTIONS(4543), @@ -126035,7 +126101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4543), [sym__strong_emphasis_open_underscore] = ACTIONS(4543), }, - [STATE(1157)] = { + [STATE(1158)] = { [sym__backslash_escape] = ACTIONS(4547), [sym_entity_reference] = ACTIONS(4547), [sym_numeric_character_reference] = ACTIONS(4547), @@ -126102,73 +126168,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4547), [sym__strong_emphasis_open_underscore] = ACTIONS(4547), }, - [STATE(1158)] = { - [sym__backslash_escape] = ACTIONS(4551), - [sym_entity_reference] = ACTIONS(4551), - [sym_numeric_character_reference] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(4553), - [anon_sym_GT] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4551), - [anon_sym_DQUOTE] = ACTIONS(4551), - [anon_sym_POUND] = ACTIONS(4551), - [anon_sym_DOLLAR] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_AMP] = ACTIONS(4553), - [anon_sym_SQUOTE] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_COLON] = ACTIONS(4551), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_EQ] = ACTIONS(4551), - [anon_sym_QMARK] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_BSLASH] = ACTIONS(4553), - [anon_sym_CARET] = ACTIONS(4553), - [anon_sym_BQUOTE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_PIPE] = ACTIONS(4551), - [anon_sym_TILDE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_RPAREN] = ACTIONS(4551), - [sym__newline_token] = ACTIONS(4551), - [aux_sym_insert_token1] = ACTIONS(4551), - [aux_sym_delete_token1] = ACTIONS(4551), - [aux_sym_highlight_token1] = ACTIONS(4551), - [aux_sym_edit_comment_token1] = ACTIONS(4551), - [anon_sym_CARET_LBRACK] = ACTIONS(4551), - [anon_sym_LBRACK_CARET] = ACTIONS(4551), - [sym_uri_autolink] = ACTIONS(4551), - [sym_email_autolink] = ACTIONS(4551), - [sym__whitespace_ge_2] = ACTIONS(4551), - [aux_sym__whitespace_token1] = ACTIONS(4553), - [sym__word_no_digit] = ACTIONS(4551), - [sym__digits] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4553), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), - [sym__code_span_start] = ACTIONS(4551), - [sym__emphasis_open_star] = ACTIONS(4551), - [sym__emphasis_open_underscore] = ACTIONS(4551), - [sym__strikeout_open] = ACTIONS(4551), - [sym__latex_span_start] = ACTIONS(4551), - [sym__single_quote_open] = ACTIONS(4551), - [sym__double_quote_open] = ACTIONS(4551), - [sym__superscript_open] = ACTIONS(4551), - [sym__subscript_open] = ACTIONS(4551), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), - [sym__cite_author_in_text] = ACTIONS(4551), - [sym__cite_suppress_author] = ACTIONS(4551), - [sym__shortcode_open_escaped] = ACTIONS(4551), - [sym__shortcode_open] = ACTIONS(4551), - [sym__unclosed_span] = ACTIONS(4551), - [sym__strong_emphasis_open_star] = ACTIONS(4551), - [sym__strong_emphasis_close_star] = ACTIONS(4551), - [sym__strong_emphasis_open_underscore] = ACTIONS(4551), - }, [STATE(1159)] = { [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), @@ -126237,73 +126236,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, [STATE(1160)] = { - [sym__backslash_escape] = ACTIONS(4619), - [sym_entity_reference] = ACTIONS(4619), - [sym_numeric_character_reference] = ACTIONS(4619), - [anon_sym_LT] = ACTIONS(4621), - [anon_sym_GT] = ACTIONS(4619), - [anon_sym_BANG] = ACTIONS(4619), - [anon_sym_DQUOTE] = ACTIONS(4619), - [anon_sym_POUND] = ACTIONS(4619), - [anon_sym_DOLLAR] = ACTIONS(4619), - [anon_sym_PERCENT] = ACTIONS(4619), - [anon_sym_AMP] = ACTIONS(4621), - [anon_sym_SQUOTE] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4619), - [anon_sym_COMMA] = ACTIONS(4619), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_DOT] = ACTIONS(4621), - [anon_sym_SLASH] = ACTIONS(4619), - [anon_sym_COLON] = ACTIONS(4619), - [anon_sym_SEMI] = ACTIONS(4619), - [anon_sym_EQ] = ACTIONS(4619), - [anon_sym_QMARK] = ACTIONS(4619), - [anon_sym_LBRACK] = ACTIONS(4621), - [anon_sym_BSLASH] = ACTIONS(4621), - [anon_sym_CARET] = ACTIONS(4621), - [anon_sym_BQUOTE] = ACTIONS(4619), - [anon_sym_LBRACE] = ACTIONS(4619), - [anon_sym_PIPE] = ACTIONS(4619), - [anon_sym_TILDE] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(4619), - [anon_sym_RPAREN] = ACTIONS(4619), - [sym__newline_token] = ACTIONS(4619), - [aux_sym_insert_token1] = ACTIONS(4619), - [aux_sym_delete_token1] = ACTIONS(4619), - [aux_sym_highlight_token1] = ACTIONS(4619), - [aux_sym_edit_comment_token1] = ACTIONS(4619), - [anon_sym_CARET_LBRACK] = ACTIONS(4619), - [anon_sym_LBRACK_CARET] = ACTIONS(4619), - [sym_uri_autolink] = ACTIONS(4619), - [sym_email_autolink] = ACTIONS(4619), - [sym__whitespace_ge_2] = ACTIONS(4619), - [aux_sym__whitespace_token1] = ACTIONS(4621), - [sym__word_no_digit] = ACTIONS(4619), - [sym__digits] = ACTIONS(4619), - [anon_sym_DASH_DASH] = ACTIONS(4621), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4619), - [sym__code_span_start] = ACTIONS(4619), - [sym__emphasis_open_star] = ACTIONS(4619), - [sym__emphasis_open_underscore] = ACTIONS(4619), - [sym__emphasis_close_star] = ACTIONS(4619), - [sym__strikeout_open] = ACTIONS(4619), - [sym__latex_span_start] = ACTIONS(4619), - [sym__single_quote_open] = ACTIONS(4619), - [sym__double_quote_open] = ACTIONS(4619), - [sym__superscript_open] = ACTIONS(4619), - [sym__subscript_open] = ACTIONS(4619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4619), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4619), - [sym__cite_author_in_text] = ACTIONS(4619), - [sym__cite_suppress_author] = ACTIONS(4619), - [sym__shortcode_open_escaped] = ACTIONS(4619), - [sym__shortcode_open] = ACTIONS(4619), - [sym__unclosed_span] = ACTIONS(4619), - [sym__strong_emphasis_open_star] = ACTIONS(4619), - [sym__strong_emphasis_open_underscore] = ACTIONS(4619), - }, - [STATE(1161)] = { [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -126370,74 +126302,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4221), [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, - [STATE(1162)] = { - [sym__backslash_escape] = ACTIONS(4623), - [sym_entity_reference] = ACTIONS(4623), - [sym_numeric_character_reference] = ACTIONS(4623), - [anon_sym_LT] = ACTIONS(4625), - [anon_sym_GT] = ACTIONS(4623), - [anon_sym_BANG] = ACTIONS(4623), - [anon_sym_DQUOTE] = ACTIONS(4623), - [anon_sym_POUND] = ACTIONS(4623), - [anon_sym_DOLLAR] = ACTIONS(4623), - [anon_sym_PERCENT] = ACTIONS(4623), - [anon_sym_AMP] = ACTIONS(4625), - [anon_sym_SQUOTE] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4623), - [anon_sym_COMMA] = ACTIONS(4623), - [anon_sym_DASH] = ACTIONS(4625), - [anon_sym_DOT] = ACTIONS(4625), - [anon_sym_SLASH] = ACTIONS(4623), - [anon_sym_COLON] = ACTIONS(4623), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_EQ] = ACTIONS(4623), - [anon_sym_QMARK] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4625), - [anon_sym_BSLASH] = ACTIONS(4625), - [anon_sym_CARET] = ACTIONS(4625), - [anon_sym_BQUOTE] = ACTIONS(4623), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_PIPE] = ACTIONS(4623), - [anon_sym_TILDE] = ACTIONS(4623), - [anon_sym_LPAREN] = ACTIONS(4623), - [anon_sym_RPAREN] = ACTIONS(4623), - [sym__newline_token] = ACTIONS(4623), - [aux_sym_insert_token1] = ACTIONS(4623), - [aux_sym_delete_token1] = ACTIONS(4623), - [aux_sym_highlight_token1] = ACTIONS(4623), - [aux_sym_edit_comment_token1] = ACTIONS(4623), - [anon_sym_CARET_LBRACK] = ACTIONS(4623), - [anon_sym_LBRACK_CARET] = ACTIONS(4623), - [sym_uri_autolink] = ACTIONS(4623), - [sym_email_autolink] = ACTIONS(4623), - [sym__whitespace_ge_2] = ACTIONS(4623), - [aux_sym__whitespace_token1] = ACTIONS(4625), - [sym__word_no_digit] = ACTIONS(4623), - [sym__digits] = ACTIONS(4623), - [anon_sym_DASH_DASH] = ACTIONS(4625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4623), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4623), - [sym__code_span_start] = ACTIONS(4623), - [sym__emphasis_open_star] = ACTIONS(4623), - [sym__emphasis_open_underscore] = ACTIONS(4623), - [sym__emphasis_close_star] = ACTIONS(4623), - [sym__strikeout_open] = ACTIONS(4623), - [sym__latex_span_start] = ACTIONS(4623), - [sym__single_quote_open] = ACTIONS(4623), - [sym__double_quote_open] = ACTIONS(4623), - [sym__superscript_open] = ACTIONS(4623), - [sym__subscript_open] = ACTIONS(4623), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4623), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4623), - [sym__cite_author_in_text] = ACTIONS(4623), - [sym__cite_suppress_author] = ACTIONS(4623), - [sym__shortcode_open_escaped] = ACTIONS(4623), - [sym__shortcode_open] = ACTIONS(4623), - [sym__unclosed_span] = ACTIONS(4623), - [sym__strong_emphasis_open_star] = ACTIONS(4623), - [sym__strong_emphasis_open_underscore] = ACTIONS(4623), + [STATE(1161)] = { + [sym__backslash_escape] = ACTIONS(4551), + [sym_entity_reference] = ACTIONS(4551), + [sym_numeric_character_reference] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_POUND] = ACTIONS(4551), + [anon_sym_DOLLAR] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4553), + [anon_sym_SQUOTE] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_BSLASH] = ACTIONS(4553), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_BQUOTE] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_RPAREN] = ACTIONS(4551), + [sym__newline_token] = ACTIONS(4551), + [aux_sym_insert_token1] = ACTIONS(4551), + [aux_sym_delete_token1] = ACTIONS(4551), + [aux_sym_highlight_token1] = ACTIONS(4551), + [aux_sym_edit_comment_token1] = ACTIONS(4551), + [anon_sym_CARET_LBRACK] = ACTIONS(4551), + [anon_sym_LBRACK_CARET] = ACTIONS(4551), + [sym_uri_autolink] = ACTIONS(4551), + [sym_email_autolink] = ACTIONS(4551), + [sym__whitespace_ge_2] = ACTIONS(4551), + [aux_sym__whitespace_token1] = ACTIONS(4553), + [sym__word_no_digit] = ACTIONS(4551), + [sym__digits] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), + [sym__code_span_start] = ACTIONS(4551), + [sym__emphasis_open_star] = ACTIONS(4551), + [sym__emphasis_open_underscore] = ACTIONS(4551), + [sym__strikeout_open] = ACTIONS(4551), + [sym__latex_span_start] = ACTIONS(4551), + [sym__single_quote_open] = ACTIONS(4551), + [sym__double_quote_open] = ACTIONS(4551), + [sym__superscript_open] = ACTIONS(4551), + [sym__subscript_open] = ACTIONS(4551), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), + [sym__cite_author_in_text] = ACTIONS(4551), + [sym__cite_suppress_author] = ACTIONS(4551), + [sym__shortcode_open_escaped] = ACTIONS(4551), + [sym__shortcode_open] = ACTIONS(4551), + [sym__unclosed_span] = ACTIONS(4551), + [sym__strong_emphasis_open_star] = ACTIONS(4551), + [sym__strong_emphasis_close_star] = ACTIONS(4551), + [sym__strong_emphasis_open_underscore] = ACTIONS(4551), }, - [STATE(1163)] = { + [STATE(1162)] = { [sym__backslash_escape] = ACTIONS(4555), [sym_entity_reference] = ACTIONS(4555), [sym_numeric_character_reference] = ACTIONS(4555), @@ -126504,7 +126436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4555), [sym__strong_emphasis_open_underscore] = ACTIONS(4555), }, - [STATE(1164)] = { + [STATE(1163)] = { [sym__backslash_escape] = ACTIONS(4559), [sym_entity_reference] = ACTIONS(4559), [sym_numeric_character_reference] = ACTIONS(4559), @@ -126571,7 +126503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4559), [sym__strong_emphasis_open_underscore] = ACTIONS(4559), }, - [STATE(1165)] = { + [STATE(1164)] = { [sym__backslash_escape] = ACTIONS(4563), [sym_entity_reference] = ACTIONS(4563), [sym_numeric_character_reference] = ACTIONS(4563), @@ -126638,74 +126570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4563), [sym__strong_emphasis_open_underscore] = ACTIONS(4563), }, - [STATE(1166)] = { - [sym__backslash_escape] = ACTIONS(4567), - [sym_entity_reference] = ACTIONS(4567), - [sym_numeric_character_reference] = ACTIONS(4567), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4567), - [anon_sym_BANG] = ACTIONS(4567), - [anon_sym_DQUOTE] = ACTIONS(4567), - [anon_sym_POUND] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_COLON] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_QMARK] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4569), - [anon_sym_BSLASH] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym_BQUOTE] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_PIPE] = ACTIONS(4567), - [anon_sym_TILDE] = ACTIONS(4567), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [sym__newline_token] = ACTIONS(4567), - [aux_sym_insert_token1] = ACTIONS(4567), - [aux_sym_delete_token1] = ACTIONS(4567), - [aux_sym_highlight_token1] = ACTIONS(4567), - [aux_sym_edit_comment_token1] = ACTIONS(4567), - [anon_sym_CARET_LBRACK] = ACTIONS(4567), - [anon_sym_LBRACK_CARET] = ACTIONS(4567), - [sym_uri_autolink] = ACTIONS(4567), - [sym_email_autolink] = ACTIONS(4567), - [sym__whitespace_ge_2] = ACTIONS(4567), - [aux_sym__whitespace_token1] = ACTIONS(4569), - [sym__word_no_digit] = ACTIONS(4567), - [sym__digits] = ACTIONS(4567), - [anon_sym_DASH_DASH] = ACTIONS(4569), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), - [sym__code_span_start] = ACTIONS(4567), - [sym__emphasis_open_star] = ACTIONS(4567), - [sym__emphasis_open_underscore] = ACTIONS(4567), - [sym__strikeout_open] = ACTIONS(4567), - [sym__latex_span_start] = ACTIONS(4567), - [sym__single_quote_open] = ACTIONS(4567), - [sym__double_quote_open] = ACTIONS(4567), - [sym__superscript_open] = ACTIONS(4567), - [sym__subscript_open] = ACTIONS(4567), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), - [sym__cite_author_in_text] = ACTIONS(4567), - [sym__cite_suppress_author] = ACTIONS(4567), - [sym__shortcode_open_escaped] = ACTIONS(4567), - [sym__shortcode_open] = ACTIONS(4567), - [sym__unclosed_span] = ACTIONS(4567), - [sym__strong_emphasis_open_star] = ACTIONS(4567), - [sym__strong_emphasis_close_star] = ACTIONS(4567), - [sym__strong_emphasis_open_underscore] = ACTIONS(4567), - }, - [STATE(1167)] = { + [STATE(1165)] = { [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -126772,74 +126637,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4225), [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, - [STATE(1168)] = { - [sym__backslash_escape] = ACTIONS(4627), - [sym_entity_reference] = ACTIONS(4627), - [sym_numeric_character_reference] = ACTIONS(4627), - [anon_sym_LT] = ACTIONS(4629), - [anon_sym_GT] = ACTIONS(4627), - [anon_sym_BANG] = ACTIONS(4627), - [anon_sym_DQUOTE] = ACTIONS(4627), - [anon_sym_POUND] = ACTIONS(4627), - [anon_sym_DOLLAR] = ACTIONS(4627), - [anon_sym_PERCENT] = ACTIONS(4627), - [anon_sym_AMP] = ACTIONS(4629), - [anon_sym_SQUOTE] = ACTIONS(4627), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_SLASH] = ACTIONS(4627), - [anon_sym_COLON] = ACTIONS(4627), - [anon_sym_SEMI] = ACTIONS(4627), - [anon_sym_EQ] = ACTIONS(4627), - [anon_sym_QMARK] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4629), - [anon_sym_BSLASH] = ACTIONS(4629), - [anon_sym_CARET] = ACTIONS(4629), - [anon_sym_BQUOTE] = ACTIONS(4627), - [anon_sym_LBRACE] = ACTIONS(4627), - [anon_sym_PIPE] = ACTIONS(4627), - [anon_sym_TILDE] = ACTIONS(4627), - [anon_sym_LPAREN] = ACTIONS(4627), - [anon_sym_RPAREN] = ACTIONS(4627), - [sym__newline_token] = ACTIONS(4627), - [aux_sym_insert_token1] = ACTIONS(4627), - [aux_sym_delete_token1] = ACTIONS(4627), - [aux_sym_highlight_token1] = ACTIONS(4627), - [aux_sym_edit_comment_token1] = ACTIONS(4627), - [anon_sym_CARET_LBRACK] = ACTIONS(4627), - [anon_sym_LBRACK_CARET] = ACTIONS(4627), - [sym_uri_autolink] = ACTIONS(4627), - [sym_email_autolink] = ACTIONS(4627), - [sym__whitespace_ge_2] = ACTIONS(4627), - [aux_sym__whitespace_token1] = ACTIONS(4629), - [sym__word_no_digit] = ACTIONS(4627), - [sym__digits] = ACTIONS(4627), - [anon_sym_DASH_DASH] = ACTIONS(4629), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4627), - [sym__code_span_start] = ACTIONS(4627), - [sym__emphasis_open_star] = ACTIONS(4627), - [sym__emphasis_open_underscore] = ACTIONS(4627), - [sym__emphasis_close_star] = ACTIONS(4627), - [sym__strikeout_open] = ACTIONS(4627), - [sym__latex_span_start] = ACTIONS(4627), - [sym__single_quote_open] = ACTIONS(4627), - [sym__double_quote_open] = ACTIONS(4627), - [sym__superscript_open] = ACTIONS(4627), - [sym__subscript_open] = ACTIONS(4627), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4627), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4627), - [sym__cite_author_in_text] = ACTIONS(4627), - [sym__cite_suppress_author] = ACTIONS(4627), - [sym__shortcode_open_escaped] = ACTIONS(4627), - [sym__shortcode_open] = ACTIONS(4627), - [sym__unclosed_span] = ACTIONS(4627), - [sym__strong_emphasis_open_star] = ACTIONS(4627), - [sym__strong_emphasis_open_underscore] = ACTIONS(4627), + [STATE(1166)] = { + [ts_builtin_sym_end] = ACTIONS(4583), + [sym__backslash_escape] = ACTIONS(4583), + [sym_entity_reference] = ACTIONS(4583), + [sym_numeric_character_reference] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_BANG] = ACTIONS(4583), + [anon_sym_DQUOTE] = ACTIONS(4583), + [anon_sym_POUND] = ACTIONS(4583), + [anon_sym_DOLLAR] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4583), + [anon_sym_AMP] = ACTIONS(4585), + [anon_sym_SQUOTE] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_COMMA] = ACTIONS(4583), + [anon_sym_DASH] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_SLASH] = ACTIONS(4583), + [anon_sym_COLON] = ACTIONS(4583), + [anon_sym_SEMI] = ACTIONS(4583), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_QMARK] = ACTIONS(4583), + [anon_sym_LBRACK] = ACTIONS(4585), + [anon_sym_BSLASH] = ACTIONS(4585), + [anon_sym_CARET] = ACTIONS(4585), + [anon_sym_BQUOTE] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4583), + [anon_sym_PIPE] = ACTIONS(4583), + [anon_sym_TILDE] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym_RPAREN] = ACTIONS(4583), + [sym__newline_token] = ACTIONS(4583), + [aux_sym_insert_token1] = ACTIONS(4583), + [aux_sym_delete_token1] = ACTIONS(4583), + [aux_sym_highlight_token1] = ACTIONS(4583), + [aux_sym_edit_comment_token1] = ACTIONS(4583), + [anon_sym_CARET_LBRACK] = ACTIONS(4583), + [anon_sym_LBRACK_CARET] = ACTIONS(4583), + [sym_uri_autolink] = ACTIONS(4583), + [sym_email_autolink] = ACTIONS(4583), + [sym__whitespace_ge_2] = ACTIONS(4583), + [aux_sym__whitespace_token1] = ACTIONS(4585), + [sym__word_no_digit] = ACTIONS(4583), + [sym__digits] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4585), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4583), + [sym__code_span_start] = ACTIONS(4583), + [sym__emphasis_open_star] = ACTIONS(4583), + [sym__emphasis_open_underscore] = ACTIONS(4583), + [sym__strikeout_open] = ACTIONS(4583), + [sym__latex_span_start] = ACTIONS(4583), + [sym__single_quote_open] = ACTIONS(4583), + [sym__double_quote_open] = ACTIONS(4583), + [sym__superscript_open] = ACTIONS(4583), + [sym__subscript_open] = ACTIONS(4583), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4583), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4583), + [sym__cite_author_in_text] = ACTIONS(4583), + [sym__cite_suppress_author] = ACTIONS(4583), + [sym__shortcode_open_escaped] = ACTIONS(4583), + [sym__shortcode_open] = ACTIONS(4583), + [sym__unclosed_span] = ACTIONS(4583), + [sym__strong_emphasis_open_star] = ACTIONS(4583), + [sym__strong_emphasis_open_underscore] = ACTIONS(4583), }, - [STATE(1169)] = { + [STATE(1167)] = { [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -126906,74 +126771,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4229), [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, - [STATE(1170)] = { - [ts_builtin_sym_end] = ACTIONS(4587), - [sym__backslash_escape] = ACTIONS(4587), - [sym_entity_reference] = ACTIONS(4587), - [sym_numeric_character_reference] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4589), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_DQUOTE] = ACTIONS(4587), - [anon_sym_POUND] = ACTIONS(4587), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_AMP] = ACTIONS(4589), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_COMMA] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_QMARK] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_BSLASH] = ACTIONS(4589), - [anon_sym_CARET] = ACTIONS(4589), - [anon_sym_BQUOTE] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_TILDE] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4587), - [anon_sym_RPAREN] = ACTIONS(4587), - [sym__newline_token] = ACTIONS(4587), - [aux_sym_insert_token1] = ACTIONS(4587), - [aux_sym_delete_token1] = ACTIONS(4587), - [aux_sym_highlight_token1] = ACTIONS(4587), - [aux_sym_edit_comment_token1] = ACTIONS(4587), - [anon_sym_CARET_LBRACK] = ACTIONS(4587), - [anon_sym_LBRACK_CARET] = ACTIONS(4587), - [sym_uri_autolink] = ACTIONS(4587), - [sym_email_autolink] = ACTIONS(4587), - [sym__whitespace_ge_2] = ACTIONS(4587), - [aux_sym__whitespace_token1] = ACTIONS(4589), - [sym__word_no_digit] = ACTIONS(4587), - [sym__digits] = ACTIONS(4587), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), - [sym__code_span_start] = ACTIONS(4587), - [sym__emphasis_open_star] = ACTIONS(4587), - [sym__emphasis_open_underscore] = ACTIONS(4587), - [sym__strikeout_open] = ACTIONS(4587), - [sym__latex_span_start] = ACTIONS(4587), - [sym__single_quote_open] = ACTIONS(4587), - [sym__double_quote_open] = ACTIONS(4587), - [sym__superscript_open] = ACTIONS(4587), - [sym__subscript_open] = ACTIONS(4587), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), - [sym__cite_author_in_text] = ACTIONS(4587), - [sym__cite_suppress_author] = ACTIONS(4587), - [sym__shortcode_open_escaped] = ACTIONS(4587), - [sym__shortcode_open] = ACTIONS(4587), - [sym__unclosed_span] = ACTIONS(4587), - [sym__strong_emphasis_open_star] = ACTIONS(4587), - [sym__strong_emphasis_open_underscore] = ACTIONS(4587), + [STATE(1168)] = { + [sym__backslash_escape] = ACTIONS(4567), + [sym_entity_reference] = ACTIONS(4567), + [sym_numeric_character_reference] = ACTIONS(4567), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_DQUOTE] = ACTIONS(4567), + [anon_sym_POUND] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_BSLASH] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym_BQUOTE] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(4567), + [anon_sym_TILDE] = ACTIONS(4567), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [sym__newline_token] = ACTIONS(4567), + [aux_sym_insert_token1] = ACTIONS(4567), + [aux_sym_delete_token1] = ACTIONS(4567), + [aux_sym_highlight_token1] = ACTIONS(4567), + [aux_sym_edit_comment_token1] = ACTIONS(4567), + [anon_sym_CARET_LBRACK] = ACTIONS(4567), + [anon_sym_LBRACK_CARET] = ACTIONS(4567), + [sym_uri_autolink] = ACTIONS(4567), + [sym_email_autolink] = ACTIONS(4567), + [sym__whitespace_ge_2] = ACTIONS(4567), + [aux_sym__whitespace_token1] = ACTIONS(4569), + [sym__word_no_digit] = ACTIONS(4567), + [sym__digits] = ACTIONS(4567), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), + [sym__code_span_start] = ACTIONS(4567), + [sym__emphasis_open_star] = ACTIONS(4567), + [sym__emphasis_open_underscore] = ACTIONS(4567), + [sym__strikeout_open] = ACTIONS(4567), + [sym__latex_span_start] = ACTIONS(4567), + [sym__single_quote_open] = ACTIONS(4567), + [sym__double_quote_open] = ACTIONS(4567), + [sym__superscript_open] = ACTIONS(4567), + [sym__subscript_open] = ACTIONS(4567), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), + [sym__cite_author_in_text] = ACTIONS(4567), + [sym__cite_suppress_author] = ACTIONS(4567), + [sym__shortcode_open_escaped] = ACTIONS(4567), + [sym__shortcode_open] = ACTIONS(4567), + [sym__unclosed_span] = ACTIONS(4567), + [sym__strong_emphasis_open_star] = ACTIONS(4567), + [sym__strong_emphasis_close_star] = ACTIONS(4567), + [sym__strong_emphasis_open_underscore] = ACTIONS(4567), }, - [STATE(1171)] = { + [STATE(1169)] = { [sym__backslash_escape] = ACTIONS(4571), [sym_entity_reference] = ACTIONS(4571), [sym_numeric_character_reference] = ACTIONS(4571), @@ -127040,74 +126905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4571), [sym__strong_emphasis_open_underscore] = ACTIONS(4571), }, - [STATE(1172)] = { - [sym__backslash_escape] = ACTIONS(4575), - [sym_entity_reference] = ACTIONS(4575), - [sym_numeric_character_reference] = ACTIONS(4575), - [anon_sym_LT] = ACTIONS(4577), - [anon_sym_GT] = ACTIONS(4575), - [anon_sym_BANG] = ACTIONS(4575), - [anon_sym_DQUOTE] = ACTIONS(4575), - [anon_sym_POUND] = ACTIONS(4575), - [anon_sym_DOLLAR] = ACTIONS(4575), - [anon_sym_PERCENT] = ACTIONS(4575), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_SQUOTE] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4575), - [anon_sym_COMMA] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4577), - [anon_sym_SLASH] = ACTIONS(4575), - [anon_sym_COLON] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4575), - [anon_sym_EQ] = ACTIONS(4575), - [anon_sym_QMARK] = ACTIONS(4575), - [anon_sym_LBRACK] = ACTIONS(4577), - [anon_sym_BSLASH] = ACTIONS(4577), - [anon_sym_CARET] = ACTIONS(4577), - [anon_sym_BQUOTE] = ACTIONS(4575), - [anon_sym_LBRACE] = ACTIONS(4575), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_TILDE] = ACTIONS(4575), - [anon_sym_LPAREN] = ACTIONS(4575), - [anon_sym_RPAREN] = ACTIONS(4575), - [sym__newline_token] = ACTIONS(4575), - [aux_sym_insert_token1] = ACTIONS(4575), - [aux_sym_delete_token1] = ACTIONS(4575), - [aux_sym_highlight_token1] = ACTIONS(4575), - [aux_sym_edit_comment_token1] = ACTIONS(4575), - [anon_sym_CARET_LBRACK] = ACTIONS(4575), - [anon_sym_LBRACK_CARET] = ACTIONS(4575), - [sym_uri_autolink] = ACTIONS(4575), - [sym_email_autolink] = ACTIONS(4575), - [sym__whitespace_ge_2] = ACTIONS(4575), - [aux_sym__whitespace_token1] = ACTIONS(4577), - [sym__word_no_digit] = ACTIONS(4575), - [sym__digits] = ACTIONS(4575), - [anon_sym_DASH_DASH] = ACTIONS(4577), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), - [sym__code_span_start] = ACTIONS(4575), - [sym__emphasis_open_star] = ACTIONS(4575), - [sym__emphasis_open_underscore] = ACTIONS(4575), - [sym__strikeout_open] = ACTIONS(4575), - [sym__latex_span_start] = ACTIONS(4575), - [sym__single_quote_open] = ACTIONS(4575), - [sym__double_quote_open] = ACTIONS(4575), - [sym__superscript_open] = ACTIONS(4575), - [sym__subscript_open] = ACTIONS(4575), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), - [sym__cite_author_in_text] = ACTIONS(4575), - [sym__cite_suppress_author] = ACTIONS(4575), - [sym__shortcode_open_escaped] = ACTIONS(4575), - [sym__shortcode_open] = ACTIONS(4575), - [sym__unclosed_span] = ACTIONS(4575), - [sym__strong_emphasis_open_star] = ACTIONS(4575), - [sym__strong_emphasis_close_star] = ACTIONS(4575), - [sym__strong_emphasis_open_underscore] = ACTIONS(4575), - }, - [STATE(1173)] = { + [STATE(1170)] = { [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -127174,74 +126972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4233), [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, - [STATE(1174)] = { - [sym__backslash_escape] = ACTIONS(4631), - [sym_entity_reference] = ACTIONS(4631), - [sym_numeric_character_reference] = ACTIONS(4631), - [anon_sym_LT] = ACTIONS(4633), - [anon_sym_GT] = ACTIONS(4631), - [anon_sym_BANG] = ACTIONS(4631), - [anon_sym_DQUOTE] = ACTIONS(4631), - [anon_sym_POUND] = ACTIONS(4631), - [anon_sym_DOLLAR] = ACTIONS(4631), - [anon_sym_PERCENT] = ACTIONS(4631), - [anon_sym_AMP] = ACTIONS(4633), - [anon_sym_SQUOTE] = ACTIONS(4631), - [anon_sym_PLUS] = ACTIONS(4631), - [anon_sym_COMMA] = ACTIONS(4631), - [anon_sym_DASH] = ACTIONS(4633), - [anon_sym_DOT] = ACTIONS(4633), - [anon_sym_SLASH] = ACTIONS(4631), - [anon_sym_COLON] = ACTIONS(4631), - [anon_sym_SEMI] = ACTIONS(4631), - [anon_sym_EQ] = ACTIONS(4631), - [anon_sym_QMARK] = ACTIONS(4631), - [anon_sym_LBRACK] = ACTIONS(4633), - [anon_sym_BSLASH] = ACTIONS(4633), - [anon_sym_CARET] = ACTIONS(4633), - [anon_sym_BQUOTE] = ACTIONS(4631), - [anon_sym_LBRACE] = ACTIONS(4631), - [anon_sym_PIPE] = ACTIONS(4631), - [anon_sym_TILDE] = ACTIONS(4631), - [anon_sym_LPAREN] = ACTIONS(4631), - [anon_sym_RPAREN] = ACTIONS(4631), - [sym__newline_token] = ACTIONS(4631), - [aux_sym_insert_token1] = ACTIONS(4631), - [aux_sym_delete_token1] = ACTIONS(4631), - [aux_sym_highlight_token1] = ACTIONS(4631), - [aux_sym_edit_comment_token1] = ACTIONS(4631), - [anon_sym_CARET_LBRACK] = ACTIONS(4631), - [anon_sym_LBRACK_CARET] = ACTIONS(4631), - [sym_uri_autolink] = ACTIONS(4631), - [sym_email_autolink] = ACTIONS(4631), - [sym__whitespace_ge_2] = ACTIONS(4631), - [aux_sym__whitespace_token1] = ACTIONS(4633), - [sym__word_no_digit] = ACTIONS(4631), - [sym__digits] = ACTIONS(4631), - [anon_sym_DASH_DASH] = ACTIONS(4633), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4631), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4631), - [sym__code_span_start] = ACTIONS(4631), - [sym__emphasis_open_star] = ACTIONS(4631), - [sym__emphasis_open_underscore] = ACTIONS(4631), - [sym__emphasis_close_star] = ACTIONS(4631), - [sym__strikeout_open] = ACTIONS(4631), - [sym__latex_span_start] = ACTIONS(4631), - [sym__single_quote_open] = ACTIONS(4631), - [sym__double_quote_open] = ACTIONS(4631), - [sym__superscript_open] = ACTIONS(4631), - [sym__subscript_open] = ACTIONS(4631), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4631), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4631), - [sym__cite_author_in_text] = ACTIONS(4631), - [sym__cite_suppress_author] = ACTIONS(4631), - [sym__shortcode_open_escaped] = ACTIONS(4631), - [sym__shortcode_open] = ACTIONS(4631), - [sym__unclosed_span] = ACTIONS(4631), - [sym__strong_emphasis_open_star] = ACTIONS(4631), - [sym__strong_emphasis_open_underscore] = ACTIONS(4631), - }, - [STATE(1175)] = { + [STATE(1171)] = { [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -127308,74 +127039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4237), [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, - [STATE(1176)] = { - [sym__backslash_escape] = ACTIONS(4635), - [sym_entity_reference] = ACTIONS(4635), - [sym_numeric_character_reference] = ACTIONS(4635), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4635), - [anon_sym_BANG] = ACTIONS(4635), - [anon_sym_DQUOTE] = ACTIONS(4635), - [anon_sym_POUND] = ACTIONS(4635), - [anon_sym_DOLLAR] = ACTIONS(4635), - [anon_sym_PERCENT] = ACTIONS(4635), - [anon_sym_AMP] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4635), - [anon_sym_PLUS] = ACTIONS(4635), - [anon_sym_COMMA] = ACTIONS(4635), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4635), - [anon_sym_COLON] = ACTIONS(4635), - [anon_sym_SEMI] = ACTIONS(4635), - [anon_sym_EQ] = ACTIONS(4635), - [anon_sym_QMARK] = ACTIONS(4635), - [anon_sym_LBRACK] = ACTIONS(4637), - [anon_sym_BSLASH] = ACTIONS(4637), - [anon_sym_CARET] = ACTIONS(4637), - [anon_sym_BQUOTE] = ACTIONS(4635), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4635), - [anon_sym_TILDE] = ACTIONS(4635), - [anon_sym_LPAREN] = ACTIONS(4635), - [anon_sym_RPAREN] = ACTIONS(4635), - [sym__newline_token] = ACTIONS(4635), - [aux_sym_insert_token1] = ACTIONS(4635), - [aux_sym_delete_token1] = ACTIONS(4635), - [aux_sym_highlight_token1] = ACTIONS(4635), - [aux_sym_edit_comment_token1] = ACTIONS(4635), - [anon_sym_CARET_LBRACK] = ACTIONS(4635), - [anon_sym_LBRACK_CARET] = ACTIONS(4635), - [sym_uri_autolink] = ACTIONS(4635), - [sym_email_autolink] = ACTIONS(4635), - [sym__whitespace_ge_2] = ACTIONS(4635), - [aux_sym__whitespace_token1] = ACTIONS(4637), - [sym__word_no_digit] = ACTIONS(4635), - [sym__digits] = ACTIONS(4635), - [anon_sym_DASH_DASH] = ACTIONS(4637), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4635), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4635), - [sym__code_span_start] = ACTIONS(4635), - [sym__emphasis_open_star] = ACTIONS(4635), - [sym__emphasis_open_underscore] = ACTIONS(4635), - [sym__emphasis_close_star] = ACTIONS(4635), - [sym__strikeout_open] = ACTIONS(4635), - [sym__latex_span_start] = ACTIONS(4635), - [sym__single_quote_open] = ACTIONS(4635), - [sym__double_quote_open] = ACTIONS(4635), - [sym__superscript_open] = ACTIONS(4635), - [sym__subscript_open] = ACTIONS(4635), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4635), - [sym__cite_author_in_text] = ACTIONS(4635), - [sym__cite_suppress_author] = ACTIONS(4635), - [sym__shortcode_open_escaped] = ACTIONS(4635), - [sym__shortcode_open] = ACTIONS(4635), - [sym__unclosed_span] = ACTIONS(4635), - [sym__strong_emphasis_open_star] = ACTIONS(4635), - [sym__strong_emphasis_open_underscore] = ACTIONS(4635), - }, - [STATE(1177)] = { + [STATE(1172)] = { [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -127442,7 +127106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4241), [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, - [STATE(1178)] = { + [STATE(1173)] = { [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -127509,7 +127173,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4245), [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, - [STATE(1179)] = { + [STATE(1174)] = { + [sym__backslash_escape] = ACTIONS(4575), + [sym_entity_reference] = ACTIONS(4575), + [sym_numeric_character_reference] = ACTIONS(4575), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4575), + [anon_sym_DQUOTE] = ACTIONS(4575), + [anon_sym_POUND] = ACTIONS(4575), + [anon_sym_DOLLAR] = ACTIONS(4575), + [anon_sym_PERCENT] = ACTIONS(4575), + [anon_sym_AMP] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4575), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_EQ] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4577), + [anon_sym_BSLASH] = ACTIONS(4577), + [anon_sym_CARET] = ACTIONS(4577), + [anon_sym_BQUOTE] = ACTIONS(4575), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_PIPE] = ACTIONS(4575), + [anon_sym_TILDE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_RPAREN] = ACTIONS(4575), + [sym__newline_token] = ACTIONS(4575), + [aux_sym_insert_token1] = ACTIONS(4575), + [aux_sym_delete_token1] = ACTIONS(4575), + [aux_sym_highlight_token1] = ACTIONS(4575), + [aux_sym_edit_comment_token1] = ACTIONS(4575), + [anon_sym_CARET_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_CARET] = ACTIONS(4575), + [sym_uri_autolink] = ACTIONS(4575), + [sym_email_autolink] = ACTIONS(4575), + [sym__whitespace_ge_2] = ACTIONS(4575), + [aux_sym__whitespace_token1] = ACTIONS(4577), + [sym__word_no_digit] = ACTIONS(4575), + [sym__digits] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4577), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), + [sym__code_span_start] = ACTIONS(4575), + [sym__emphasis_open_star] = ACTIONS(4575), + [sym__emphasis_open_underscore] = ACTIONS(4575), + [sym__strikeout_open] = ACTIONS(4575), + [sym__latex_span_start] = ACTIONS(4575), + [sym__single_quote_open] = ACTIONS(4575), + [sym__double_quote_open] = ACTIONS(4575), + [sym__superscript_open] = ACTIONS(4575), + [sym__subscript_open] = ACTIONS(4575), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), + [sym__cite_author_in_text] = ACTIONS(4575), + [sym__cite_suppress_author] = ACTIONS(4575), + [sym__shortcode_open_escaped] = ACTIONS(4575), + [sym__shortcode_open] = ACTIONS(4575), + [sym__unclosed_span] = ACTIONS(4575), + [sym__strong_emphasis_open_star] = ACTIONS(4575), + [sym__strong_emphasis_close_star] = ACTIONS(4575), + [sym__strong_emphasis_open_underscore] = ACTIONS(4575), + }, + [STATE(1175)] = { [sym__backslash_escape] = ACTIONS(4579), [sym_entity_reference] = ACTIONS(4579), [sym_numeric_character_reference] = ACTIONS(4579), @@ -127576,7 +127307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4579), [sym__strong_emphasis_open_underscore] = ACTIONS(4579), }, - [STATE(1180)] = { + [STATE(1176)] = { [sym__backslash_escape] = ACTIONS(4583), [sym_entity_reference] = ACTIONS(4583), [sym_numeric_character_reference] = ACTIONS(4583), @@ -127643,208 +127374,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4583), [sym__strong_emphasis_open_underscore] = ACTIONS(4583), }, - [STATE(1181)] = { - [sym__backslash_escape] = ACTIONS(4587), - [sym_entity_reference] = ACTIONS(4587), - [sym_numeric_character_reference] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4589), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_DQUOTE] = ACTIONS(4587), - [anon_sym_POUND] = ACTIONS(4587), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_AMP] = ACTIONS(4589), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_COMMA] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_QMARK] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_BSLASH] = ACTIONS(4589), - [anon_sym_CARET] = ACTIONS(4589), - [anon_sym_BQUOTE] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_TILDE] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4587), - [anon_sym_RPAREN] = ACTIONS(4587), - [sym__newline_token] = ACTIONS(4587), - [aux_sym_insert_token1] = ACTIONS(4587), - [aux_sym_delete_token1] = ACTIONS(4587), - [aux_sym_highlight_token1] = ACTIONS(4587), - [aux_sym_edit_comment_token1] = ACTIONS(4587), - [anon_sym_CARET_LBRACK] = ACTIONS(4587), - [anon_sym_LBRACK_CARET] = ACTIONS(4587), - [sym_uri_autolink] = ACTIONS(4587), - [sym_email_autolink] = ACTIONS(4587), - [sym__whitespace_ge_2] = ACTIONS(4587), - [aux_sym__whitespace_token1] = ACTIONS(4589), - [sym__word_no_digit] = ACTIONS(4587), - [sym__digits] = ACTIONS(4587), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), - [sym__code_span_start] = ACTIONS(4587), - [sym__emphasis_open_star] = ACTIONS(4587), - [sym__emphasis_open_underscore] = ACTIONS(4587), - [sym__strikeout_open] = ACTIONS(4587), - [sym__latex_span_start] = ACTIONS(4587), - [sym__single_quote_open] = ACTIONS(4587), - [sym__double_quote_open] = ACTIONS(4587), - [sym__superscript_open] = ACTIONS(4587), - [sym__subscript_open] = ACTIONS(4587), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), - [sym__cite_author_in_text] = ACTIONS(4587), - [sym__cite_suppress_author] = ACTIONS(4587), - [sym__shortcode_open_escaped] = ACTIONS(4587), - [sym__shortcode_open] = ACTIONS(4587), - [sym__unclosed_span] = ACTIONS(4587), - [sym__strong_emphasis_open_star] = ACTIONS(4587), - [sym__strong_emphasis_close_star] = ACTIONS(4587), - [sym__strong_emphasis_open_underscore] = ACTIONS(4587), + [STATE(1177)] = { + [sym__backslash_escape] = ACTIONS(4643), + [sym_entity_reference] = ACTIONS(4643), + [sym_numeric_character_reference] = ACTIONS(4643), + [anon_sym_LT] = ACTIONS(4645), + [anon_sym_GT] = ACTIONS(4643), + [anon_sym_BANG] = ACTIONS(4643), + [anon_sym_DQUOTE] = ACTIONS(4643), + [anon_sym_POUND] = ACTIONS(4643), + [anon_sym_DOLLAR] = ACTIONS(4643), + [anon_sym_PERCENT] = ACTIONS(4643), + [anon_sym_AMP] = ACTIONS(4645), + [anon_sym_SQUOTE] = ACTIONS(4643), + [anon_sym_PLUS] = ACTIONS(4643), + [anon_sym_COMMA] = ACTIONS(4643), + [anon_sym_DASH] = ACTIONS(4645), + [anon_sym_DOT] = ACTIONS(4645), + [anon_sym_SLASH] = ACTIONS(4643), + [anon_sym_COLON] = ACTIONS(4643), + [anon_sym_SEMI] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(4643), + [anon_sym_QMARK] = ACTIONS(4643), + [anon_sym_LBRACK] = ACTIONS(4645), + [anon_sym_BSLASH] = ACTIONS(4645), + [anon_sym_CARET] = ACTIONS(4645), + [anon_sym_BQUOTE] = ACTIONS(4643), + [anon_sym_LBRACE] = ACTIONS(4643), + [anon_sym_PIPE] = ACTIONS(4643), + [anon_sym_TILDE] = ACTIONS(4643), + [anon_sym_LPAREN] = ACTIONS(4643), + [anon_sym_RPAREN] = ACTIONS(4643), + [sym__newline_token] = ACTIONS(4643), + [aux_sym_insert_token1] = ACTIONS(4643), + [aux_sym_delete_token1] = ACTIONS(4643), + [aux_sym_highlight_token1] = ACTIONS(4643), + [aux_sym_edit_comment_token1] = ACTIONS(4643), + [anon_sym_CARET_LBRACK] = ACTIONS(4643), + [anon_sym_LBRACK_CARET] = ACTIONS(4643), + [sym_uri_autolink] = ACTIONS(4643), + [sym_email_autolink] = ACTIONS(4643), + [sym__whitespace_ge_2] = ACTIONS(4643), + [aux_sym__whitespace_token1] = ACTIONS(4645), + [sym__word_no_digit] = ACTIONS(4643), + [sym__digits] = ACTIONS(4643), + [anon_sym_DASH_DASH] = ACTIONS(4645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4643), + [sym__code_span_start] = ACTIONS(4643), + [sym__emphasis_open_star] = ACTIONS(4643), + [sym__emphasis_open_underscore] = ACTIONS(4643), + [sym__emphasis_close_star] = ACTIONS(4643), + [sym__strikeout_open] = ACTIONS(4643), + [sym__latex_span_start] = ACTIONS(4643), + [sym__single_quote_open] = ACTIONS(4643), + [sym__double_quote_open] = ACTIONS(4643), + [sym__superscript_open] = ACTIONS(4643), + [sym__subscript_open] = ACTIONS(4643), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4643), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4643), + [sym__cite_author_in_text] = ACTIONS(4643), + [sym__cite_suppress_author] = ACTIONS(4643), + [sym__shortcode_open_escaped] = ACTIONS(4643), + [sym__shortcode_open] = ACTIONS(4643), + [sym__unclosed_span] = ACTIONS(4643), + [sym__strong_emphasis_open_star] = ACTIONS(4643), + [sym__strong_emphasis_open_underscore] = ACTIONS(4643), }, - [STATE(1182)] = { - [ts_builtin_sym_end] = ACTIONS(4599), - [sym__backslash_escape] = ACTIONS(4599), - [sym_entity_reference] = ACTIONS(4599), - [sym_numeric_character_reference] = ACTIONS(4599), - [anon_sym_LT] = ACTIONS(4601), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_BANG] = ACTIONS(4599), - [anon_sym_DQUOTE] = ACTIONS(4599), - [anon_sym_POUND] = ACTIONS(4599), - [anon_sym_DOLLAR] = ACTIONS(4599), - [anon_sym_PERCENT] = ACTIONS(4599), - [anon_sym_AMP] = ACTIONS(4601), - [anon_sym_SQUOTE] = ACTIONS(4599), - [anon_sym_PLUS] = ACTIONS(4599), - [anon_sym_COMMA] = ACTIONS(4599), - [anon_sym_DASH] = ACTIONS(4601), - [anon_sym_DOT] = ACTIONS(4601), - [anon_sym_SLASH] = ACTIONS(4599), - [anon_sym_COLON] = ACTIONS(4599), - [anon_sym_SEMI] = ACTIONS(4599), - [anon_sym_EQ] = ACTIONS(4599), - [anon_sym_QMARK] = ACTIONS(4599), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_BSLASH] = ACTIONS(4601), - [anon_sym_CARET] = ACTIONS(4601), - [anon_sym_BQUOTE] = ACTIONS(4599), - [anon_sym_LBRACE] = ACTIONS(4599), - [anon_sym_PIPE] = ACTIONS(4599), - [anon_sym_TILDE] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4599), - [anon_sym_RPAREN] = ACTIONS(4599), - [sym__newline_token] = ACTIONS(4599), - [aux_sym_insert_token1] = ACTIONS(4599), - [aux_sym_delete_token1] = ACTIONS(4599), - [aux_sym_highlight_token1] = ACTIONS(4599), - [aux_sym_edit_comment_token1] = ACTIONS(4599), - [anon_sym_CARET_LBRACK] = ACTIONS(4599), - [anon_sym_LBRACK_CARET] = ACTIONS(4599), - [sym_uri_autolink] = ACTIONS(4599), - [sym_email_autolink] = ACTIONS(4599), - [sym__whitespace_ge_2] = ACTIONS(4599), - [aux_sym__whitespace_token1] = ACTIONS(4601), - [sym__word_no_digit] = ACTIONS(4599), - [sym__digits] = ACTIONS(4599), - [anon_sym_DASH_DASH] = ACTIONS(4601), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4599), - [sym__code_span_start] = ACTIONS(4599), - [sym__emphasis_open_star] = ACTIONS(4599), - [sym__emphasis_open_underscore] = ACTIONS(4599), - [sym__strikeout_open] = ACTIONS(4599), - [sym__latex_span_start] = ACTIONS(4599), - [sym__single_quote_open] = ACTIONS(4599), - [sym__double_quote_open] = ACTIONS(4599), - [sym__superscript_open] = ACTIONS(4599), - [sym__subscript_open] = ACTIONS(4599), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4599), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4599), - [sym__cite_author_in_text] = ACTIONS(4599), - [sym__cite_suppress_author] = ACTIONS(4599), - [sym__shortcode_open_escaped] = ACTIONS(4599), - [sym__shortcode_open] = ACTIONS(4599), - [sym__unclosed_span] = ACTIONS(4599), - [sym__strong_emphasis_open_star] = ACTIONS(4599), - [sym__strong_emphasis_open_underscore] = ACTIONS(4599), + [STATE(1178)] = { + [sym__backslash_escape] = ACTIONS(4181), + [sym_entity_reference] = ACTIONS(4181), + [sym_numeric_character_reference] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4181), + [anon_sym_DQUOTE] = ACTIONS(4181), + [anon_sym_POUND] = ACTIONS(4181), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_PERCENT] = ACTIONS(4181), + [anon_sym_AMP] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_EQ] = ACTIONS(4181), + [anon_sym_QMARK] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(4183), + [anon_sym_BSLASH] = ACTIONS(4183), + [anon_sym_CARET] = ACTIONS(4183), + [anon_sym_BQUOTE] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_TILDE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(4181), + [sym__newline_token] = ACTIONS(4181), + [aux_sym_insert_token1] = ACTIONS(4181), + [aux_sym_delete_token1] = ACTIONS(4181), + [aux_sym_highlight_token1] = ACTIONS(4181), + [aux_sym_edit_comment_token1] = ACTIONS(4181), + [anon_sym_CARET_LBRACK] = ACTIONS(4181), + [anon_sym_LBRACK_CARET] = ACTIONS(4181), + [sym_uri_autolink] = ACTIONS(4181), + [sym_email_autolink] = ACTIONS(4181), + [sym__whitespace_ge_2] = ACTIONS(4181), + [aux_sym__whitespace_token1] = ACTIONS(4183), + [sym__word_no_digit] = ACTIONS(4181), + [sym__digits] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4183), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4181), + [sym__code_span_start] = ACTIONS(4181), + [sym__emphasis_open_star] = ACTIONS(4181), + [sym__emphasis_open_underscore] = ACTIONS(4181), + [sym__emphasis_close_star] = ACTIONS(4181), + [sym__strikeout_open] = ACTIONS(4181), + [sym__latex_span_start] = ACTIONS(4181), + [sym__single_quote_open] = ACTIONS(4181), + [sym__double_quote_open] = ACTIONS(4181), + [sym__superscript_open] = ACTIONS(4181), + [sym__subscript_open] = ACTIONS(4181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4181), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4181), + [sym__cite_author_in_text] = ACTIONS(4181), + [sym__cite_suppress_author] = ACTIONS(4181), + [sym__shortcode_open_escaped] = ACTIONS(4181), + [sym__shortcode_open] = ACTIONS(4181), + [sym__unclosed_span] = ACTIONS(4181), + [sym__strong_emphasis_open_star] = ACTIONS(4181), + [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, - [STATE(1183)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - [sym__strong_emphasis_close_underscore] = ACTIONS(4335), + [STATE(1179)] = { + [ts_builtin_sym_end] = ACTIONS(4595), + [sym__backslash_escape] = ACTIONS(4595), + [sym_entity_reference] = ACTIONS(4595), + [sym_numeric_character_reference] = ACTIONS(4595), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_BANG] = ACTIONS(4595), + [anon_sym_DQUOTE] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4595), + [anon_sym_DOLLAR] = ACTIONS(4595), + [anon_sym_PERCENT] = ACTIONS(4595), + [anon_sym_AMP] = ACTIONS(4597), + [anon_sym_SQUOTE] = ACTIONS(4595), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_COMMA] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [anon_sym_LBRACK] = ACTIONS(4597), + [anon_sym_BSLASH] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4597), + [anon_sym_BQUOTE] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4595), + [anon_sym_PIPE] = ACTIONS(4595), + [anon_sym_TILDE] = ACTIONS(4595), + [anon_sym_LPAREN] = ACTIONS(4595), + [anon_sym_RPAREN] = ACTIONS(4595), + [sym__newline_token] = ACTIONS(4595), + [aux_sym_insert_token1] = ACTIONS(4595), + [aux_sym_delete_token1] = ACTIONS(4595), + [aux_sym_highlight_token1] = ACTIONS(4595), + [aux_sym_edit_comment_token1] = ACTIONS(4595), + [anon_sym_CARET_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACK_CARET] = ACTIONS(4595), + [sym_uri_autolink] = ACTIONS(4595), + [sym_email_autolink] = ACTIONS(4595), + [sym__whitespace_ge_2] = ACTIONS(4595), + [aux_sym__whitespace_token1] = ACTIONS(4597), + [sym__word_no_digit] = ACTIONS(4595), + [sym__digits] = ACTIONS(4595), + [anon_sym_DASH_DASH] = ACTIONS(4597), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4595), + [sym__code_span_start] = ACTIONS(4595), + [sym__emphasis_open_star] = ACTIONS(4595), + [sym__emphasis_open_underscore] = ACTIONS(4595), + [sym__strikeout_open] = ACTIONS(4595), + [sym__latex_span_start] = ACTIONS(4595), + [sym__single_quote_open] = ACTIONS(4595), + [sym__double_quote_open] = ACTIONS(4595), + [sym__superscript_open] = ACTIONS(4595), + [sym__subscript_open] = ACTIONS(4595), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4595), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4595), + [sym__cite_author_in_text] = ACTIONS(4595), + [sym__cite_suppress_author] = ACTIONS(4595), + [sym__shortcode_open_escaped] = ACTIONS(4595), + [sym__shortcode_open] = ACTIONS(4595), + [sym__unclosed_span] = ACTIONS(4595), + [sym__strong_emphasis_open_star] = ACTIONS(4595), + [sym__strong_emphasis_open_underscore] = ACTIONS(4595), }, - [STATE(1184)] = { + [STATE(1180)] = { [sym__backslash_escape] = ACTIONS(4647), [sym_entity_reference] = ACTIONS(4647), [sym_numeric_character_reference] = ACTIONS(4647), @@ -127911,7 +127642,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4647), [sym__strong_emphasis_open_underscore] = ACTIONS(4647), }, - [STATE(1185)] = { + [STATE(1181)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + [sym__strong_emphasis_close_underscore] = ACTIONS(4329), + }, + [STATE(1182)] = { + [sym__backslash_escape] = ACTIONS(4651), + [sym_entity_reference] = ACTIONS(4651), + [sym_numeric_character_reference] = ACTIONS(4651), + [anon_sym_LT] = ACTIONS(4653), + [anon_sym_GT] = ACTIONS(4651), + [anon_sym_BANG] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4651), + [anon_sym_POUND] = ACTIONS(4651), + [anon_sym_DOLLAR] = ACTIONS(4651), + [anon_sym_PERCENT] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(4653), + [anon_sym_SQUOTE] = ACTIONS(4651), + [anon_sym_PLUS] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4651), + [anon_sym_DASH] = ACTIONS(4653), + [anon_sym_DOT] = ACTIONS(4653), + [anon_sym_SLASH] = ACTIONS(4651), + [anon_sym_COLON] = ACTIONS(4651), + [anon_sym_SEMI] = ACTIONS(4651), + [anon_sym_EQ] = ACTIONS(4651), + [anon_sym_QMARK] = ACTIONS(4651), + [anon_sym_LBRACK] = ACTIONS(4653), + [anon_sym_BSLASH] = ACTIONS(4653), + [anon_sym_CARET] = ACTIONS(4653), + [anon_sym_BQUOTE] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4651), + [anon_sym_PIPE] = ACTIONS(4651), + [anon_sym_TILDE] = ACTIONS(4651), + [anon_sym_LPAREN] = ACTIONS(4651), + [anon_sym_RPAREN] = ACTIONS(4651), + [sym__newline_token] = ACTIONS(4651), + [aux_sym_insert_token1] = ACTIONS(4651), + [aux_sym_delete_token1] = ACTIONS(4651), + [aux_sym_highlight_token1] = ACTIONS(4651), + [aux_sym_edit_comment_token1] = ACTIONS(4651), + [anon_sym_CARET_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACK_CARET] = ACTIONS(4651), + [sym_uri_autolink] = ACTIONS(4651), + [sym_email_autolink] = ACTIONS(4651), + [sym__whitespace_ge_2] = ACTIONS(4651), + [aux_sym__whitespace_token1] = ACTIONS(4653), + [sym__word_no_digit] = ACTIONS(4651), + [sym__digits] = ACTIONS(4651), + [anon_sym_DASH_DASH] = ACTIONS(4653), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4651), + [sym__code_span_start] = ACTIONS(4651), + [sym__emphasis_open_star] = ACTIONS(4651), + [sym__emphasis_open_underscore] = ACTIONS(4651), + [sym__emphasis_close_star] = ACTIONS(4651), + [sym__strikeout_open] = ACTIONS(4651), + [sym__latex_span_start] = ACTIONS(4651), + [sym__single_quote_open] = ACTIONS(4651), + [sym__double_quote_open] = ACTIONS(4651), + [sym__superscript_open] = ACTIONS(4651), + [sym__subscript_open] = ACTIONS(4651), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4651), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4651), + [sym__cite_author_in_text] = ACTIONS(4651), + [sym__cite_suppress_author] = ACTIONS(4651), + [sym__shortcode_open_escaped] = ACTIONS(4651), + [sym__shortcode_open] = ACTIONS(4651), + [sym__unclosed_span] = ACTIONS(4651), + [sym__strong_emphasis_open_star] = ACTIONS(4651), + [sym__strong_emphasis_open_underscore] = ACTIONS(4651), + }, + [STATE(1183)] = { + [sym__backslash_escape] = ACTIONS(4587), + [sym_entity_reference] = ACTIONS(4587), + [sym_numeric_character_reference] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4587), + [anon_sym_DQUOTE] = ACTIONS(4587), + [anon_sym_POUND] = ACTIONS(4587), + [anon_sym_DOLLAR] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4587), + [anon_sym_AMP] = ACTIONS(4589), + [anon_sym_SQUOTE] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_BSLASH] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4589), + [anon_sym_BQUOTE] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_PIPE] = ACTIONS(4587), + [anon_sym_TILDE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4587), + [sym__newline_token] = ACTIONS(4587), + [aux_sym_insert_token1] = ACTIONS(4587), + [aux_sym_delete_token1] = ACTIONS(4587), + [aux_sym_highlight_token1] = ACTIONS(4587), + [aux_sym_edit_comment_token1] = ACTIONS(4587), + [anon_sym_CARET_LBRACK] = ACTIONS(4587), + [anon_sym_LBRACK_CARET] = ACTIONS(4587), + [sym_uri_autolink] = ACTIONS(4587), + [sym_email_autolink] = ACTIONS(4587), + [sym__whitespace_ge_2] = ACTIONS(4587), + [aux_sym__whitespace_token1] = ACTIONS(4589), + [sym__word_no_digit] = ACTIONS(4587), + [sym__digits] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), + [sym__code_span_start] = ACTIONS(4587), + [sym__emphasis_open_star] = ACTIONS(4587), + [sym__emphasis_open_underscore] = ACTIONS(4587), + [sym__strikeout_open] = ACTIONS(4587), + [sym__latex_span_start] = ACTIONS(4587), + [sym__single_quote_open] = ACTIONS(4587), + [sym__double_quote_open] = ACTIONS(4587), + [sym__superscript_open] = ACTIONS(4587), + [sym__subscript_open] = ACTIONS(4587), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), + [sym__cite_author_in_text] = ACTIONS(4587), + [sym__cite_suppress_author] = ACTIONS(4587), + [sym__shortcode_open_escaped] = ACTIONS(4587), + [sym__shortcode_open] = ACTIONS(4587), + [sym__unclosed_span] = ACTIONS(4587), + [sym__strong_emphasis_open_star] = ACTIONS(4587), + [sym__strong_emphasis_open_underscore] = ACTIONS(4587), + [sym__strong_emphasis_close_underscore] = ACTIONS(4587), + }, + [STATE(1184)] = { [sym__backslash_escape] = ACTIONS(4591), [sym_entity_reference] = ACTIONS(4591), [sym_numeric_character_reference] = ACTIONS(4591), @@ -127978,7 +127910,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4591), [sym__strong_emphasis_close_underscore] = ACTIONS(4591), }, + [STATE(1185)] = { + [ts_builtin_sym_end] = ACTIONS(4639), + [sym__backslash_escape] = ACTIONS(4639), + [sym_entity_reference] = ACTIONS(4639), + [sym_numeric_character_reference] = ACTIONS(4639), + [anon_sym_LT] = ACTIONS(4641), + [anon_sym_GT] = ACTIONS(4639), + [anon_sym_BANG] = ACTIONS(4639), + [anon_sym_DQUOTE] = ACTIONS(4639), + [anon_sym_POUND] = ACTIONS(4639), + [anon_sym_DOLLAR] = ACTIONS(4639), + [anon_sym_PERCENT] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4641), + [anon_sym_SQUOTE] = ACTIONS(4639), + [anon_sym_PLUS] = ACTIONS(4639), + [anon_sym_COMMA] = ACTIONS(4639), + [anon_sym_DASH] = ACTIONS(4641), + [anon_sym_DOT] = ACTIONS(4641), + [anon_sym_SLASH] = ACTIONS(4639), + [anon_sym_COLON] = ACTIONS(4639), + [anon_sym_SEMI] = ACTIONS(4639), + [anon_sym_EQ] = ACTIONS(4639), + [anon_sym_QMARK] = ACTIONS(4639), + [anon_sym_LBRACK] = ACTIONS(4641), + [anon_sym_BSLASH] = ACTIONS(4641), + [anon_sym_CARET] = ACTIONS(4641), + [anon_sym_BQUOTE] = ACTIONS(4639), + [anon_sym_LBRACE] = ACTIONS(4639), + [anon_sym_PIPE] = ACTIONS(4639), + [anon_sym_TILDE] = ACTIONS(4639), + [anon_sym_LPAREN] = ACTIONS(4639), + [anon_sym_RPAREN] = ACTIONS(4639), + [sym__newline_token] = ACTIONS(4639), + [aux_sym_insert_token1] = ACTIONS(4639), + [aux_sym_delete_token1] = ACTIONS(4639), + [aux_sym_highlight_token1] = ACTIONS(4639), + [aux_sym_edit_comment_token1] = ACTIONS(4639), + [anon_sym_CARET_LBRACK] = ACTIONS(4639), + [anon_sym_LBRACK_CARET] = ACTIONS(4639), + [sym_uri_autolink] = ACTIONS(4639), + [sym_email_autolink] = ACTIONS(4639), + [sym__whitespace_ge_2] = ACTIONS(4639), + [aux_sym__whitespace_token1] = ACTIONS(4641), + [sym__word_no_digit] = ACTIONS(4639), + [sym__digits] = ACTIONS(4639), + [anon_sym_DASH_DASH] = ACTIONS(4641), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4639), + [sym__code_span_start] = ACTIONS(4639), + [sym__emphasis_open_star] = ACTIONS(4639), + [sym__emphasis_open_underscore] = ACTIONS(4639), + [sym__strikeout_open] = ACTIONS(4639), + [sym__latex_span_start] = ACTIONS(4639), + [sym__single_quote_open] = ACTIONS(4639), + [sym__double_quote_open] = ACTIONS(4639), + [sym__superscript_open] = ACTIONS(4639), + [sym__subscript_open] = ACTIONS(4639), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4639), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4639), + [sym__cite_author_in_text] = ACTIONS(4639), + [sym__cite_suppress_author] = ACTIONS(4639), + [sym__shortcode_open_escaped] = ACTIONS(4639), + [sym__shortcode_open] = ACTIONS(4639), + [sym__unclosed_span] = ACTIONS(4639), + [sym__strong_emphasis_open_star] = ACTIONS(4639), + [sym__strong_emphasis_open_underscore] = ACTIONS(4639), + }, [STATE(1186)] = { + [sym__backslash_escape] = ACTIONS(4655), + [sym_entity_reference] = ACTIONS(4655), + [sym_numeric_character_reference] = ACTIONS(4655), + [anon_sym_LT] = ACTIONS(4657), + [anon_sym_GT] = ACTIONS(4655), + [anon_sym_BANG] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4655), + [anon_sym_POUND] = ACTIONS(4655), + [anon_sym_DOLLAR] = ACTIONS(4655), + [anon_sym_PERCENT] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(4657), + [anon_sym_SQUOTE] = ACTIONS(4655), + [anon_sym_PLUS] = ACTIONS(4655), + [anon_sym_COMMA] = ACTIONS(4655), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_DOT] = ACTIONS(4657), + [anon_sym_SLASH] = ACTIONS(4655), + [anon_sym_COLON] = ACTIONS(4655), + [anon_sym_SEMI] = ACTIONS(4655), + [anon_sym_EQ] = ACTIONS(4655), + [anon_sym_QMARK] = ACTIONS(4655), + [anon_sym_LBRACK] = ACTIONS(4657), + [anon_sym_BSLASH] = ACTIONS(4657), + [anon_sym_CARET] = ACTIONS(4657), + [anon_sym_BQUOTE] = ACTIONS(4655), + [anon_sym_LBRACE] = ACTIONS(4655), + [anon_sym_PIPE] = ACTIONS(4655), + [anon_sym_TILDE] = ACTIONS(4655), + [anon_sym_LPAREN] = ACTIONS(4655), + [anon_sym_RPAREN] = ACTIONS(4655), + [sym__newline_token] = ACTIONS(4655), + [aux_sym_insert_token1] = ACTIONS(4655), + [aux_sym_delete_token1] = ACTIONS(4655), + [aux_sym_highlight_token1] = ACTIONS(4655), + [aux_sym_edit_comment_token1] = ACTIONS(4655), + [anon_sym_CARET_LBRACK] = ACTIONS(4655), + [anon_sym_LBRACK_CARET] = ACTIONS(4655), + [sym_uri_autolink] = ACTIONS(4655), + [sym_email_autolink] = ACTIONS(4655), + [sym__whitespace_ge_2] = ACTIONS(4655), + [aux_sym__whitespace_token1] = ACTIONS(4657), + [sym__word_no_digit] = ACTIONS(4655), + [sym__digits] = ACTIONS(4655), + [anon_sym_DASH_DASH] = ACTIONS(4657), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4655), + [sym__code_span_start] = ACTIONS(4655), + [sym__emphasis_open_star] = ACTIONS(4655), + [sym__emphasis_open_underscore] = ACTIONS(4655), + [sym__emphasis_close_star] = ACTIONS(4655), + [sym__strikeout_open] = ACTIONS(4655), + [sym__latex_span_start] = ACTIONS(4655), + [sym__single_quote_open] = ACTIONS(4655), + [sym__double_quote_open] = ACTIONS(4655), + [sym__superscript_open] = ACTIONS(4655), + [sym__subscript_open] = ACTIONS(4655), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4655), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4655), + [sym__cite_author_in_text] = ACTIONS(4655), + [sym__cite_suppress_author] = ACTIONS(4655), + [sym__shortcode_open_escaped] = ACTIONS(4655), + [sym__shortcode_open] = ACTIONS(4655), + [sym__unclosed_span] = ACTIONS(4655), + [sym__strong_emphasis_open_star] = ACTIONS(4655), + [sym__strong_emphasis_open_underscore] = ACTIONS(4655), + }, + [STATE(1187)] = { [sym__backslash_escape] = ACTIONS(4595), [sym_entity_reference] = ACTIONS(4595), [sym_numeric_character_reference] = ACTIONS(4595), @@ -128045,73 +128111,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4595), [sym__strong_emphasis_close_underscore] = ACTIONS(4595), }, - [STATE(1187)] = { - [sym__backslash_escape] = ACTIONS(4181), - [sym_entity_reference] = ACTIONS(4181), - [sym_numeric_character_reference] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4181), - [anon_sym_POUND] = ACTIONS(4181), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_AMP] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_COLON] = ACTIONS(4181), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_QMARK] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_BSLASH] = ACTIONS(4183), - [anon_sym_CARET] = ACTIONS(4183), - [anon_sym_BQUOTE] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4181), - [anon_sym_PIPE] = ACTIONS(4181), - [anon_sym_TILDE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_RPAREN] = ACTIONS(4181), - [sym__newline_token] = ACTIONS(4181), - [aux_sym_insert_token1] = ACTIONS(4181), - [aux_sym_delete_token1] = ACTIONS(4181), - [aux_sym_highlight_token1] = ACTIONS(4181), - [aux_sym_edit_comment_token1] = ACTIONS(4181), - [anon_sym_CARET_LBRACK] = ACTIONS(4181), - [anon_sym_LBRACK_CARET] = ACTIONS(4181), - [sym_uri_autolink] = ACTIONS(4181), - [sym_email_autolink] = ACTIONS(4181), - [sym__whitespace_ge_2] = ACTIONS(4181), - [aux_sym__whitespace_token1] = ACTIONS(4183), - [sym__word_no_digit] = ACTIONS(4181), - [sym__digits] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4183), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4181), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4181), - [sym__code_span_start] = ACTIONS(4181), - [sym__emphasis_open_star] = ACTIONS(4181), - [sym__emphasis_open_underscore] = ACTIONS(4181), - [sym__emphasis_close_star] = ACTIONS(4181), - [sym__strikeout_open] = ACTIONS(4181), - [sym__latex_span_start] = ACTIONS(4181), - [sym__single_quote_open] = ACTIONS(4181), - [sym__double_quote_open] = ACTIONS(4181), - [sym__superscript_open] = ACTIONS(4181), - [sym__subscript_open] = ACTIONS(4181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4181), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4181), - [sym__cite_author_in_text] = ACTIONS(4181), - [sym__cite_suppress_author] = ACTIONS(4181), - [sym__shortcode_open_escaped] = ACTIONS(4181), - [sym__shortcode_open] = ACTIONS(4181), - [sym__unclosed_span] = ACTIONS(4181), - [sym__strong_emphasis_open_star] = ACTIONS(4181), - [sym__strong_emphasis_open_underscore] = ACTIONS(4181), - }, [STATE(1188)] = { [sym__backslash_escape] = ACTIONS(4599), [sym_entity_reference] = ACTIONS(4599), @@ -128771,6 +128770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__double_quote_open] = ACTIONS(4635), [sym__superscript_open] = ACTIONS(4635), [sym__subscript_open] = ACTIONS(4635), + [sym__subscript_close] = ACTIONS(4635), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4635), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4635), [sym__cite_author_in_text] = ACTIONS(4635), @@ -128780,211 +128780,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unclosed_span] = ACTIONS(4635), [sym__strong_emphasis_open_star] = ACTIONS(4635), [sym__strong_emphasis_open_underscore] = ACTIONS(4635), - [sym__strong_emphasis_close_underscore] = ACTIONS(4635), }, [STATE(1198)] = { - [sym__backslash_escape] = ACTIONS(4639), - [sym_entity_reference] = ACTIONS(4639), - [sym_numeric_character_reference] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4641), - [anon_sym_GT] = ACTIONS(4639), - [anon_sym_BANG] = ACTIONS(4639), - [anon_sym_DQUOTE] = ACTIONS(4639), - [anon_sym_POUND] = ACTIONS(4639), - [anon_sym_DOLLAR] = ACTIONS(4639), - [anon_sym_PERCENT] = ACTIONS(4639), - [anon_sym_AMP] = ACTIONS(4641), - [anon_sym_SQUOTE] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4641), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_SLASH] = ACTIONS(4639), - [anon_sym_COLON] = ACTIONS(4639), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_EQ] = ACTIONS(4639), - [anon_sym_QMARK] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4641), - [anon_sym_BSLASH] = ACTIONS(4641), - [anon_sym_CARET] = ACTIONS(4641), - [anon_sym_BQUOTE] = ACTIONS(4639), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_PIPE] = ACTIONS(4639), - [anon_sym_TILDE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_RPAREN] = ACTIONS(4639), - [sym__newline_token] = ACTIONS(4639), - [aux_sym_insert_token1] = ACTIONS(4639), - [aux_sym_delete_token1] = ACTIONS(4639), - [aux_sym_highlight_token1] = ACTIONS(4639), - [aux_sym_edit_comment_token1] = ACTIONS(4639), - [anon_sym_CARET_LBRACK] = ACTIONS(4639), - [anon_sym_LBRACK_CARET] = ACTIONS(4639), - [sym_uri_autolink] = ACTIONS(4639), - [sym_email_autolink] = ACTIONS(4639), - [sym__whitespace_ge_2] = ACTIONS(4639), - [aux_sym__whitespace_token1] = ACTIONS(4641), - [sym__word_no_digit] = ACTIONS(4639), - [sym__digits] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4641), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4639), - [sym__code_span_start] = ACTIONS(4639), - [sym__emphasis_open_star] = ACTIONS(4639), - [sym__emphasis_open_underscore] = ACTIONS(4639), - [sym__strikeout_open] = ACTIONS(4639), - [sym__latex_span_start] = ACTIONS(4639), - [sym__single_quote_open] = ACTIONS(4639), - [sym__double_quote_open] = ACTIONS(4639), - [sym__superscript_open] = ACTIONS(4639), - [sym__subscript_open] = ACTIONS(4639), - [sym__subscript_close] = ACTIONS(4639), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4639), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4639), - [sym__cite_author_in_text] = ACTIONS(4639), - [sym__cite_suppress_author] = ACTIONS(4639), - [sym__shortcode_open_escaped] = ACTIONS(4639), - [sym__shortcode_open] = ACTIONS(4639), - [sym__unclosed_span] = ACTIONS(4639), - [sym__strong_emphasis_open_star] = ACTIONS(4639), - [sym__strong_emphasis_open_underscore] = ACTIONS(4639), - }, - [STATE(1199)] = { - [sym__backslash_escape] = ACTIONS(4651), - [sym_entity_reference] = ACTIONS(4651), - [sym_numeric_character_reference] = ACTIONS(4651), - [anon_sym_LT] = ACTIONS(4653), - [anon_sym_GT] = ACTIONS(4651), - [anon_sym_BANG] = ACTIONS(4651), - [anon_sym_DQUOTE] = ACTIONS(4651), - [anon_sym_POUND] = ACTIONS(4651), - [anon_sym_DOLLAR] = ACTIONS(4651), - [anon_sym_PERCENT] = ACTIONS(4651), - [anon_sym_AMP] = ACTIONS(4653), - [anon_sym_SQUOTE] = ACTIONS(4651), - [anon_sym_PLUS] = ACTIONS(4651), - [anon_sym_COMMA] = ACTIONS(4651), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_DOT] = ACTIONS(4653), - [anon_sym_SLASH] = ACTIONS(4651), - [anon_sym_COLON] = ACTIONS(4651), - [anon_sym_SEMI] = ACTIONS(4651), - [anon_sym_EQ] = ACTIONS(4651), - [anon_sym_QMARK] = ACTIONS(4651), - [anon_sym_LBRACK] = ACTIONS(4653), - [anon_sym_BSLASH] = ACTIONS(4653), - [anon_sym_CARET] = ACTIONS(4653), - [anon_sym_BQUOTE] = ACTIONS(4651), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4651), - [anon_sym_TILDE] = ACTIONS(4651), - [anon_sym_LPAREN] = ACTIONS(4651), - [anon_sym_RPAREN] = ACTIONS(4651), - [sym__newline_token] = ACTIONS(4651), - [aux_sym_insert_token1] = ACTIONS(4651), - [aux_sym_delete_token1] = ACTIONS(4651), - [aux_sym_highlight_token1] = ACTIONS(4651), - [aux_sym_edit_comment_token1] = ACTIONS(4651), - [anon_sym_CARET_LBRACK] = ACTIONS(4651), - [anon_sym_LBRACK_CARET] = ACTIONS(4651), - [sym_uri_autolink] = ACTIONS(4651), - [sym_email_autolink] = ACTIONS(4651), - [sym__whitespace_ge_2] = ACTIONS(4651), - [aux_sym__whitespace_token1] = ACTIONS(4653), - [sym__word_no_digit] = ACTIONS(4651), - [sym__digits] = ACTIONS(4651), - [anon_sym_DASH_DASH] = ACTIONS(4653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4651), - [sym__code_span_start] = ACTIONS(4651), - [sym__emphasis_open_star] = ACTIONS(4651), - [sym__emphasis_open_underscore] = ACTIONS(4651), - [sym__emphasis_close_star] = ACTIONS(4651), - [sym__strikeout_open] = ACTIONS(4651), - [sym__latex_span_start] = ACTIONS(4651), - [sym__single_quote_open] = ACTIONS(4651), - [sym__double_quote_open] = ACTIONS(4651), - [sym__superscript_open] = ACTIONS(4651), - [sym__subscript_open] = ACTIONS(4651), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4651), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4651), - [sym__cite_author_in_text] = ACTIONS(4651), - [sym__cite_suppress_author] = ACTIONS(4651), - [sym__shortcode_open_escaped] = ACTIONS(4651), - [sym__shortcode_open] = ACTIONS(4651), - [sym__unclosed_span] = ACTIONS(4651), - [sym__strong_emphasis_open_star] = ACTIONS(4651), - [sym__strong_emphasis_open_underscore] = ACTIONS(4651), + [sym__backslash_escape] = ACTIONS(4659), + [sym_entity_reference] = ACTIONS(4659), + [sym_numeric_character_reference] = ACTIONS(4659), + [anon_sym_LT] = ACTIONS(4661), + [anon_sym_GT] = ACTIONS(4659), + [anon_sym_BANG] = ACTIONS(4659), + [anon_sym_DQUOTE] = ACTIONS(4659), + [anon_sym_POUND] = ACTIONS(4659), + [anon_sym_DOLLAR] = ACTIONS(4659), + [anon_sym_PERCENT] = ACTIONS(4659), + [anon_sym_AMP] = ACTIONS(4661), + [anon_sym_SQUOTE] = ACTIONS(4659), + [anon_sym_PLUS] = ACTIONS(4659), + [anon_sym_COMMA] = ACTIONS(4659), + [anon_sym_DASH] = ACTIONS(4661), + [anon_sym_DOT] = ACTIONS(4661), + [anon_sym_SLASH] = ACTIONS(4659), + [anon_sym_COLON] = ACTIONS(4659), + [anon_sym_SEMI] = ACTIONS(4659), + [anon_sym_EQ] = ACTIONS(4659), + [anon_sym_QMARK] = ACTIONS(4659), + [anon_sym_LBRACK] = ACTIONS(4661), + [anon_sym_BSLASH] = ACTIONS(4661), + [anon_sym_CARET] = ACTIONS(4661), + [anon_sym_BQUOTE] = ACTIONS(4659), + [anon_sym_LBRACE] = ACTIONS(4659), + [anon_sym_PIPE] = ACTIONS(4659), + [anon_sym_TILDE] = ACTIONS(4659), + [anon_sym_LPAREN] = ACTIONS(4659), + [anon_sym_RPAREN] = ACTIONS(4659), + [sym__newline_token] = ACTIONS(4659), + [aux_sym_insert_token1] = ACTIONS(4659), + [aux_sym_delete_token1] = ACTIONS(4659), + [aux_sym_highlight_token1] = ACTIONS(4659), + [aux_sym_edit_comment_token1] = ACTIONS(4659), + [anon_sym_CARET_LBRACK] = ACTIONS(4659), + [anon_sym_LBRACK_CARET] = ACTIONS(4659), + [sym_uri_autolink] = ACTIONS(4659), + [sym_email_autolink] = ACTIONS(4659), + [sym__whitespace_ge_2] = ACTIONS(4659), + [aux_sym__whitespace_token1] = ACTIONS(4661), + [sym__word_no_digit] = ACTIONS(4659), + [sym__digits] = ACTIONS(4659), + [anon_sym_DASH_DASH] = ACTIONS(4661), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4659), + [sym__code_span_start] = ACTIONS(4659), + [sym__emphasis_open_star] = ACTIONS(4659), + [sym__emphasis_open_underscore] = ACTIONS(4659), + [sym__emphasis_close_star] = ACTIONS(4659), + [sym__strikeout_open] = ACTIONS(4659), + [sym__latex_span_start] = ACTIONS(4659), + [sym__single_quote_open] = ACTIONS(4659), + [sym__double_quote_open] = ACTIONS(4659), + [sym__superscript_open] = ACTIONS(4659), + [sym__subscript_open] = ACTIONS(4659), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4659), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4659), + [sym__cite_author_in_text] = ACTIONS(4659), + [sym__cite_suppress_author] = ACTIONS(4659), + [sym__shortcode_open_escaped] = ACTIONS(4659), + [sym__shortcode_open] = ACTIONS(4659), + [sym__unclosed_span] = ACTIONS(4659), + [sym__strong_emphasis_open_star] = ACTIONS(4659), + [sym__strong_emphasis_open_underscore] = ACTIONS(4659), + }, + [STATE(1199)] = { + [sym__backslash_escape] = ACTIONS(4663), + [sym_entity_reference] = ACTIONS(4663), + [sym_numeric_character_reference] = ACTIONS(4663), + [anon_sym_LT] = ACTIONS(4665), + [anon_sym_GT] = ACTIONS(4663), + [anon_sym_BANG] = ACTIONS(4663), + [anon_sym_DQUOTE] = ACTIONS(4663), + [anon_sym_POUND] = ACTIONS(4663), + [anon_sym_DOLLAR] = ACTIONS(4663), + [anon_sym_PERCENT] = ACTIONS(4663), + [anon_sym_AMP] = ACTIONS(4665), + [anon_sym_SQUOTE] = ACTIONS(4663), + [anon_sym_PLUS] = ACTIONS(4663), + [anon_sym_COMMA] = ACTIONS(4663), + [anon_sym_DASH] = ACTIONS(4665), + [anon_sym_DOT] = ACTIONS(4665), + [anon_sym_SLASH] = ACTIONS(4663), + [anon_sym_COLON] = ACTIONS(4663), + [anon_sym_SEMI] = ACTIONS(4663), + [anon_sym_EQ] = ACTIONS(4663), + [anon_sym_QMARK] = ACTIONS(4663), + [anon_sym_LBRACK] = ACTIONS(4665), + [anon_sym_BSLASH] = ACTIONS(4665), + [anon_sym_CARET] = ACTIONS(4665), + [anon_sym_BQUOTE] = ACTIONS(4663), + [anon_sym_LBRACE] = ACTIONS(4663), + [anon_sym_PIPE] = ACTIONS(4663), + [anon_sym_TILDE] = ACTIONS(4663), + [anon_sym_LPAREN] = ACTIONS(4663), + [anon_sym_RPAREN] = ACTIONS(4663), + [sym__newline_token] = ACTIONS(4663), + [aux_sym_insert_token1] = ACTIONS(4663), + [aux_sym_delete_token1] = ACTIONS(4663), + [aux_sym_highlight_token1] = ACTIONS(4663), + [aux_sym_edit_comment_token1] = ACTIONS(4663), + [anon_sym_CARET_LBRACK] = ACTIONS(4663), + [anon_sym_LBRACK_CARET] = ACTIONS(4663), + [sym_uri_autolink] = ACTIONS(4663), + [sym_email_autolink] = ACTIONS(4663), + [sym__whitespace_ge_2] = ACTIONS(4663), + [aux_sym__whitespace_token1] = ACTIONS(4665), + [sym__word_no_digit] = ACTIONS(4663), + [sym__digits] = ACTIONS(4663), + [anon_sym_DASH_DASH] = ACTIONS(4665), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4663), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4663), + [sym__code_span_start] = ACTIONS(4663), + [sym__emphasis_open_star] = ACTIONS(4663), + [sym__emphasis_open_underscore] = ACTIONS(4663), + [sym__emphasis_close_star] = ACTIONS(4663), + [sym__strikeout_open] = ACTIONS(4663), + [sym__latex_span_start] = ACTIONS(4663), + [sym__single_quote_open] = ACTIONS(4663), + [sym__double_quote_open] = ACTIONS(4663), + [sym__superscript_open] = ACTIONS(4663), + [sym__subscript_open] = ACTIONS(4663), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4663), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4663), + [sym__cite_author_in_text] = ACTIONS(4663), + [sym__cite_suppress_author] = ACTIONS(4663), + [sym__shortcode_open_escaped] = ACTIONS(4663), + [sym__shortcode_open] = ACTIONS(4663), + [sym__unclosed_span] = ACTIONS(4663), + [sym__strong_emphasis_open_star] = ACTIONS(4663), + [sym__strong_emphasis_open_underscore] = ACTIONS(4663), }, [STATE(1200)] = { - [sym__backslash_escape] = ACTIONS(4655), - [sym_entity_reference] = ACTIONS(4655), - [sym_numeric_character_reference] = ACTIONS(4655), - [anon_sym_LT] = ACTIONS(4657), - [anon_sym_GT] = ACTIONS(4655), - [anon_sym_BANG] = ACTIONS(4655), - [anon_sym_DQUOTE] = ACTIONS(4655), - [anon_sym_POUND] = ACTIONS(4655), - [anon_sym_DOLLAR] = ACTIONS(4655), - [anon_sym_PERCENT] = ACTIONS(4655), - [anon_sym_AMP] = ACTIONS(4657), - [anon_sym_SQUOTE] = ACTIONS(4655), - [anon_sym_PLUS] = ACTIONS(4655), - [anon_sym_COMMA] = ACTIONS(4655), - [anon_sym_DASH] = ACTIONS(4657), - [anon_sym_DOT] = ACTIONS(4657), - [anon_sym_SLASH] = ACTIONS(4655), - [anon_sym_COLON] = ACTIONS(4655), - [anon_sym_SEMI] = ACTIONS(4655), - [anon_sym_EQ] = ACTIONS(4655), - [anon_sym_QMARK] = ACTIONS(4655), - [anon_sym_LBRACK] = ACTIONS(4657), - [anon_sym_BSLASH] = ACTIONS(4657), - [anon_sym_CARET] = ACTIONS(4657), - [anon_sym_BQUOTE] = ACTIONS(4655), - [anon_sym_LBRACE] = ACTIONS(4655), - [anon_sym_PIPE] = ACTIONS(4655), - [anon_sym_TILDE] = ACTIONS(4655), - [anon_sym_LPAREN] = ACTIONS(4655), - [anon_sym_RPAREN] = ACTIONS(4655), - [sym__newline_token] = ACTIONS(4655), - [aux_sym_insert_token1] = ACTIONS(4655), - [aux_sym_delete_token1] = ACTIONS(4655), - [aux_sym_highlight_token1] = ACTIONS(4655), - [aux_sym_edit_comment_token1] = ACTIONS(4655), - [anon_sym_CARET_LBRACK] = ACTIONS(4655), - [anon_sym_LBRACK_CARET] = ACTIONS(4655), - [sym_uri_autolink] = ACTIONS(4655), - [sym_email_autolink] = ACTIONS(4655), - [sym__whitespace_ge_2] = ACTIONS(4655), - [aux_sym__whitespace_token1] = ACTIONS(4657), - [sym__word_no_digit] = ACTIONS(4655), - [sym__digits] = ACTIONS(4655), - [anon_sym_DASH_DASH] = ACTIONS(4657), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4655), - [sym__code_span_start] = ACTIONS(4655), - [sym__emphasis_open_star] = ACTIONS(4655), - [sym__emphasis_open_underscore] = ACTIONS(4655), - [sym__emphasis_close_star] = ACTIONS(4655), - [sym__strikeout_open] = ACTIONS(4655), - [sym__latex_span_start] = ACTIONS(4655), - [sym__single_quote_open] = ACTIONS(4655), - [sym__double_quote_open] = ACTIONS(4655), - [sym__superscript_open] = ACTIONS(4655), - [sym__subscript_open] = ACTIONS(4655), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4655), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4655), - [sym__cite_author_in_text] = ACTIONS(4655), - [sym__cite_suppress_author] = ACTIONS(4655), - [sym__shortcode_open_escaped] = ACTIONS(4655), - [sym__shortcode_open] = ACTIONS(4655), - [sym__unclosed_span] = ACTIONS(4655), - [sym__strong_emphasis_open_star] = ACTIONS(4655), - [sym__strong_emphasis_open_underscore] = ACTIONS(4655), + [sym__backslash_escape] = ACTIONS(4667), + [sym_entity_reference] = ACTIONS(4667), + [sym_numeric_character_reference] = ACTIONS(4667), + [anon_sym_LT] = ACTIONS(4669), + [anon_sym_GT] = ACTIONS(4667), + [anon_sym_BANG] = ACTIONS(4667), + [anon_sym_DQUOTE] = ACTIONS(4667), + [anon_sym_POUND] = ACTIONS(4667), + [anon_sym_DOLLAR] = ACTIONS(4667), + [anon_sym_PERCENT] = ACTIONS(4667), + [anon_sym_AMP] = ACTIONS(4669), + [anon_sym_SQUOTE] = ACTIONS(4667), + [anon_sym_PLUS] = ACTIONS(4667), + [anon_sym_COMMA] = ACTIONS(4667), + [anon_sym_DASH] = ACTIONS(4669), + [anon_sym_DOT] = ACTIONS(4669), + [anon_sym_SLASH] = ACTIONS(4667), + [anon_sym_COLON] = ACTIONS(4667), + [anon_sym_SEMI] = ACTIONS(4667), + [anon_sym_EQ] = ACTIONS(4667), + [anon_sym_QMARK] = ACTIONS(4667), + [anon_sym_LBRACK] = ACTIONS(4669), + [anon_sym_BSLASH] = ACTIONS(4669), + [anon_sym_CARET] = ACTIONS(4669), + [anon_sym_BQUOTE] = ACTIONS(4667), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_PIPE] = ACTIONS(4667), + [anon_sym_TILDE] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_RPAREN] = ACTIONS(4667), + [sym__newline_token] = ACTIONS(4667), + [aux_sym_insert_token1] = ACTIONS(4667), + [aux_sym_delete_token1] = ACTIONS(4667), + [aux_sym_highlight_token1] = ACTIONS(4667), + [aux_sym_edit_comment_token1] = ACTIONS(4667), + [anon_sym_CARET_LBRACK] = ACTIONS(4667), + [anon_sym_LBRACK_CARET] = ACTIONS(4667), + [sym_uri_autolink] = ACTIONS(4667), + [sym_email_autolink] = ACTIONS(4667), + [sym__whitespace_ge_2] = ACTIONS(4667), + [aux_sym__whitespace_token1] = ACTIONS(4669), + [sym__word_no_digit] = ACTIONS(4667), + [sym__digits] = ACTIONS(4667), + [anon_sym_DASH_DASH] = ACTIONS(4669), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4667), + [sym__code_span_start] = ACTIONS(4667), + [sym__emphasis_open_star] = ACTIONS(4667), + [sym__emphasis_open_underscore] = ACTIONS(4667), + [sym__emphasis_close_star] = ACTIONS(4667), + [sym__strikeout_open] = ACTIONS(4667), + [sym__latex_span_start] = ACTIONS(4667), + [sym__single_quote_open] = ACTIONS(4667), + [sym__double_quote_open] = ACTIONS(4667), + [sym__superscript_open] = ACTIONS(4667), + [sym__subscript_open] = ACTIONS(4667), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4667), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4667), + [sym__cite_author_in_text] = ACTIONS(4667), + [sym__cite_suppress_author] = ACTIONS(4667), + [sym__shortcode_open_escaped] = ACTIONS(4667), + [sym__shortcode_open] = ACTIONS(4667), + [sym__unclosed_span] = ACTIONS(4667), + [sym__strong_emphasis_open_star] = ACTIONS(4667), + [sym__strong_emphasis_open_underscore] = ACTIONS(4667), }, [STATE(1201)] = { - [ts_builtin_sym_end] = ACTIONS(4643), + [sym__backslash_escape] = ACTIONS(4671), + [sym_entity_reference] = ACTIONS(4671), + [sym_numeric_character_reference] = ACTIONS(4671), + [anon_sym_LT] = ACTIONS(4673), + [anon_sym_GT] = ACTIONS(4671), + [anon_sym_BANG] = ACTIONS(4671), + [anon_sym_DQUOTE] = ACTIONS(4671), + [anon_sym_POUND] = ACTIONS(4671), + [anon_sym_DOLLAR] = ACTIONS(4671), + [anon_sym_PERCENT] = ACTIONS(4671), + [anon_sym_AMP] = ACTIONS(4673), + [anon_sym_SQUOTE] = ACTIONS(4671), + [anon_sym_PLUS] = ACTIONS(4671), + [anon_sym_COMMA] = ACTIONS(4671), + [anon_sym_DASH] = ACTIONS(4673), + [anon_sym_DOT] = ACTIONS(4673), + [anon_sym_SLASH] = ACTIONS(4671), + [anon_sym_COLON] = ACTIONS(4671), + [anon_sym_SEMI] = ACTIONS(4671), + [anon_sym_EQ] = ACTIONS(4671), + [anon_sym_QMARK] = ACTIONS(4671), + [anon_sym_LBRACK] = ACTIONS(4673), + [anon_sym_BSLASH] = ACTIONS(4673), + [anon_sym_CARET] = ACTIONS(4673), + [anon_sym_BQUOTE] = ACTIONS(4671), + [anon_sym_LBRACE] = ACTIONS(4671), + [anon_sym_PIPE] = ACTIONS(4671), + [anon_sym_TILDE] = ACTIONS(4671), + [anon_sym_LPAREN] = ACTIONS(4671), + [anon_sym_RPAREN] = ACTIONS(4671), + [sym__newline_token] = ACTIONS(4671), + [aux_sym_insert_token1] = ACTIONS(4671), + [aux_sym_delete_token1] = ACTIONS(4671), + [aux_sym_highlight_token1] = ACTIONS(4671), + [aux_sym_edit_comment_token1] = ACTIONS(4671), + [anon_sym_CARET_LBRACK] = ACTIONS(4671), + [anon_sym_LBRACK_CARET] = ACTIONS(4671), + [sym_uri_autolink] = ACTIONS(4671), + [sym_email_autolink] = ACTIONS(4671), + [sym__whitespace_ge_2] = ACTIONS(4671), + [aux_sym__whitespace_token1] = ACTIONS(4673), + [sym__word_no_digit] = ACTIONS(4671), + [sym__digits] = ACTIONS(4671), + [anon_sym_DASH_DASH] = ACTIONS(4673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4671), + [sym__code_span_start] = ACTIONS(4671), + [sym__emphasis_open_star] = ACTIONS(4671), + [sym__emphasis_open_underscore] = ACTIONS(4671), + [sym__emphasis_close_star] = ACTIONS(4671), + [sym__strikeout_open] = ACTIONS(4671), + [sym__latex_span_start] = ACTIONS(4671), + [sym__single_quote_open] = ACTIONS(4671), + [sym__double_quote_open] = ACTIONS(4671), + [sym__superscript_open] = ACTIONS(4671), + [sym__subscript_open] = ACTIONS(4671), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4671), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4671), + [sym__cite_author_in_text] = ACTIONS(4671), + [sym__cite_suppress_author] = ACTIONS(4671), + [sym__shortcode_open_escaped] = ACTIONS(4671), + [sym__shortcode_open] = ACTIONS(4671), + [sym__unclosed_span] = ACTIONS(4671), + [sym__strong_emphasis_open_star] = ACTIONS(4671), + [sym__strong_emphasis_open_underscore] = ACTIONS(4671), + }, + [STATE(1202)] = { [sym__backslash_escape] = ACTIONS(4643), [sym_entity_reference] = ACTIONS(4643), [sym_numeric_character_reference] = ACTIONS(4643), @@ -129049,142 +129114,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unclosed_span] = ACTIONS(4643), [sym__strong_emphasis_open_star] = ACTIONS(4643), [sym__strong_emphasis_open_underscore] = ACTIONS(4643), - }, - [STATE(1202)] = { - [sym__backslash_escape] = ACTIONS(4659), - [sym_entity_reference] = ACTIONS(4659), - [sym_numeric_character_reference] = ACTIONS(4659), - [anon_sym_LT] = ACTIONS(4661), - [anon_sym_GT] = ACTIONS(4659), - [anon_sym_BANG] = ACTIONS(4659), - [anon_sym_DQUOTE] = ACTIONS(4659), - [anon_sym_POUND] = ACTIONS(4659), - [anon_sym_DOLLAR] = ACTIONS(4659), - [anon_sym_PERCENT] = ACTIONS(4659), - [anon_sym_AMP] = ACTIONS(4661), - [anon_sym_SQUOTE] = ACTIONS(4659), - [anon_sym_PLUS] = ACTIONS(4659), - [anon_sym_COMMA] = ACTIONS(4659), - [anon_sym_DASH] = ACTIONS(4661), - [anon_sym_DOT] = ACTIONS(4661), - [anon_sym_SLASH] = ACTIONS(4659), - [anon_sym_COLON] = ACTIONS(4659), - [anon_sym_SEMI] = ACTIONS(4659), - [anon_sym_EQ] = ACTIONS(4659), - [anon_sym_QMARK] = ACTIONS(4659), - [anon_sym_LBRACK] = ACTIONS(4661), - [anon_sym_BSLASH] = ACTIONS(4661), - [anon_sym_CARET] = ACTIONS(4661), - [anon_sym_BQUOTE] = ACTIONS(4659), - [anon_sym_LBRACE] = ACTIONS(4659), - [anon_sym_PIPE] = ACTIONS(4659), - [anon_sym_TILDE] = ACTIONS(4659), - [anon_sym_LPAREN] = ACTIONS(4659), - [anon_sym_RPAREN] = ACTIONS(4659), - [sym__newline_token] = ACTIONS(4659), - [aux_sym_insert_token1] = ACTIONS(4659), - [aux_sym_delete_token1] = ACTIONS(4659), - [aux_sym_highlight_token1] = ACTIONS(4659), - [aux_sym_edit_comment_token1] = ACTIONS(4659), - [anon_sym_CARET_LBRACK] = ACTIONS(4659), - [anon_sym_LBRACK_CARET] = ACTIONS(4659), - [sym_uri_autolink] = ACTIONS(4659), - [sym_email_autolink] = ACTIONS(4659), - [sym__whitespace_ge_2] = ACTIONS(4659), - [aux_sym__whitespace_token1] = ACTIONS(4661), - [sym__word_no_digit] = ACTIONS(4659), - [sym__digits] = ACTIONS(4659), - [anon_sym_DASH_DASH] = ACTIONS(4661), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4659), - [sym__code_span_start] = ACTIONS(4659), - [sym__emphasis_open_star] = ACTIONS(4659), - [sym__emphasis_open_underscore] = ACTIONS(4659), - [sym__emphasis_close_star] = ACTIONS(4659), - [sym__strikeout_open] = ACTIONS(4659), - [sym__latex_span_start] = ACTIONS(4659), - [sym__single_quote_open] = ACTIONS(4659), - [sym__double_quote_open] = ACTIONS(4659), - [sym__superscript_open] = ACTIONS(4659), - [sym__subscript_open] = ACTIONS(4659), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4659), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4659), - [sym__cite_author_in_text] = ACTIONS(4659), - [sym__cite_suppress_author] = ACTIONS(4659), - [sym__shortcode_open_escaped] = ACTIONS(4659), - [sym__shortcode_open] = ACTIONS(4659), - [sym__unclosed_span] = ACTIONS(4659), - [sym__strong_emphasis_open_star] = ACTIONS(4659), - [sym__strong_emphasis_open_underscore] = ACTIONS(4659), + [sym__strong_emphasis_close_underscore] = ACTIONS(4643), }, [STATE(1203)] = { - [sym__backslash_escape] = ACTIONS(4647), - [sym_entity_reference] = ACTIONS(4647), - [sym_numeric_character_reference] = ACTIONS(4647), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4647), - [anon_sym_BANG] = ACTIONS(4647), - [anon_sym_DQUOTE] = ACTIONS(4647), - [anon_sym_POUND] = ACTIONS(4647), - [anon_sym_DOLLAR] = ACTIONS(4647), - [anon_sym_PERCENT] = ACTIONS(4647), - [anon_sym_AMP] = ACTIONS(4649), - [anon_sym_SQUOTE] = ACTIONS(4647), - [anon_sym_PLUS] = ACTIONS(4647), - [anon_sym_COMMA] = ACTIONS(4647), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_SLASH] = ACTIONS(4647), - [anon_sym_COLON] = ACTIONS(4647), - [anon_sym_SEMI] = ACTIONS(4647), - [anon_sym_EQ] = ACTIONS(4647), - [anon_sym_QMARK] = ACTIONS(4647), - [anon_sym_LBRACK] = ACTIONS(4649), - [anon_sym_BSLASH] = ACTIONS(4649), - [anon_sym_CARET] = ACTIONS(4649), - [anon_sym_BQUOTE] = ACTIONS(4647), - [anon_sym_LBRACE] = ACTIONS(4647), - [anon_sym_PIPE] = ACTIONS(4647), - [anon_sym_TILDE] = ACTIONS(4647), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_RPAREN] = ACTIONS(4647), - [sym__newline_token] = ACTIONS(4647), - [aux_sym_insert_token1] = ACTIONS(4647), - [aux_sym_delete_token1] = ACTIONS(4647), - [aux_sym_highlight_token1] = ACTIONS(4647), - [aux_sym_edit_comment_token1] = ACTIONS(4647), - [anon_sym_CARET_LBRACK] = ACTIONS(4647), - [anon_sym_LBRACK_CARET] = ACTIONS(4647), - [sym_uri_autolink] = ACTIONS(4647), - [sym_email_autolink] = ACTIONS(4647), - [sym__whitespace_ge_2] = ACTIONS(4647), - [aux_sym__whitespace_token1] = ACTIONS(4649), - [sym__word_no_digit] = ACTIONS(4647), - [sym__digits] = ACTIONS(4647), - [anon_sym_DASH_DASH] = ACTIONS(4649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4647), - [sym__code_span_start] = ACTIONS(4647), - [sym__emphasis_open_star] = ACTIONS(4647), - [sym__emphasis_open_underscore] = ACTIONS(4647), - [sym__strikeout_open] = ACTIONS(4647), - [sym__latex_span_start] = ACTIONS(4647), - [sym__single_quote_open] = ACTIONS(4647), - [sym__double_quote_open] = ACTIONS(4647), - [sym__superscript_open] = ACTIONS(4647), - [sym__subscript_open] = ACTIONS(4647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4647), - [sym__cite_author_in_text] = ACTIONS(4647), - [sym__cite_suppress_author] = ACTIONS(4647), - [sym__shortcode_open_escaped] = ACTIONS(4647), - [sym__shortcode_open] = ACTIONS(4647), - [sym__unclosed_span] = ACTIONS(4647), - [sym__strong_emphasis_open_star] = ACTIONS(4647), - [sym__strong_emphasis_open_underscore] = ACTIONS(4647), - [sym__strong_emphasis_close_underscore] = ACTIONS(4647), - }, - [STATE(1204)] = { [sym__backslash_escape] = ACTIONS(4181), [sym_entity_reference] = ACTIONS(4181), [sym_numeric_character_reference] = ACTIONS(4181), @@ -129251,7 +129183,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4181), [sym__strong_emphasis_close_underscore] = ACTIONS(4181), }, + [STATE(1204)] = { + [sym__backslash_escape] = ACTIONS(4675), + [sym_entity_reference] = ACTIONS(4675), + [sym_numeric_character_reference] = ACTIONS(4675), + [anon_sym_LT] = ACTIONS(4677), + [anon_sym_GT] = ACTIONS(4675), + [anon_sym_BANG] = ACTIONS(4675), + [anon_sym_DQUOTE] = ACTIONS(4675), + [anon_sym_POUND] = ACTIONS(4675), + [anon_sym_DOLLAR] = ACTIONS(4675), + [anon_sym_PERCENT] = ACTIONS(4675), + [anon_sym_AMP] = ACTIONS(4677), + [anon_sym_SQUOTE] = ACTIONS(4675), + [anon_sym_PLUS] = ACTIONS(4675), + [anon_sym_COMMA] = ACTIONS(4675), + [anon_sym_DASH] = ACTIONS(4677), + [anon_sym_DOT] = ACTIONS(4677), + [anon_sym_SLASH] = ACTIONS(4675), + [anon_sym_COLON] = ACTIONS(4675), + [anon_sym_SEMI] = ACTIONS(4675), + [anon_sym_EQ] = ACTIONS(4675), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_LBRACK] = ACTIONS(4677), + [anon_sym_BSLASH] = ACTIONS(4677), + [anon_sym_CARET] = ACTIONS(4677), + [anon_sym_BQUOTE] = ACTIONS(4675), + [anon_sym_LBRACE] = ACTIONS(4675), + [anon_sym_PIPE] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4675), + [anon_sym_LPAREN] = ACTIONS(4675), + [anon_sym_RPAREN] = ACTIONS(4675), + [sym__newline_token] = ACTIONS(4675), + [aux_sym_insert_token1] = ACTIONS(4675), + [aux_sym_delete_token1] = ACTIONS(4675), + [aux_sym_highlight_token1] = ACTIONS(4675), + [aux_sym_edit_comment_token1] = ACTIONS(4675), + [anon_sym_CARET_LBRACK] = ACTIONS(4675), + [anon_sym_LBRACK_CARET] = ACTIONS(4675), + [sym_uri_autolink] = ACTIONS(4675), + [sym_email_autolink] = ACTIONS(4675), + [sym__whitespace_ge_2] = ACTIONS(4675), + [aux_sym__whitespace_token1] = ACTIONS(4677), + [sym__word_no_digit] = ACTIONS(4675), + [sym__digits] = ACTIONS(4675), + [anon_sym_DASH_DASH] = ACTIONS(4677), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4675), + [sym__code_span_start] = ACTIONS(4675), + [sym__emphasis_open_star] = ACTIONS(4675), + [sym__emphasis_open_underscore] = ACTIONS(4675), + [sym__emphasis_close_star] = ACTIONS(4675), + [sym__strikeout_open] = ACTIONS(4675), + [sym__latex_span_start] = ACTIONS(4675), + [sym__single_quote_open] = ACTIONS(4675), + [sym__double_quote_open] = ACTIONS(4675), + [sym__superscript_open] = ACTIONS(4675), + [sym__subscript_open] = ACTIONS(4675), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4675), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4675), + [sym__cite_author_in_text] = ACTIONS(4675), + [sym__cite_suppress_author] = ACTIONS(4675), + [sym__shortcode_open_escaped] = ACTIONS(4675), + [sym__shortcode_open] = ACTIONS(4675), + [sym__unclosed_span] = ACTIONS(4675), + [sym__strong_emphasis_open_star] = ACTIONS(4675), + [sym__strong_emphasis_open_underscore] = ACTIONS(4675), + }, [STATE(1205)] = { + [sym__backslash_escape] = ACTIONS(4647), + [sym_entity_reference] = ACTIONS(4647), + [sym_numeric_character_reference] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_POUND] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [anon_sym_PERCENT] = ACTIONS(4647), + [anon_sym_AMP] = ACTIONS(4649), + [anon_sym_SQUOTE] = ACTIONS(4647), + [anon_sym_PLUS] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4647), + [anon_sym_DASH] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4649), + [anon_sym_SLASH] = ACTIONS(4647), + [anon_sym_COLON] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_LBRACK] = ACTIONS(4649), + [anon_sym_BSLASH] = ACTIONS(4649), + [anon_sym_CARET] = ACTIONS(4649), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LBRACE] = ACTIONS(4647), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_TILDE] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4647), + [anon_sym_RPAREN] = ACTIONS(4647), + [sym__newline_token] = ACTIONS(4647), + [aux_sym_insert_token1] = ACTIONS(4647), + [aux_sym_delete_token1] = ACTIONS(4647), + [aux_sym_highlight_token1] = ACTIONS(4647), + [aux_sym_edit_comment_token1] = ACTIONS(4647), + [anon_sym_CARET_LBRACK] = ACTIONS(4647), + [anon_sym_LBRACK_CARET] = ACTIONS(4647), + [sym_uri_autolink] = ACTIONS(4647), + [sym_email_autolink] = ACTIONS(4647), + [sym__whitespace_ge_2] = ACTIONS(4647), + [aux_sym__whitespace_token1] = ACTIONS(4649), + [sym__word_no_digit] = ACTIONS(4647), + [sym__digits] = ACTIONS(4647), + [anon_sym_DASH_DASH] = ACTIONS(4649), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4647), + [sym__code_span_start] = ACTIONS(4647), + [sym__emphasis_open_star] = ACTIONS(4647), + [sym__emphasis_open_underscore] = ACTIONS(4647), + [sym__strikeout_open] = ACTIONS(4647), + [sym__latex_span_start] = ACTIONS(4647), + [sym__single_quote_open] = ACTIONS(4647), + [sym__double_quote_open] = ACTIONS(4647), + [sym__superscript_open] = ACTIONS(4647), + [sym__subscript_open] = ACTIONS(4647), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4647), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4647), + [sym__cite_author_in_text] = ACTIONS(4647), + [sym__cite_suppress_author] = ACTIONS(4647), + [sym__shortcode_open_escaped] = ACTIONS(4647), + [sym__shortcode_open] = ACTIONS(4647), + [sym__unclosed_span] = ACTIONS(4647), + [sym__strong_emphasis_open_star] = ACTIONS(4647), + [sym__strong_emphasis_open_underscore] = ACTIONS(4647), + [sym__strong_emphasis_close_underscore] = ACTIONS(4647), + }, + [STATE(1206)] = { + [sym__backslash_escape] = ACTIONS(4679), + [sym_entity_reference] = ACTIONS(4679), + [sym_numeric_character_reference] = ACTIONS(4679), + [anon_sym_LT] = ACTIONS(4681), + [anon_sym_GT] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(4679), + [anon_sym_DQUOTE] = ACTIONS(4679), + [anon_sym_POUND] = ACTIONS(4679), + [anon_sym_DOLLAR] = ACTIONS(4679), + [anon_sym_PERCENT] = ACTIONS(4679), + [anon_sym_AMP] = ACTIONS(4681), + [anon_sym_SQUOTE] = ACTIONS(4679), + [anon_sym_PLUS] = ACTIONS(4679), + [anon_sym_COMMA] = ACTIONS(4679), + [anon_sym_DASH] = ACTIONS(4681), + [anon_sym_DOT] = ACTIONS(4681), + [anon_sym_SLASH] = ACTIONS(4679), + [anon_sym_COLON] = ACTIONS(4679), + [anon_sym_SEMI] = ACTIONS(4679), + [anon_sym_EQ] = ACTIONS(4679), + [anon_sym_QMARK] = ACTIONS(4679), + [anon_sym_LBRACK] = ACTIONS(4681), + [anon_sym_BSLASH] = ACTIONS(4681), + [anon_sym_CARET] = ACTIONS(4681), + [anon_sym_BQUOTE] = ACTIONS(4679), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_PIPE] = ACTIONS(4679), + [anon_sym_TILDE] = ACTIONS(4679), + [anon_sym_LPAREN] = ACTIONS(4679), + [anon_sym_RPAREN] = ACTIONS(4679), + [sym__newline_token] = ACTIONS(4679), + [aux_sym_insert_token1] = ACTIONS(4679), + [aux_sym_delete_token1] = ACTIONS(4679), + [aux_sym_highlight_token1] = ACTIONS(4679), + [aux_sym_edit_comment_token1] = ACTIONS(4679), + [anon_sym_CARET_LBRACK] = ACTIONS(4679), + [anon_sym_LBRACK_CARET] = ACTIONS(4679), + [sym_uri_autolink] = ACTIONS(4679), + [sym_email_autolink] = ACTIONS(4679), + [sym__whitespace_ge_2] = ACTIONS(4679), + [aux_sym__whitespace_token1] = ACTIONS(4681), + [sym__word_no_digit] = ACTIONS(4679), + [sym__digits] = ACTIONS(4679), + [anon_sym_DASH_DASH] = ACTIONS(4681), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4679), + [sym__code_span_start] = ACTIONS(4679), + [sym__emphasis_open_star] = ACTIONS(4679), + [sym__emphasis_open_underscore] = ACTIONS(4679), + [sym__emphasis_close_star] = ACTIONS(4679), + [sym__strikeout_open] = ACTIONS(4679), + [sym__latex_span_start] = ACTIONS(4679), + [sym__single_quote_open] = ACTIONS(4679), + [sym__double_quote_open] = ACTIONS(4679), + [sym__superscript_open] = ACTIONS(4679), + [sym__subscript_open] = ACTIONS(4679), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4679), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4679), + [sym__cite_author_in_text] = ACTIONS(4679), + [sym__cite_suppress_author] = ACTIONS(4679), + [sym__shortcode_open_escaped] = ACTIONS(4679), + [sym__shortcode_open] = ACTIONS(4679), + [sym__unclosed_span] = ACTIONS(4679), + [sym__strong_emphasis_open_star] = ACTIONS(4679), + [sym__strong_emphasis_open_underscore] = ACTIONS(4679), + }, + [STATE(1207)] = { [sym__backslash_escape] = ACTIONS(4651), [sym_entity_reference] = ACTIONS(4651), [sym_numeric_character_reference] = ACTIONS(4651), @@ -129318,74 +129451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4651), [sym__strong_emphasis_close_underscore] = ACTIONS(4651), }, - [STATE(1206)] = { - [sym__backslash_escape] = ACTIONS(4663), - [sym_entity_reference] = ACTIONS(4663), - [sym_numeric_character_reference] = ACTIONS(4663), - [anon_sym_LT] = ACTIONS(4665), - [anon_sym_GT] = ACTIONS(4663), - [anon_sym_BANG] = ACTIONS(4663), - [anon_sym_DQUOTE] = ACTIONS(4663), - [anon_sym_POUND] = ACTIONS(4663), - [anon_sym_DOLLAR] = ACTIONS(4663), - [anon_sym_PERCENT] = ACTIONS(4663), - [anon_sym_AMP] = ACTIONS(4665), - [anon_sym_SQUOTE] = ACTIONS(4663), - [anon_sym_PLUS] = ACTIONS(4663), - [anon_sym_COMMA] = ACTIONS(4663), - [anon_sym_DASH] = ACTIONS(4665), - [anon_sym_DOT] = ACTIONS(4665), - [anon_sym_SLASH] = ACTIONS(4663), - [anon_sym_COLON] = ACTIONS(4663), - [anon_sym_SEMI] = ACTIONS(4663), - [anon_sym_EQ] = ACTIONS(4663), - [anon_sym_QMARK] = ACTIONS(4663), - [anon_sym_LBRACK] = ACTIONS(4665), - [anon_sym_BSLASH] = ACTIONS(4665), - [anon_sym_CARET] = ACTIONS(4665), - [anon_sym_BQUOTE] = ACTIONS(4663), - [anon_sym_LBRACE] = ACTIONS(4663), - [anon_sym_PIPE] = ACTIONS(4663), - [anon_sym_TILDE] = ACTIONS(4663), - [anon_sym_LPAREN] = ACTIONS(4663), - [anon_sym_RPAREN] = ACTIONS(4663), - [sym__newline_token] = ACTIONS(4663), - [aux_sym_insert_token1] = ACTIONS(4663), - [aux_sym_delete_token1] = ACTIONS(4663), - [aux_sym_highlight_token1] = ACTIONS(4663), - [aux_sym_edit_comment_token1] = ACTIONS(4663), - [anon_sym_CARET_LBRACK] = ACTIONS(4663), - [anon_sym_LBRACK_CARET] = ACTIONS(4663), - [sym_uri_autolink] = ACTIONS(4663), - [sym_email_autolink] = ACTIONS(4663), - [sym__whitespace_ge_2] = ACTIONS(4663), - [aux_sym__whitespace_token1] = ACTIONS(4665), - [sym__word_no_digit] = ACTIONS(4663), - [sym__digits] = ACTIONS(4663), - [anon_sym_DASH_DASH] = ACTIONS(4665), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4663), - [sym__code_span_start] = ACTIONS(4663), - [sym__emphasis_open_star] = ACTIONS(4663), - [sym__emphasis_open_underscore] = ACTIONS(4663), - [sym__emphasis_close_star] = ACTIONS(4663), - [sym__strikeout_open] = ACTIONS(4663), - [sym__latex_span_start] = ACTIONS(4663), - [sym__single_quote_open] = ACTIONS(4663), - [sym__double_quote_open] = ACTIONS(4663), - [sym__superscript_open] = ACTIONS(4663), - [sym__subscript_open] = ACTIONS(4663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4663), - [sym__cite_author_in_text] = ACTIONS(4663), - [sym__cite_suppress_author] = ACTIONS(4663), - [sym__shortcode_open_escaped] = ACTIONS(4663), - [sym__shortcode_open] = ACTIONS(4663), - [sym__unclosed_span] = ACTIONS(4663), - [sym__strong_emphasis_open_star] = ACTIONS(4663), - [sym__strong_emphasis_open_underscore] = ACTIONS(4663), - }, - [STATE(1207)] = { + [STATE(1208)] = { [sym__backslash_escape] = ACTIONS(4655), [sym_entity_reference] = ACTIONS(4655), [sym_numeric_character_reference] = ACTIONS(4655), @@ -129452,7 +129518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4655), [sym__strong_emphasis_close_underscore] = ACTIONS(4655), }, - [STATE(1208)] = { + [STATE(1209)] = { [sym__backslash_escape] = ACTIONS(4659), [sym_entity_reference] = ACTIONS(4659), [sym_numeric_character_reference] = ACTIONS(4659), @@ -129519,7 +129585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4659), [sym__strong_emphasis_close_underscore] = ACTIONS(4659), }, - [STATE(1209)] = { + [STATE(1210)] = { [sym__backslash_escape] = ACTIONS(4663), [sym_entity_reference] = ACTIONS(4663), [sym_numeric_character_reference] = ACTIONS(4663), @@ -129586,7 +129652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4663), [sym__strong_emphasis_close_underscore] = ACTIONS(4663), }, - [STATE(1210)] = { + [STATE(1211)] = { [sym__backslash_escape] = ACTIONS(4667), [sym_entity_reference] = ACTIONS(4667), [sym_numeric_character_reference] = ACTIONS(4667), @@ -129653,7 +129719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4667), [sym__strong_emphasis_close_underscore] = ACTIONS(4667), }, - [STATE(1211)] = { + [STATE(1212)] = { [sym__backslash_escape] = ACTIONS(4671), [sym_entity_reference] = ACTIONS(4671), [sym_numeric_character_reference] = ACTIONS(4671), @@ -129720,7 +129786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4671), [sym__strong_emphasis_close_underscore] = ACTIONS(4671), }, - [STATE(1212)] = { + [STATE(1213)] = { [sym__backslash_escape] = ACTIONS(4675), [sym_entity_reference] = ACTIONS(4675), [sym_numeric_character_reference] = ACTIONS(4675), @@ -129787,7 +129853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4675), [sym__strong_emphasis_close_underscore] = ACTIONS(4675), }, - [STATE(1213)] = { + [STATE(1214)] = { [sym__backslash_escape] = ACTIONS(4679), [sym_entity_reference] = ACTIONS(4679), [sym_numeric_character_reference] = ACTIONS(4679), @@ -129854,7 +129920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4679), [sym__strong_emphasis_close_underscore] = ACTIONS(4679), }, - [STATE(1214)] = { + [STATE(1215)] = { [sym__backslash_escape] = ACTIONS(4683), [sym_entity_reference] = ACTIONS(4683), [sym_numeric_character_reference] = ACTIONS(4683), @@ -129921,7 +129987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4683), [sym__strong_emphasis_close_underscore] = ACTIONS(4683), }, - [STATE(1215)] = { + [STATE(1216)] = { [sym__backslash_escape] = ACTIONS(4687), [sym_entity_reference] = ACTIONS(4687), [sym_numeric_character_reference] = ACTIONS(4687), @@ -129988,7 +130054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4687), [sym__strong_emphasis_close_underscore] = ACTIONS(4687), }, - [STATE(1216)] = { + [STATE(1217)] = { [sym__backslash_escape] = ACTIONS(4691), [sym_entity_reference] = ACTIONS(4691), [sym_numeric_character_reference] = ACTIONS(4691), @@ -130055,7 +130121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4691), [sym__strong_emphasis_close_underscore] = ACTIONS(4691), }, - [STATE(1217)] = { + [STATE(1218)] = { [sym__backslash_escape] = ACTIONS(4695), [sym_entity_reference] = ACTIONS(4695), [sym_numeric_character_reference] = ACTIONS(4695), @@ -130122,7 +130188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4695), [sym__strong_emphasis_close_underscore] = ACTIONS(4695), }, - [STATE(1218)] = { + [STATE(1219)] = { [sym__backslash_escape] = ACTIONS(4699), [sym_entity_reference] = ACTIONS(4699), [sym_numeric_character_reference] = ACTIONS(4699), @@ -130189,7 +130255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4699), [sym__strong_emphasis_close_underscore] = ACTIONS(4699), }, - [STATE(1219)] = { + [STATE(1220)] = { [sym__backslash_escape] = ACTIONS(4703), [sym_entity_reference] = ACTIONS(4703), [sym_numeric_character_reference] = ACTIONS(4703), @@ -130256,7 +130322,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4703), [sym__strong_emphasis_close_underscore] = ACTIONS(4703), }, - [STATE(1220)] = { + [STATE(1221)] = { + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + [sym__strong_emphasis_close_underscore] = ACTIONS(4271), + }, + [STATE(1222)] = { + [sym__backslash_escape] = ACTIONS(4683), + [sym_entity_reference] = ACTIONS(4683), + [sym_numeric_character_reference] = ACTIONS(4683), + [anon_sym_LT] = ACTIONS(4685), + [anon_sym_GT] = ACTIONS(4683), + [anon_sym_BANG] = ACTIONS(4683), + [anon_sym_DQUOTE] = ACTIONS(4683), + [anon_sym_POUND] = ACTIONS(4683), + [anon_sym_DOLLAR] = ACTIONS(4683), + [anon_sym_PERCENT] = ACTIONS(4683), + [anon_sym_AMP] = ACTIONS(4685), + [anon_sym_SQUOTE] = ACTIONS(4683), + [anon_sym_PLUS] = ACTIONS(4683), + [anon_sym_COMMA] = ACTIONS(4683), + [anon_sym_DASH] = ACTIONS(4685), + [anon_sym_DOT] = ACTIONS(4685), + [anon_sym_SLASH] = ACTIONS(4683), + [anon_sym_COLON] = ACTIONS(4683), + [anon_sym_SEMI] = ACTIONS(4683), + [anon_sym_EQ] = ACTIONS(4683), + [anon_sym_QMARK] = ACTIONS(4683), + [anon_sym_LBRACK] = ACTIONS(4685), + [anon_sym_BSLASH] = ACTIONS(4685), + [anon_sym_CARET] = ACTIONS(4685), + [anon_sym_BQUOTE] = ACTIONS(4683), + [anon_sym_LBRACE] = ACTIONS(4683), + [anon_sym_PIPE] = ACTIONS(4683), + [anon_sym_TILDE] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(4683), + [anon_sym_RPAREN] = ACTIONS(4683), + [sym__newline_token] = ACTIONS(4683), + [aux_sym_insert_token1] = ACTIONS(4683), + [aux_sym_delete_token1] = ACTIONS(4683), + [aux_sym_highlight_token1] = ACTIONS(4683), + [aux_sym_edit_comment_token1] = ACTIONS(4683), + [anon_sym_CARET_LBRACK] = ACTIONS(4683), + [anon_sym_LBRACK_CARET] = ACTIONS(4683), + [sym_uri_autolink] = ACTIONS(4683), + [sym_email_autolink] = ACTIONS(4683), + [sym__whitespace_ge_2] = ACTIONS(4683), + [aux_sym__whitespace_token1] = ACTIONS(4685), + [sym__word_no_digit] = ACTIONS(4683), + [sym__digits] = ACTIONS(4683), + [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4683), + [sym__code_span_start] = ACTIONS(4683), + [sym__emphasis_open_star] = ACTIONS(4683), + [sym__emphasis_open_underscore] = ACTIONS(4683), + [sym__emphasis_close_star] = ACTIONS(4683), + [sym__strikeout_open] = ACTIONS(4683), + [sym__latex_span_start] = ACTIONS(4683), + [sym__single_quote_open] = ACTIONS(4683), + [sym__double_quote_open] = ACTIONS(4683), + [sym__superscript_open] = ACTIONS(4683), + [sym__subscript_open] = ACTIONS(4683), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4683), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4683), + [sym__cite_author_in_text] = ACTIONS(4683), + [sym__cite_suppress_author] = ACTIONS(4683), + [sym__shortcode_open_escaped] = ACTIONS(4683), + [sym__shortcode_open] = ACTIONS(4683), + [sym__unclosed_span] = ACTIONS(4683), + [sym__strong_emphasis_open_star] = ACTIONS(4683), + [sym__strong_emphasis_open_underscore] = ACTIONS(4683), + }, + [STATE(1223)] = { [sym__backslash_escape] = ACTIONS(4707), [sym_entity_reference] = ACTIONS(4707), [sym_numeric_character_reference] = ACTIONS(4707), @@ -130323,92 +130523,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4707), [sym__strong_emphasis_close_underscore] = ACTIONS(4707), }, - [STATE(1221)] = { - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - [sym__strong_emphasis_close_underscore] = ACTIONS(4275), - }, - [STATE(1222)] = { - [sym__backslash_escape] = ACTIONS(4711), - [sym_entity_reference] = ACTIONS(4711), - [sym_numeric_character_reference] = ACTIONS(4711), - [anon_sym_LT] = ACTIONS(4713), - [anon_sym_GT] = ACTIONS(4711), - [anon_sym_BANG] = ACTIONS(4711), - [anon_sym_DQUOTE] = ACTIONS(4711), - [anon_sym_POUND] = ACTIONS(4711), - [anon_sym_DOLLAR] = ACTIONS(4711), - [anon_sym_PERCENT] = ACTIONS(4711), - [anon_sym_AMP] = ACTIONS(4713), - [anon_sym_SQUOTE] = ACTIONS(4711), - [anon_sym_PLUS] = ACTIONS(4711), - [anon_sym_COMMA] = ACTIONS(4711), - [anon_sym_DASH] = ACTIONS(4713), - [anon_sym_DOT] = ACTIONS(4713), - [anon_sym_SLASH] = ACTIONS(4711), - [anon_sym_COLON] = ACTIONS(4711), + [STATE(1224)] = { + [sym__backslash_escape] = ACTIONS(4687), + [sym_entity_reference] = ACTIONS(4687), + [sym_numeric_character_reference] = ACTIONS(4687), + [anon_sym_LT] = ACTIONS(4689), + [anon_sym_GT] = ACTIONS(4687), + [anon_sym_BANG] = ACTIONS(4687), + [anon_sym_DQUOTE] = ACTIONS(4687), + [anon_sym_POUND] = ACTIONS(4687), + [anon_sym_DOLLAR] = ACTIONS(4687), + [anon_sym_PERCENT] = ACTIONS(4687), + [anon_sym_AMP] = ACTIONS(4689), + [anon_sym_SQUOTE] = ACTIONS(4687), + [anon_sym_PLUS] = ACTIONS(4687), + [anon_sym_COMMA] = ACTIONS(4687), + [anon_sym_DASH] = ACTIONS(4689), + [anon_sym_DOT] = ACTIONS(4689), + [anon_sym_SLASH] = ACTIONS(4687), + [anon_sym_COLON] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4687), + [anon_sym_EQ] = ACTIONS(4687), + [anon_sym_QMARK] = ACTIONS(4687), + [anon_sym_LBRACK] = ACTIONS(4689), + [anon_sym_BSLASH] = ACTIONS(4689), + [anon_sym_CARET] = ACTIONS(4689), + [anon_sym_BQUOTE] = ACTIONS(4687), + [anon_sym_LBRACE] = ACTIONS(4687), + [anon_sym_PIPE] = ACTIONS(4687), + [anon_sym_TILDE] = ACTIONS(4687), + [anon_sym_LPAREN] = ACTIONS(4687), + [anon_sym_RPAREN] = ACTIONS(4687), + [sym__newline_token] = ACTIONS(4687), + [aux_sym_insert_token1] = ACTIONS(4687), + [aux_sym_delete_token1] = ACTIONS(4687), + [aux_sym_highlight_token1] = ACTIONS(4687), + [aux_sym_edit_comment_token1] = ACTIONS(4687), + [anon_sym_CARET_LBRACK] = ACTIONS(4687), + [anon_sym_LBRACK_CARET] = ACTIONS(4687), + [sym_uri_autolink] = ACTIONS(4687), + [sym_email_autolink] = ACTIONS(4687), + [sym__whitespace_ge_2] = ACTIONS(4687), + [aux_sym__whitespace_token1] = ACTIONS(4689), + [sym__word_no_digit] = ACTIONS(4687), + [sym__digits] = ACTIONS(4687), + [anon_sym_DASH_DASH] = ACTIONS(4689), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4687), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4687), + [sym__code_span_start] = ACTIONS(4687), + [sym__emphasis_open_star] = ACTIONS(4687), + [sym__emphasis_open_underscore] = ACTIONS(4687), + [sym__emphasis_close_star] = ACTIONS(4687), + [sym__strikeout_open] = ACTIONS(4687), + [sym__latex_span_start] = ACTIONS(4687), + [sym__single_quote_open] = ACTIONS(4687), + [sym__double_quote_open] = ACTIONS(4687), + [sym__superscript_open] = ACTIONS(4687), + [sym__subscript_open] = ACTIONS(4687), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4687), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4687), + [sym__cite_author_in_text] = ACTIONS(4687), + [sym__cite_suppress_author] = ACTIONS(4687), + [sym__shortcode_open_escaped] = ACTIONS(4687), + [sym__shortcode_open] = ACTIONS(4687), + [sym__unclosed_span] = ACTIONS(4687), + [sym__strong_emphasis_open_star] = ACTIONS(4687), + [sym__strong_emphasis_open_underscore] = ACTIONS(4687), + }, + [STATE(1225)] = { + [sym__backslash_escape] = ACTIONS(4711), + [sym_entity_reference] = ACTIONS(4711), + [sym_numeric_character_reference] = ACTIONS(4711), + [anon_sym_LT] = ACTIONS(4713), + [anon_sym_GT] = ACTIONS(4711), + [anon_sym_BANG] = ACTIONS(4711), + [anon_sym_DQUOTE] = ACTIONS(4711), + [anon_sym_POUND] = ACTIONS(4711), + [anon_sym_DOLLAR] = ACTIONS(4711), + [anon_sym_PERCENT] = ACTIONS(4711), + [anon_sym_AMP] = ACTIONS(4713), + [anon_sym_SQUOTE] = ACTIONS(4711), + [anon_sym_PLUS] = ACTIONS(4711), + [anon_sym_COMMA] = ACTIONS(4711), + [anon_sym_DASH] = ACTIONS(4713), + [anon_sym_DOT] = ACTIONS(4713), + [anon_sym_SLASH] = ACTIONS(4711), + [anon_sym_COLON] = ACTIONS(4711), [anon_sym_SEMI] = ACTIONS(4711), [anon_sym_EQ] = ACTIONS(4711), [anon_sym_QMARK] = ACTIONS(4711), @@ -130457,74 +130657,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4711), [sym__strong_emphasis_close_underscore] = ACTIONS(4711), }, - [STATE(1223)] = { - [sym__backslash_escape] = ACTIONS(4667), - [sym_entity_reference] = ACTIONS(4667), - [sym_numeric_character_reference] = ACTIONS(4667), - [anon_sym_LT] = ACTIONS(4669), - [anon_sym_GT] = ACTIONS(4667), - [anon_sym_BANG] = ACTIONS(4667), - [anon_sym_DQUOTE] = ACTIONS(4667), - [anon_sym_POUND] = ACTIONS(4667), - [anon_sym_DOLLAR] = ACTIONS(4667), - [anon_sym_PERCENT] = ACTIONS(4667), - [anon_sym_AMP] = ACTIONS(4669), - [anon_sym_SQUOTE] = ACTIONS(4667), - [anon_sym_PLUS] = ACTIONS(4667), - [anon_sym_COMMA] = ACTIONS(4667), - [anon_sym_DASH] = ACTIONS(4669), - [anon_sym_DOT] = ACTIONS(4669), - [anon_sym_SLASH] = ACTIONS(4667), - [anon_sym_COLON] = ACTIONS(4667), - [anon_sym_SEMI] = ACTIONS(4667), - [anon_sym_EQ] = ACTIONS(4667), - [anon_sym_QMARK] = ACTIONS(4667), - [anon_sym_LBRACK] = ACTIONS(4669), - [anon_sym_BSLASH] = ACTIONS(4669), - [anon_sym_CARET] = ACTIONS(4669), - [anon_sym_BQUOTE] = ACTIONS(4667), - [anon_sym_LBRACE] = ACTIONS(4667), - [anon_sym_PIPE] = ACTIONS(4667), - [anon_sym_TILDE] = ACTIONS(4667), - [anon_sym_LPAREN] = ACTIONS(4667), - [anon_sym_RPAREN] = ACTIONS(4667), - [sym__newline_token] = ACTIONS(4667), - [aux_sym_insert_token1] = ACTIONS(4667), - [aux_sym_delete_token1] = ACTIONS(4667), - [aux_sym_highlight_token1] = ACTIONS(4667), - [aux_sym_edit_comment_token1] = ACTIONS(4667), - [anon_sym_CARET_LBRACK] = ACTIONS(4667), - [anon_sym_LBRACK_CARET] = ACTIONS(4667), - [sym_uri_autolink] = ACTIONS(4667), - [sym_email_autolink] = ACTIONS(4667), - [sym__whitespace_ge_2] = ACTIONS(4667), - [aux_sym__whitespace_token1] = ACTIONS(4669), - [sym__word_no_digit] = ACTIONS(4667), - [sym__digits] = ACTIONS(4667), - [anon_sym_DASH_DASH] = ACTIONS(4669), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4667), - [sym__code_span_start] = ACTIONS(4667), - [sym__emphasis_open_star] = ACTIONS(4667), - [sym__emphasis_open_underscore] = ACTIONS(4667), - [sym__emphasis_close_star] = ACTIONS(4667), - [sym__strikeout_open] = ACTIONS(4667), - [sym__latex_span_start] = ACTIONS(4667), - [sym__single_quote_open] = ACTIONS(4667), - [sym__double_quote_open] = ACTIONS(4667), - [sym__superscript_open] = ACTIONS(4667), - [sym__subscript_open] = ACTIONS(4667), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4667), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4667), - [sym__cite_author_in_text] = ACTIONS(4667), - [sym__cite_suppress_author] = ACTIONS(4667), - [sym__shortcode_open_escaped] = ACTIONS(4667), - [sym__shortcode_open] = ACTIONS(4667), - [sym__unclosed_span] = ACTIONS(4667), - [sym__strong_emphasis_open_star] = ACTIONS(4667), - [sym__strong_emphasis_open_underscore] = ACTIONS(4667), + [STATE(1226)] = { + [sym__backslash_escape] = ACTIONS(4691), + [sym_entity_reference] = ACTIONS(4691), + [sym_numeric_character_reference] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4693), + [anon_sym_GT] = ACTIONS(4691), + [anon_sym_BANG] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(4691), + [anon_sym_POUND] = ACTIONS(4691), + [anon_sym_DOLLAR] = ACTIONS(4691), + [anon_sym_PERCENT] = ACTIONS(4691), + [anon_sym_AMP] = ACTIONS(4693), + [anon_sym_SQUOTE] = ACTIONS(4691), + [anon_sym_PLUS] = ACTIONS(4691), + [anon_sym_COMMA] = ACTIONS(4691), + [anon_sym_DASH] = ACTIONS(4693), + [anon_sym_DOT] = ACTIONS(4693), + [anon_sym_SLASH] = ACTIONS(4691), + [anon_sym_COLON] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4691), + [anon_sym_EQ] = ACTIONS(4691), + [anon_sym_QMARK] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_BSLASH] = ACTIONS(4693), + [anon_sym_CARET] = ACTIONS(4693), + [anon_sym_BQUOTE] = ACTIONS(4691), + [anon_sym_LBRACE] = ACTIONS(4691), + [anon_sym_PIPE] = ACTIONS(4691), + [anon_sym_TILDE] = ACTIONS(4691), + [anon_sym_LPAREN] = ACTIONS(4691), + [anon_sym_RPAREN] = ACTIONS(4691), + [sym__newline_token] = ACTIONS(4691), + [aux_sym_insert_token1] = ACTIONS(4691), + [aux_sym_delete_token1] = ACTIONS(4691), + [aux_sym_highlight_token1] = ACTIONS(4691), + [aux_sym_edit_comment_token1] = ACTIONS(4691), + [anon_sym_CARET_LBRACK] = ACTIONS(4691), + [anon_sym_LBRACK_CARET] = ACTIONS(4691), + [sym_uri_autolink] = ACTIONS(4691), + [sym_email_autolink] = ACTIONS(4691), + [sym__whitespace_ge_2] = ACTIONS(4691), + [aux_sym__whitespace_token1] = ACTIONS(4693), + [sym__word_no_digit] = ACTIONS(4691), + [sym__digits] = ACTIONS(4691), + [anon_sym_DASH_DASH] = ACTIONS(4693), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4691), + [sym__code_span_start] = ACTIONS(4691), + [sym__emphasis_open_star] = ACTIONS(4691), + [sym__emphasis_open_underscore] = ACTIONS(4691), + [sym__emphasis_close_star] = ACTIONS(4691), + [sym__strikeout_open] = ACTIONS(4691), + [sym__latex_span_start] = ACTIONS(4691), + [sym__single_quote_open] = ACTIONS(4691), + [sym__double_quote_open] = ACTIONS(4691), + [sym__superscript_open] = ACTIONS(4691), + [sym__subscript_open] = ACTIONS(4691), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4691), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4691), + [sym__cite_author_in_text] = ACTIONS(4691), + [sym__cite_suppress_author] = ACTIONS(4691), + [sym__shortcode_open_escaped] = ACTIONS(4691), + [sym__shortcode_open] = ACTIONS(4691), + [sym__unclosed_span] = ACTIONS(4691), + [sym__strong_emphasis_open_star] = ACTIONS(4691), + [sym__strong_emphasis_open_underscore] = ACTIONS(4691), }, - [STATE(1224)] = { + [STATE(1227)] = { [sym__backslash_escape] = ACTIONS(4715), [sym_entity_reference] = ACTIONS(4715), [sym_numeric_character_reference] = ACTIONS(4715), @@ -130591,74 +130791,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4715), [sym__strong_emphasis_close_underscore] = ACTIONS(4715), }, - [STATE(1225)] = { - [sym__backslash_escape] = ACTIONS(4671), - [sym_entity_reference] = ACTIONS(4671), - [sym_numeric_character_reference] = ACTIONS(4671), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4671), - [anon_sym_BANG] = ACTIONS(4671), - [anon_sym_DQUOTE] = ACTIONS(4671), - [anon_sym_POUND] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4671), - [anon_sym_PERCENT] = ACTIONS(4671), - [anon_sym_AMP] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4671), - [anon_sym_COLON] = ACTIONS(4671), - [anon_sym_SEMI] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_QMARK] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4673), - [anon_sym_BSLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym_BQUOTE] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [anon_sym_PIPE] = ACTIONS(4671), - [anon_sym_TILDE] = ACTIONS(4671), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [sym__newline_token] = ACTIONS(4671), - [aux_sym_insert_token1] = ACTIONS(4671), - [aux_sym_delete_token1] = ACTIONS(4671), - [aux_sym_highlight_token1] = ACTIONS(4671), - [aux_sym_edit_comment_token1] = ACTIONS(4671), - [anon_sym_CARET_LBRACK] = ACTIONS(4671), - [anon_sym_LBRACK_CARET] = ACTIONS(4671), - [sym_uri_autolink] = ACTIONS(4671), - [sym_email_autolink] = ACTIONS(4671), - [sym__whitespace_ge_2] = ACTIONS(4671), - [aux_sym__whitespace_token1] = ACTIONS(4673), - [sym__word_no_digit] = ACTIONS(4671), - [sym__digits] = ACTIONS(4671), - [anon_sym_DASH_DASH] = ACTIONS(4673), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4671), - [sym__code_span_start] = ACTIONS(4671), - [sym__emphasis_open_star] = ACTIONS(4671), - [sym__emphasis_open_underscore] = ACTIONS(4671), - [sym__emphasis_close_star] = ACTIONS(4671), - [sym__strikeout_open] = ACTIONS(4671), - [sym__latex_span_start] = ACTIONS(4671), - [sym__single_quote_open] = ACTIONS(4671), - [sym__double_quote_open] = ACTIONS(4671), - [sym__superscript_open] = ACTIONS(4671), - [sym__subscript_open] = ACTIONS(4671), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4671), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4671), - [sym__cite_author_in_text] = ACTIONS(4671), - [sym__cite_suppress_author] = ACTIONS(4671), - [sym__shortcode_open_escaped] = ACTIONS(4671), - [sym__shortcode_open] = ACTIONS(4671), - [sym__unclosed_span] = ACTIONS(4671), - [sym__strong_emphasis_open_star] = ACTIONS(4671), - [sym__strong_emphasis_open_underscore] = ACTIONS(4671), + [STATE(1228)] = { + [sym__backslash_escape] = ACTIONS(4695), + [sym_entity_reference] = ACTIONS(4695), + [sym_numeric_character_reference] = ACTIONS(4695), + [anon_sym_LT] = ACTIONS(4697), + [anon_sym_GT] = ACTIONS(4695), + [anon_sym_BANG] = ACTIONS(4695), + [anon_sym_DQUOTE] = ACTIONS(4695), + [anon_sym_POUND] = ACTIONS(4695), + [anon_sym_DOLLAR] = ACTIONS(4695), + [anon_sym_PERCENT] = ACTIONS(4695), + [anon_sym_AMP] = ACTIONS(4697), + [anon_sym_SQUOTE] = ACTIONS(4695), + [anon_sym_PLUS] = ACTIONS(4695), + [anon_sym_COMMA] = ACTIONS(4695), + [anon_sym_DASH] = ACTIONS(4697), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_SLASH] = ACTIONS(4695), + [anon_sym_COLON] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4695), + [anon_sym_EQ] = ACTIONS(4695), + [anon_sym_QMARK] = ACTIONS(4695), + [anon_sym_LBRACK] = ACTIONS(4697), + [anon_sym_BSLASH] = ACTIONS(4697), + [anon_sym_CARET] = ACTIONS(4697), + [anon_sym_BQUOTE] = ACTIONS(4695), + [anon_sym_LBRACE] = ACTIONS(4695), + [anon_sym_PIPE] = ACTIONS(4695), + [anon_sym_TILDE] = ACTIONS(4695), + [anon_sym_LPAREN] = ACTIONS(4695), + [anon_sym_RPAREN] = ACTIONS(4695), + [sym__newline_token] = ACTIONS(4695), + [aux_sym_insert_token1] = ACTIONS(4695), + [aux_sym_delete_token1] = ACTIONS(4695), + [aux_sym_highlight_token1] = ACTIONS(4695), + [aux_sym_edit_comment_token1] = ACTIONS(4695), + [anon_sym_CARET_LBRACK] = ACTIONS(4695), + [anon_sym_LBRACK_CARET] = ACTIONS(4695), + [sym_uri_autolink] = ACTIONS(4695), + [sym_email_autolink] = ACTIONS(4695), + [sym__whitespace_ge_2] = ACTIONS(4695), + [aux_sym__whitespace_token1] = ACTIONS(4697), + [sym__word_no_digit] = ACTIONS(4695), + [sym__digits] = ACTIONS(4695), + [anon_sym_DASH_DASH] = ACTIONS(4697), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4695), + [sym__code_span_start] = ACTIONS(4695), + [sym__emphasis_open_star] = ACTIONS(4695), + [sym__emphasis_open_underscore] = ACTIONS(4695), + [sym__emphasis_close_star] = ACTIONS(4695), + [sym__strikeout_open] = ACTIONS(4695), + [sym__latex_span_start] = ACTIONS(4695), + [sym__single_quote_open] = ACTIONS(4695), + [sym__double_quote_open] = ACTIONS(4695), + [sym__superscript_open] = ACTIONS(4695), + [sym__subscript_open] = ACTIONS(4695), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4695), + [sym__cite_author_in_text] = ACTIONS(4695), + [sym__cite_suppress_author] = ACTIONS(4695), + [sym__shortcode_open_escaped] = ACTIONS(4695), + [sym__shortcode_open] = ACTIONS(4695), + [sym__unclosed_span] = ACTIONS(4695), + [sym__strong_emphasis_open_star] = ACTIONS(4695), + [sym__strong_emphasis_open_underscore] = ACTIONS(4695), }, - [STATE(1226)] = { + [STATE(1229)] = { + [sym__backslash_escape] = ACTIONS(4699), + [sym_entity_reference] = ACTIONS(4699), + [sym_numeric_character_reference] = ACTIONS(4699), + [anon_sym_LT] = ACTIONS(4701), + [anon_sym_GT] = ACTIONS(4699), + [anon_sym_BANG] = ACTIONS(4699), + [anon_sym_DQUOTE] = ACTIONS(4699), + [anon_sym_POUND] = ACTIONS(4699), + [anon_sym_DOLLAR] = ACTIONS(4699), + [anon_sym_PERCENT] = ACTIONS(4699), + [anon_sym_AMP] = ACTIONS(4701), + [anon_sym_SQUOTE] = ACTIONS(4699), + [anon_sym_PLUS] = ACTIONS(4699), + [anon_sym_COMMA] = ACTIONS(4699), + [anon_sym_DASH] = ACTIONS(4701), + [anon_sym_DOT] = ACTIONS(4701), + [anon_sym_SLASH] = ACTIONS(4699), + [anon_sym_COLON] = ACTIONS(4699), + [anon_sym_SEMI] = ACTIONS(4699), + [anon_sym_EQ] = ACTIONS(4699), + [anon_sym_QMARK] = ACTIONS(4699), + [anon_sym_LBRACK] = ACTIONS(4701), + [anon_sym_BSLASH] = ACTIONS(4701), + [anon_sym_CARET] = ACTIONS(4701), + [anon_sym_BQUOTE] = ACTIONS(4699), + [anon_sym_LBRACE] = ACTIONS(4699), + [anon_sym_PIPE] = ACTIONS(4699), + [anon_sym_TILDE] = ACTIONS(4699), + [anon_sym_LPAREN] = ACTIONS(4699), + [anon_sym_RPAREN] = ACTIONS(4699), + [sym__newline_token] = ACTIONS(4699), + [aux_sym_insert_token1] = ACTIONS(4699), + [aux_sym_delete_token1] = ACTIONS(4699), + [aux_sym_highlight_token1] = ACTIONS(4699), + [aux_sym_edit_comment_token1] = ACTIONS(4699), + [anon_sym_CARET_LBRACK] = ACTIONS(4699), + [anon_sym_LBRACK_CARET] = ACTIONS(4699), + [sym_uri_autolink] = ACTIONS(4699), + [sym_email_autolink] = ACTIONS(4699), + [sym__whitespace_ge_2] = ACTIONS(4699), + [aux_sym__whitespace_token1] = ACTIONS(4701), + [sym__word_no_digit] = ACTIONS(4699), + [sym__digits] = ACTIONS(4699), + [anon_sym_DASH_DASH] = ACTIONS(4701), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4699), + [sym__code_span_start] = ACTIONS(4699), + [sym__emphasis_open_star] = ACTIONS(4699), + [sym__emphasis_open_underscore] = ACTIONS(4699), + [sym__emphasis_close_star] = ACTIONS(4699), + [sym__strikeout_open] = ACTIONS(4699), + [sym__latex_span_start] = ACTIONS(4699), + [sym__single_quote_open] = ACTIONS(4699), + [sym__double_quote_open] = ACTIONS(4699), + [sym__superscript_open] = ACTIONS(4699), + [sym__subscript_open] = ACTIONS(4699), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4699), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4699), + [sym__cite_author_in_text] = ACTIONS(4699), + [sym__cite_suppress_author] = ACTIONS(4699), + [sym__shortcode_open_escaped] = ACTIONS(4699), + [sym__shortcode_open] = ACTIONS(4699), + [sym__unclosed_span] = ACTIONS(4699), + [sym__strong_emphasis_open_star] = ACTIONS(4699), + [sym__strong_emphasis_open_underscore] = ACTIONS(4699), + }, + [STATE(1230)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), + [sym__strong_emphasis_close_underscore] = ACTIONS(4391), + }, + [STATE(1231)] = { + [sym__backslash_escape] = ACTIONS(4703), + [sym_entity_reference] = ACTIONS(4703), + [sym_numeric_character_reference] = ACTIONS(4703), + [anon_sym_LT] = ACTIONS(4705), + [anon_sym_GT] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(4703), + [anon_sym_DQUOTE] = ACTIONS(4703), + [anon_sym_POUND] = ACTIONS(4703), + [anon_sym_DOLLAR] = ACTIONS(4703), + [anon_sym_PERCENT] = ACTIONS(4703), + [anon_sym_AMP] = ACTIONS(4705), + [anon_sym_SQUOTE] = ACTIONS(4703), + [anon_sym_PLUS] = ACTIONS(4703), + [anon_sym_COMMA] = ACTIONS(4703), + [anon_sym_DASH] = ACTIONS(4705), + [anon_sym_DOT] = ACTIONS(4705), + [anon_sym_SLASH] = ACTIONS(4703), + [anon_sym_COLON] = ACTIONS(4703), + [anon_sym_SEMI] = ACTIONS(4703), + [anon_sym_EQ] = ACTIONS(4703), + [anon_sym_QMARK] = ACTIONS(4703), + [anon_sym_LBRACK] = ACTIONS(4705), + [anon_sym_BSLASH] = ACTIONS(4705), + [anon_sym_CARET] = ACTIONS(4705), + [anon_sym_BQUOTE] = ACTIONS(4703), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_PIPE] = ACTIONS(4703), + [anon_sym_TILDE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(4703), + [anon_sym_RPAREN] = ACTIONS(4703), + [sym__newline_token] = ACTIONS(4703), + [aux_sym_insert_token1] = ACTIONS(4703), + [aux_sym_delete_token1] = ACTIONS(4703), + [aux_sym_highlight_token1] = ACTIONS(4703), + [aux_sym_edit_comment_token1] = ACTIONS(4703), + [anon_sym_CARET_LBRACK] = ACTIONS(4703), + [anon_sym_LBRACK_CARET] = ACTIONS(4703), + [sym_uri_autolink] = ACTIONS(4703), + [sym_email_autolink] = ACTIONS(4703), + [sym__whitespace_ge_2] = ACTIONS(4703), + [aux_sym__whitespace_token1] = ACTIONS(4705), + [sym__word_no_digit] = ACTIONS(4703), + [sym__digits] = ACTIONS(4703), + [anon_sym_DASH_DASH] = ACTIONS(4705), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4703), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4703), + [sym__code_span_start] = ACTIONS(4703), + [sym__emphasis_open_star] = ACTIONS(4703), + [sym__emphasis_open_underscore] = ACTIONS(4703), + [sym__emphasis_close_star] = ACTIONS(4703), + [sym__strikeout_open] = ACTIONS(4703), + [sym__latex_span_start] = ACTIONS(4703), + [sym__single_quote_open] = ACTIONS(4703), + [sym__double_quote_open] = ACTIONS(4703), + [sym__superscript_open] = ACTIONS(4703), + [sym__subscript_open] = ACTIONS(4703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4703), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4703), + [sym__cite_author_in_text] = ACTIONS(4703), + [sym__cite_suppress_author] = ACTIONS(4703), + [sym__shortcode_open_escaped] = ACTIONS(4703), + [sym__shortcode_open] = ACTIONS(4703), + [sym__unclosed_span] = ACTIONS(4703), + [sym__strong_emphasis_open_star] = ACTIONS(4703), + [sym__strong_emphasis_open_underscore] = ACTIONS(4703), + }, + [STATE(1232)] = { [sym__backslash_escape] = ACTIONS(4719), [sym_entity_reference] = ACTIONS(4719), [sym_numeric_character_reference] = ACTIONS(4719), @@ -130725,275 +131126,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4719), [sym__strong_emphasis_close_underscore] = ACTIONS(4719), }, - [STATE(1227)] = { - [sym__backslash_escape] = ACTIONS(4675), - [sym_entity_reference] = ACTIONS(4675), - [sym_numeric_character_reference] = ACTIONS(4675), - [anon_sym_LT] = ACTIONS(4677), - [anon_sym_GT] = ACTIONS(4675), - [anon_sym_BANG] = ACTIONS(4675), - [anon_sym_DQUOTE] = ACTIONS(4675), - [anon_sym_POUND] = ACTIONS(4675), - [anon_sym_DOLLAR] = ACTIONS(4675), - [anon_sym_PERCENT] = ACTIONS(4675), - [anon_sym_AMP] = ACTIONS(4677), - [anon_sym_SQUOTE] = ACTIONS(4675), - [anon_sym_PLUS] = ACTIONS(4675), - [anon_sym_COMMA] = ACTIONS(4675), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_DOT] = ACTIONS(4677), - [anon_sym_SLASH] = ACTIONS(4675), - [anon_sym_COLON] = ACTIONS(4675), - [anon_sym_SEMI] = ACTIONS(4675), - [anon_sym_EQ] = ACTIONS(4675), - [anon_sym_QMARK] = ACTIONS(4675), - [anon_sym_LBRACK] = ACTIONS(4677), - [anon_sym_BSLASH] = ACTIONS(4677), - [anon_sym_CARET] = ACTIONS(4677), - [anon_sym_BQUOTE] = ACTIONS(4675), - [anon_sym_LBRACE] = ACTIONS(4675), - [anon_sym_PIPE] = ACTIONS(4675), - [anon_sym_TILDE] = ACTIONS(4675), - [anon_sym_LPAREN] = ACTIONS(4675), - [anon_sym_RPAREN] = ACTIONS(4675), - [sym__newline_token] = ACTIONS(4675), - [aux_sym_insert_token1] = ACTIONS(4675), - [aux_sym_delete_token1] = ACTIONS(4675), - [aux_sym_highlight_token1] = ACTIONS(4675), - [aux_sym_edit_comment_token1] = ACTIONS(4675), - [anon_sym_CARET_LBRACK] = ACTIONS(4675), - [anon_sym_LBRACK_CARET] = ACTIONS(4675), - [sym_uri_autolink] = ACTIONS(4675), - [sym_email_autolink] = ACTIONS(4675), - [sym__whitespace_ge_2] = ACTIONS(4675), - [aux_sym__whitespace_token1] = ACTIONS(4677), - [sym__word_no_digit] = ACTIONS(4675), - [sym__digits] = ACTIONS(4675), - [anon_sym_DASH_DASH] = ACTIONS(4677), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4675), - [sym__code_span_start] = ACTIONS(4675), - [sym__emphasis_open_star] = ACTIONS(4675), - [sym__emphasis_open_underscore] = ACTIONS(4675), - [sym__emphasis_close_star] = ACTIONS(4675), - [sym__strikeout_open] = ACTIONS(4675), - [sym__latex_span_start] = ACTIONS(4675), - [sym__single_quote_open] = ACTIONS(4675), - [sym__double_quote_open] = ACTIONS(4675), - [sym__superscript_open] = ACTIONS(4675), - [sym__subscript_open] = ACTIONS(4675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4675), - [sym__cite_author_in_text] = ACTIONS(4675), - [sym__cite_suppress_author] = ACTIONS(4675), - [sym__shortcode_open_escaped] = ACTIONS(4675), - [sym__shortcode_open] = ACTIONS(4675), - [sym__unclosed_span] = ACTIONS(4675), - [sym__strong_emphasis_open_star] = ACTIONS(4675), - [sym__strong_emphasis_open_underscore] = ACTIONS(4675), - }, - [STATE(1228)] = { - [sym__backslash_escape] = ACTIONS(4679), - [sym_entity_reference] = ACTIONS(4679), - [sym_numeric_character_reference] = ACTIONS(4679), - [anon_sym_LT] = ACTIONS(4681), - [anon_sym_GT] = ACTIONS(4679), - [anon_sym_BANG] = ACTIONS(4679), - [anon_sym_DQUOTE] = ACTIONS(4679), - [anon_sym_POUND] = ACTIONS(4679), - [anon_sym_DOLLAR] = ACTIONS(4679), - [anon_sym_PERCENT] = ACTIONS(4679), - [anon_sym_AMP] = ACTIONS(4681), - [anon_sym_SQUOTE] = ACTIONS(4679), - [anon_sym_PLUS] = ACTIONS(4679), - [anon_sym_COMMA] = ACTIONS(4679), - [anon_sym_DASH] = ACTIONS(4681), - [anon_sym_DOT] = ACTIONS(4681), - [anon_sym_SLASH] = ACTIONS(4679), - [anon_sym_COLON] = ACTIONS(4679), - [anon_sym_SEMI] = ACTIONS(4679), - [anon_sym_EQ] = ACTIONS(4679), - [anon_sym_QMARK] = ACTIONS(4679), - [anon_sym_LBRACK] = ACTIONS(4681), - [anon_sym_BSLASH] = ACTIONS(4681), - [anon_sym_CARET] = ACTIONS(4681), - [anon_sym_BQUOTE] = ACTIONS(4679), - [anon_sym_LBRACE] = ACTIONS(4679), - [anon_sym_PIPE] = ACTIONS(4679), - [anon_sym_TILDE] = ACTIONS(4679), - [anon_sym_LPAREN] = ACTIONS(4679), - [anon_sym_RPAREN] = ACTIONS(4679), - [sym__newline_token] = ACTIONS(4679), - [aux_sym_insert_token1] = ACTIONS(4679), - [aux_sym_delete_token1] = ACTIONS(4679), - [aux_sym_highlight_token1] = ACTIONS(4679), - [aux_sym_edit_comment_token1] = ACTIONS(4679), - [anon_sym_CARET_LBRACK] = ACTIONS(4679), - [anon_sym_LBRACK_CARET] = ACTIONS(4679), - [sym_uri_autolink] = ACTIONS(4679), - [sym_email_autolink] = ACTIONS(4679), - [sym__whitespace_ge_2] = ACTIONS(4679), - [aux_sym__whitespace_token1] = ACTIONS(4681), - [sym__word_no_digit] = ACTIONS(4679), - [sym__digits] = ACTIONS(4679), - [anon_sym_DASH_DASH] = ACTIONS(4681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4679), - [sym__code_span_start] = ACTIONS(4679), - [sym__emphasis_open_star] = ACTIONS(4679), - [sym__emphasis_open_underscore] = ACTIONS(4679), - [sym__emphasis_close_star] = ACTIONS(4679), - [sym__strikeout_open] = ACTIONS(4679), - [sym__latex_span_start] = ACTIONS(4679), - [sym__single_quote_open] = ACTIONS(4679), - [sym__double_quote_open] = ACTIONS(4679), - [sym__superscript_open] = ACTIONS(4679), - [sym__subscript_open] = ACTIONS(4679), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4679), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4679), - [sym__cite_author_in_text] = ACTIONS(4679), - [sym__cite_suppress_author] = ACTIONS(4679), - [sym__shortcode_open_escaped] = ACTIONS(4679), - [sym__shortcode_open] = ACTIONS(4679), - [sym__unclosed_span] = ACTIONS(4679), - [sym__strong_emphasis_open_star] = ACTIONS(4679), - [sym__strong_emphasis_open_underscore] = ACTIONS(4679), - }, - [STATE(1229)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), - [sym__strong_emphasis_close_underscore] = ACTIONS(4413), + [STATE(1233)] = { + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__emphasis_close_star] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), }, - [STATE(1230)] = { - [sym__backslash_escape] = ACTIONS(4683), - [sym_entity_reference] = ACTIONS(4683), - [sym_numeric_character_reference] = ACTIONS(4683), - [anon_sym_LT] = ACTIONS(4685), - [anon_sym_GT] = ACTIONS(4683), - [anon_sym_BANG] = ACTIONS(4683), - [anon_sym_DQUOTE] = ACTIONS(4683), - [anon_sym_POUND] = ACTIONS(4683), - [anon_sym_DOLLAR] = ACTIONS(4683), - [anon_sym_PERCENT] = ACTIONS(4683), - [anon_sym_AMP] = ACTIONS(4685), - [anon_sym_SQUOTE] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4683), - [anon_sym_COMMA] = ACTIONS(4683), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_DOT] = ACTIONS(4685), - [anon_sym_SLASH] = ACTIONS(4683), - [anon_sym_COLON] = ACTIONS(4683), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_EQ] = ACTIONS(4683), - [anon_sym_QMARK] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_BSLASH] = ACTIONS(4685), - [anon_sym_CARET] = ACTIONS(4685), - [anon_sym_BQUOTE] = ACTIONS(4683), - [anon_sym_LBRACE] = ACTIONS(4683), - [anon_sym_PIPE] = ACTIONS(4683), - [anon_sym_TILDE] = ACTIONS(4683), - [anon_sym_LPAREN] = ACTIONS(4683), - [anon_sym_RPAREN] = ACTIONS(4683), - [sym__newline_token] = ACTIONS(4683), - [aux_sym_insert_token1] = ACTIONS(4683), - [aux_sym_delete_token1] = ACTIONS(4683), - [aux_sym_highlight_token1] = ACTIONS(4683), - [aux_sym_edit_comment_token1] = ACTIONS(4683), - [anon_sym_CARET_LBRACK] = ACTIONS(4683), - [anon_sym_LBRACK_CARET] = ACTIONS(4683), - [sym_uri_autolink] = ACTIONS(4683), - [sym_email_autolink] = ACTIONS(4683), - [sym__whitespace_ge_2] = ACTIONS(4683), - [aux_sym__whitespace_token1] = ACTIONS(4685), - [sym__word_no_digit] = ACTIONS(4683), - [sym__digits] = ACTIONS(4683), - [anon_sym_DASH_DASH] = ACTIONS(4685), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4683), - [sym__code_span_start] = ACTIONS(4683), - [sym__emphasis_open_star] = ACTIONS(4683), - [sym__emphasis_open_underscore] = ACTIONS(4683), - [sym__emphasis_close_star] = ACTIONS(4683), - [sym__strikeout_open] = ACTIONS(4683), - [sym__latex_span_start] = ACTIONS(4683), - [sym__single_quote_open] = ACTIONS(4683), - [sym__double_quote_open] = ACTIONS(4683), - [sym__superscript_open] = ACTIONS(4683), - [sym__subscript_open] = ACTIONS(4683), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4683), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4683), - [sym__cite_author_in_text] = ACTIONS(4683), - [sym__cite_suppress_author] = ACTIONS(4683), - [sym__shortcode_open_escaped] = ACTIONS(4683), - [sym__shortcode_open] = ACTIONS(4683), - [sym__unclosed_span] = ACTIONS(4683), - [sym__strong_emphasis_open_star] = ACTIONS(4683), - [sym__strong_emphasis_open_underscore] = ACTIONS(4683), + [STATE(1234)] = { + [ts_builtin_sym_end] = ACTIONS(4643), + [sym__backslash_escape] = ACTIONS(4643), + [sym_entity_reference] = ACTIONS(4643), + [sym_numeric_character_reference] = ACTIONS(4643), + [anon_sym_LT] = ACTIONS(4645), + [anon_sym_GT] = ACTIONS(4643), + [anon_sym_BANG] = ACTIONS(4643), + [anon_sym_DQUOTE] = ACTIONS(4643), + [anon_sym_POUND] = ACTIONS(4643), + [anon_sym_DOLLAR] = ACTIONS(4643), + [anon_sym_PERCENT] = ACTIONS(4643), + [anon_sym_AMP] = ACTIONS(4645), + [anon_sym_SQUOTE] = ACTIONS(4643), + [anon_sym_PLUS] = ACTIONS(4643), + [anon_sym_COMMA] = ACTIONS(4643), + [anon_sym_DASH] = ACTIONS(4645), + [anon_sym_DOT] = ACTIONS(4645), + [anon_sym_SLASH] = ACTIONS(4643), + [anon_sym_COLON] = ACTIONS(4643), + [anon_sym_SEMI] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(4643), + [anon_sym_QMARK] = ACTIONS(4643), + [anon_sym_LBRACK] = ACTIONS(4645), + [anon_sym_BSLASH] = ACTIONS(4645), + [anon_sym_CARET] = ACTIONS(4645), + [anon_sym_BQUOTE] = ACTIONS(4643), + [anon_sym_LBRACE] = ACTIONS(4643), + [anon_sym_PIPE] = ACTIONS(4643), + [anon_sym_TILDE] = ACTIONS(4643), + [anon_sym_LPAREN] = ACTIONS(4643), + [anon_sym_RPAREN] = ACTIONS(4643), + [sym__newline_token] = ACTIONS(4643), + [aux_sym_insert_token1] = ACTIONS(4643), + [aux_sym_delete_token1] = ACTIONS(4643), + [aux_sym_highlight_token1] = ACTIONS(4643), + [aux_sym_edit_comment_token1] = ACTIONS(4643), + [anon_sym_CARET_LBRACK] = ACTIONS(4643), + [anon_sym_LBRACK_CARET] = ACTIONS(4643), + [sym_uri_autolink] = ACTIONS(4643), + [sym_email_autolink] = ACTIONS(4643), + [sym__whitespace_ge_2] = ACTIONS(4643), + [aux_sym__whitespace_token1] = ACTIONS(4645), + [sym__word_no_digit] = ACTIONS(4643), + [sym__digits] = ACTIONS(4643), + [anon_sym_DASH_DASH] = ACTIONS(4645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4643), + [sym__code_span_start] = ACTIONS(4643), + [sym__emphasis_open_star] = ACTIONS(4643), + [sym__emphasis_open_underscore] = ACTIONS(4643), + [sym__strikeout_open] = ACTIONS(4643), + [sym__latex_span_start] = ACTIONS(4643), + [sym__single_quote_open] = ACTIONS(4643), + [sym__double_quote_open] = ACTIONS(4643), + [sym__superscript_open] = ACTIONS(4643), + [sym__subscript_open] = ACTIONS(4643), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4643), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4643), + [sym__cite_author_in_text] = ACTIONS(4643), + [sym__cite_suppress_author] = ACTIONS(4643), + [sym__shortcode_open_escaped] = ACTIONS(4643), + [sym__shortcode_open] = ACTIONS(4643), + [sym__unclosed_span] = ACTIONS(4643), + [sym__strong_emphasis_open_star] = ACTIONS(4643), + [sym__strong_emphasis_open_underscore] = ACTIONS(4643), }, - [STATE(1231)] = { + [STATE(1235)] = { [sym__backslash_escape] = ACTIONS(4723), [sym_entity_reference] = ACTIONS(4723), [sym_numeric_character_reference] = ACTIONS(4723), @@ -131060,141 +131327,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4723), [sym__strong_emphasis_close_underscore] = ACTIONS(4723), }, - [STATE(1232)] = { - [sym__backslash_escape] = ACTIONS(4687), - [sym_entity_reference] = ACTIONS(4687), - [sym_numeric_character_reference] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4689), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_DQUOTE] = ACTIONS(4687), - [anon_sym_POUND] = ACTIONS(4687), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_PERCENT] = ACTIONS(4687), - [anon_sym_AMP] = ACTIONS(4689), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_COMMA] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4689), - [anon_sym_DOT] = ACTIONS(4689), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SEMI] = ACTIONS(4687), - [anon_sym_EQ] = ACTIONS(4687), - [anon_sym_QMARK] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_BSLASH] = ACTIONS(4689), - [anon_sym_CARET] = ACTIONS(4689), - [anon_sym_BQUOTE] = ACTIONS(4687), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_TILDE] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_RPAREN] = ACTIONS(4687), - [sym__newline_token] = ACTIONS(4687), - [aux_sym_insert_token1] = ACTIONS(4687), - [aux_sym_delete_token1] = ACTIONS(4687), - [aux_sym_highlight_token1] = ACTIONS(4687), - [aux_sym_edit_comment_token1] = ACTIONS(4687), - [anon_sym_CARET_LBRACK] = ACTIONS(4687), - [anon_sym_LBRACK_CARET] = ACTIONS(4687), - [sym_uri_autolink] = ACTIONS(4687), - [sym_email_autolink] = ACTIONS(4687), - [sym__whitespace_ge_2] = ACTIONS(4687), - [aux_sym__whitespace_token1] = ACTIONS(4689), - [sym__word_no_digit] = ACTIONS(4687), - [sym__digits] = ACTIONS(4687), - [anon_sym_DASH_DASH] = ACTIONS(4689), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4687), - [sym__code_span_start] = ACTIONS(4687), - [sym__emphasis_open_star] = ACTIONS(4687), - [sym__emphasis_open_underscore] = ACTIONS(4687), - [sym__emphasis_close_star] = ACTIONS(4687), - [sym__strikeout_open] = ACTIONS(4687), - [sym__latex_span_start] = ACTIONS(4687), - [sym__single_quote_open] = ACTIONS(4687), - [sym__double_quote_open] = ACTIONS(4687), - [sym__superscript_open] = ACTIONS(4687), - [sym__subscript_open] = ACTIONS(4687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4687), - [sym__cite_author_in_text] = ACTIONS(4687), - [sym__cite_suppress_author] = ACTIONS(4687), - [sym__shortcode_open_escaped] = ACTIONS(4687), - [sym__shortcode_open] = ACTIONS(4687), - [sym__unclosed_span] = ACTIONS(4687), - [sym__strong_emphasis_open_star] = ACTIONS(4687), - [sym__strong_emphasis_open_underscore] = ACTIONS(4687), - }, - [STATE(1233)] = { - [sym__backslash_escape] = ACTIONS(4691), - [sym_entity_reference] = ACTIONS(4691), - [sym_numeric_character_reference] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4693), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_DQUOTE] = ACTIONS(4691), - [anon_sym_POUND] = ACTIONS(4691), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_PERCENT] = ACTIONS(4691), - [anon_sym_AMP] = ACTIONS(4693), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_COMMA] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4693), - [anon_sym_DOT] = ACTIONS(4693), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SEMI] = ACTIONS(4691), - [anon_sym_EQ] = ACTIONS(4691), - [anon_sym_QMARK] = ACTIONS(4691), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_BSLASH] = ACTIONS(4693), - [anon_sym_CARET] = ACTIONS(4693), - [anon_sym_BQUOTE] = ACTIONS(4691), - [anon_sym_LBRACE] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_TILDE] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4691), - [anon_sym_RPAREN] = ACTIONS(4691), - [sym__newline_token] = ACTIONS(4691), - [aux_sym_insert_token1] = ACTIONS(4691), - [aux_sym_delete_token1] = ACTIONS(4691), - [aux_sym_highlight_token1] = ACTIONS(4691), - [aux_sym_edit_comment_token1] = ACTIONS(4691), - [anon_sym_CARET_LBRACK] = ACTIONS(4691), - [anon_sym_LBRACK_CARET] = ACTIONS(4691), - [sym_uri_autolink] = ACTIONS(4691), - [sym_email_autolink] = ACTIONS(4691), - [sym__whitespace_ge_2] = ACTIONS(4691), - [aux_sym__whitespace_token1] = ACTIONS(4693), - [sym__word_no_digit] = ACTIONS(4691), - [sym__digits] = ACTIONS(4691), - [anon_sym_DASH_DASH] = ACTIONS(4693), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4691), - [sym__code_span_start] = ACTIONS(4691), - [sym__emphasis_open_star] = ACTIONS(4691), - [sym__emphasis_open_underscore] = ACTIONS(4691), - [sym__emphasis_close_star] = ACTIONS(4691), - [sym__strikeout_open] = ACTIONS(4691), - [sym__latex_span_start] = ACTIONS(4691), - [sym__single_quote_open] = ACTIONS(4691), - [sym__double_quote_open] = ACTIONS(4691), - [sym__superscript_open] = ACTIONS(4691), - [sym__subscript_open] = ACTIONS(4691), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4691), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4691), - [sym__cite_author_in_text] = ACTIONS(4691), - [sym__cite_suppress_author] = ACTIONS(4691), - [sym__shortcode_open_escaped] = ACTIONS(4691), - [sym__shortcode_open] = ACTIONS(4691), - [sym__unclosed_span] = ACTIONS(4691), - [sym__strong_emphasis_open_star] = ACTIONS(4691), - [sym__strong_emphasis_open_underscore] = ACTIONS(4691), + [STATE(1236)] = { + [sym__backslash_escape] = ACTIONS(4527), + [sym_entity_reference] = ACTIONS(4527), + [sym_numeric_character_reference] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_POUND] = ACTIONS(4527), + [anon_sym_DOLLAR] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_BSLASH] = ACTIONS(4529), + [anon_sym_CARET] = ACTIONS(4529), + [anon_sym_BQUOTE] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_RPAREN] = ACTIONS(4527), + [sym__newline_token] = ACTIONS(4527), + [aux_sym_insert_token1] = ACTIONS(4527), + [aux_sym_delete_token1] = ACTIONS(4527), + [aux_sym_highlight_token1] = ACTIONS(4527), + [aux_sym_edit_comment_token1] = ACTIONS(4527), + [anon_sym_CARET_LBRACK] = ACTIONS(4527), + [anon_sym_LBRACK_CARET] = ACTIONS(4527), + [sym_uri_autolink] = ACTIONS(4527), + [sym_email_autolink] = ACTIONS(4527), + [sym__whitespace_ge_2] = ACTIONS(4527), + [aux_sym__whitespace_token1] = ACTIONS(4529), + [sym__word_no_digit] = ACTIONS(4527), + [sym__digits] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), + [sym__code_span_start] = ACTIONS(4527), + [sym__emphasis_open_star] = ACTIONS(4527), + [sym__emphasis_open_underscore] = ACTIONS(4527), + [sym__strikeout_open] = ACTIONS(4527), + [sym__latex_span_start] = ACTIONS(4527), + [sym__single_quote_open] = ACTIONS(4527), + [sym__double_quote_open] = ACTIONS(4527), + [sym__superscript_open] = ACTIONS(4527), + [sym__subscript_open] = ACTIONS(4527), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), + [sym__cite_author_in_text] = ACTIONS(4527), + [sym__cite_suppress_author] = ACTIONS(4527), + [sym__shortcode_open_escaped] = ACTIONS(4527), + [sym__shortcode_open] = ACTIONS(4527), + [sym__unclosed_span] = ACTIONS(4527), + [sym__strong_emphasis_open_star] = ACTIONS(4527), + [sym__strong_emphasis_open_underscore] = ACTIONS(4527), + [sym__strong_emphasis_close_underscore] = ACTIONS(4527), }, - [STATE(1234)] = { + [STATE(1237)] = { [sym__backslash_escape] = ACTIONS(4727), [sym_entity_reference] = ACTIONS(4727), [sym_numeric_character_reference] = ACTIONS(4727), @@ -131261,7 +131461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4727), [sym__strong_emphasis_close_underscore] = ACTIONS(4727), }, - [STATE(1235)] = { + [STATE(1238)] = { [sym__backslash_escape] = ACTIONS(4731), [sym_entity_reference] = ACTIONS(4731), [sym_numeric_character_reference] = ACTIONS(4731), @@ -131328,7 +131528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4731), [sym__strong_emphasis_close_underscore] = ACTIONS(4731), }, - [STATE(1236)] = { + [STATE(1239)] = { [sym__backslash_escape] = ACTIONS(4735), [sym_entity_reference] = ACTIONS(4735), [sym_numeric_character_reference] = ACTIONS(4735), @@ -131395,7 +131595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4735), [sym__strong_emphasis_close_underscore] = ACTIONS(4735), }, - [STATE(1237)] = { + [STATE(1240)] = { [sym__backslash_escape] = ACTIONS(4739), [sym_entity_reference] = ACTIONS(4739), [sym_numeric_character_reference] = ACTIONS(4739), @@ -131462,7 +131662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4739), [sym__strong_emphasis_close_underscore] = ACTIONS(4739), }, - [STATE(1238)] = { + [STATE(1241)] = { [sym__backslash_escape] = ACTIONS(4743), [sym_entity_reference] = ACTIONS(4743), [sym_numeric_character_reference] = ACTIONS(4743), @@ -131529,7 +131729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4743), [sym__strong_emphasis_close_underscore] = ACTIONS(4743), }, - [STATE(1239)] = { + [STATE(1242)] = { [sym__backslash_escape] = ACTIONS(4747), [sym_entity_reference] = ACTIONS(4747), [sym_numeric_character_reference] = ACTIONS(4747), @@ -131596,7 +131796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4747), [sym__strong_emphasis_close_underscore] = ACTIONS(4747), }, - [STATE(1240)] = { + [STATE(1243)] = { [sym__backslash_escape] = ACTIONS(4751), [sym_entity_reference] = ACTIONS(4751), [sym_numeric_character_reference] = ACTIONS(4751), @@ -131663,7 +131863,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4751), [sym__strong_emphasis_close_underscore] = ACTIONS(4751), }, - [STATE(1241)] = { + [STATE(1244)] = { + [sym__backslash_escape] = ACTIONS(4707), + [sym_entity_reference] = ACTIONS(4707), + [sym_numeric_character_reference] = ACTIONS(4707), + [anon_sym_LT] = ACTIONS(4709), + [anon_sym_GT] = ACTIONS(4707), + [anon_sym_BANG] = ACTIONS(4707), + [anon_sym_DQUOTE] = ACTIONS(4707), + [anon_sym_POUND] = ACTIONS(4707), + [anon_sym_DOLLAR] = ACTIONS(4707), + [anon_sym_PERCENT] = ACTIONS(4707), + [anon_sym_AMP] = ACTIONS(4709), + [anon_sym_SQUOTE] = ACTIONS(4707), + [anon_sym_PLUS] = ACTIONS(4707), + [anon_sym_COMMA] = ACTIONS(4707), + [anon_sym_DASH] = ACTIONS(4709), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_SLASH] = ACTIONS(4707), + [anon_sym_COLON] = ACTIONS(4707), + [anon_sym_SEMI] = ACTIONS(4707), + [anon_sym_EQ] = ACTIONS(4707), + [anon_sym_QMARK] = ACTIONS(4707), + [anon_sym_LBRACK] = ACTIONS(4709), + [anon_sym_BSLASH] = ACTIONS(4709), + [anon_sym_CARET] = ACTIONS(4709), + [anon_sym_BQUOTE] = ACTIONS(4707), + [anon_sym_LBRACE] = ACTIONS(4707), + [anon_sym_PIPE] = ACTIONS(4707), + [anon_sym_TILDE] = ACTIONS(4707), + [anon_sym_LPAREN] = ACTIONS(4707), + [anon_sym_RPAREN] = ACTIONS(4707), + [sym__newline_token] = ACTIONS(4707), + [aux_sym_insert_token1] = ACTIONS(4707), + [aux_sym_delete_token1] = ACTIONS(4707), + [aux_sym_highlight_token1] = ACTIONS(4707), + [aux_sym_edit_comment_token1] = ACTIONS(4707), + [anon_sym_CARET_LBRACK] = ACTIONS(4707), + [anon_sym_LBRACK_CARET] = ACTIONS(4707), + [sym_uri_autolink] = ACTIONS(4707), + [sym_email_autolink] = ACTIONS(4707), + [sym__whitespace_ge_2] = ACTIONS(4707), + [aux_sym__whitespace_token1] = ACTIONS(4709), + [sym__word_no_digit] = ACTIONS(4707), + [sym__digits] = ACTIONS(4707), + [anon_sym_DASH_DASH] = ACTIONS(4709), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4707), + [sym__code_span_start] = ACTIONS(4707), + [sym__emphasis_open_star] = ACTIONS(4707), + [sym__emphasis_open_underscore] = ACTIONS(4707), + [sym__emphasis_close_star] = ACTIONS(4707), + [sym__strikeout_open] = ACTIONS(4707), + [sym__latex_span_start] = ACTIONS(4707), + [sym__single_quote_open] = ACTIONS(4707), + [sym__double_quote_open] = ACTIONS(4707), + [sym__superscript_open] = ACTIONS(4707), + [sym__subscript_open] = ACTIONS(4707), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4707), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4707), + [sym__cite_author_in_text] = ACTIONS(4707), + [sym__cite_suppress_author] = ACTIONS(4707), + [sym__shortcode_open_escaped] = ACTIONS(4707), + [sym__shortcode_open] = ACTIONS(4707), + [sym__unclosed_span] = ACTIONS(4707), + [sym__strong_emphasis_open_star] = ACTIONS(4707), + [sym__strong_emphasis_open_underscore] = ACTIONS(4707), + }, + [STATE(1245)] = { [sym__backslash_escape] = ACTIONS(4755), [sym_entity_reference] = ACTIONS(4755), [sym_numeric_character_reference] = ACTIONS(4755), @@ -131730,7 +131997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4755), [sym__strong_emphasis_close_underscore] = ACTIONS(4755), }, - [STATE(1242)] = { + [STATE(1246)] = { [sym__backslash_escape] = ACTIONS(4759), [sym_entity_reference] = ACTIONS(4759), [sym_numeric_character_reference] = ACTIONS(4759), @@ -131797,74 +132064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4759), [sym__strong_emphasis_close_underscore] = ACTIONS(4759), }, - [STATE(1243)] = { - [sym__backslash_escape] = ACTIONS(4695), - [sym_entity_reference] = ACTIONS(4695), - [sym_numeric_character_reference] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4697), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_DQUOTE] = ACTIONS(4695), - [anon_sym_POUND] = ACTIONS(4695), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_PERCENT] = ACTIONS(4695), - [anon_sym_AMP] = ACTIONS(4697), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_COMMA] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4697), - [anon_sym_DOT] = ACTIONS(4697), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SEMI] = ACTIONS(4695), - [anon_sym_EQ] = ACTIONS(4695), - [anon_sym_QMARK] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_BSLASH] = ACTIONS(4697), - [anon_sym_CARET] = ACTIONS(4697), - [anon_sym_BQUOTE] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_TILDE] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4695), - [anon_sym_RPAREN] = ACTIONS(4695), - [sym__newline_token] = ACTIONS(4695), - [aux_sym_insert_token1] = ACTIONS(4695), - [aux_sym_delete_token1] = ACTIONS(4695), - [aux_sym_highlight_token1] = ACTIONS(4695), - [aux_sym_edit_comment_token1] = ACTIONS(4695), - [anon_sym_CARET_LBRACK] = ACTIONS(4695), - [anon_sym_LBRACK_CARET] = ACTIONS(4695), - [sym_uri_autolink] = ACTIONS(4695), - [sym_email_autolink] = ACTIONS(4695), - [sym__whitespace_ge_2] = ACTIONS(4695), - [aux_sym__whitespace_token1] = ACTIONS(4697), - [sym__word_no_digit] = ACTIONS(4695), - [sym__digits] = ACTIONS(4695), - [anon_sym_DASH_DASH] = ACTIONS(4697), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4695), - [sym__code_span_start] = ACTIONS(4695), - [sym__emphasis_open_star] = ACTIONS(4695), - [sym__emphasis_open_underscore] = ACTIONS(4695), - [sym__emphasis_close_star] = ACTIONS(4695), - [sym__strikeout_open] = ACTIONS(4695), - [sym__latex_span_start] = ACTIONS(4695), - [sym__single_quote_open] = ACTIONS(4695), - [sym__double_quote_open] = ACTIONS(4695), - [sym__superscript_open] = ACTIONS(4695), - [sym__subscript_open] = ACTIONS(4695), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4695), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4695), - [sym__cite_author_in_text] = ACTIONS(4695), - [sym__cite_suppress_author] = ACTIONS(4695), - [sym__shortcode_open_escaped] = ACTIONS(4695), - [sym__shortcode_open] = ACTIONS(4695), - [sym__unclosed_span] = ACTIONS(4695), - [sym__strong_emphasis_open_star] = ACTIONS(4695), - [sym__strong_emphasis_open_underscore] = ACTIONS(4695), - }, - [STATE(1244)] = { + [STATE(1247)] = { [sym__backslash_escape] = ACTIONS(4763), [sym_entity_reference] = ACTIONS(4763), [sym_numeric_character_reference] = ACTIONS(4763), @@ -131931,141 +132131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4763), [sym__strong_emphasis_close_underscore] = ACTIONS(4763), }, - [STATE(1245)] = { - [sym__backslash_escape] = ACTIONS(4527), - [sym_entity_reference] = ACTIONS(4527), - [sym_numeric_character_reference] = ACTIONS(4527), - [anon_sym_LT] = ACTIONS(4529), - [anon_sym_GT] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(4527), - [anon_sym_DQUOTE] = ACTIONS(4527), - [anon_sym_POUND] = ACTIONS(4527), - [anon_sym_DOLLAR] = ACTIONS(4527), - [anon_sym_PERCENT] = ACTIONS(4527), - [anon_sym_AMP] = ACTIONS(4529), - [anon_sym_SQUOTE] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(4527), - [anon_sym_COMMA] = ACTIONS(4527), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_DOT] = ACTIONS(4529), - [anon_sym_SLASH] = ACTIONS(4527), - [anon_sym_COLON] = ACTIONS(4527), - [anon_sym_SEMI] = ACTIONS(4527), - [anon_sym_EQ] = ACTIONS(4527), - [anon_sym_QMARK] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4529), - [anon_sym_BSLASH] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(4529), - [anon_sym_BQUOTE] = ACTIONS(4527), - [anon_sym_LBRACE] = ACTIONS(4527), - [anon_sym_PIPE] = ACTIONS(4527), - [anon_sym_TILDE] = ACTIONS(4527), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym_RPAREN] = ACTIONS(4527), - [sym__newline_token] = ACTIONS(4527), - [aux_sym_insert_token1] = ACTIONS(4527), - [aux_sym_delete_token1] = ACTIONS(4527), - [aux_sym_highlight_token1] = ACTIONS(4527), - [aux_sym_edit_comment_token1] = ACTIONS(4527), - [anon_sym_CARET_LBRACK] = ACTIONS(4527), - [anon_sym_LBRACK_CARET] = ACTIONS(4527), - [sym_uri_autolink] = ACTIONS(4527), - [sym_email_autolink] = ACTIONS(4527), - [sym__whitespace_ge_2] = ACTIONS(4527), - [aux_sym__whitespace_token1] = ACTIONS(4529), - [sym__word_no_digit] = ACTIONS(4527), - [sym__digits] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), - [sym__code_span_start] = ACTIONS(4527), - [sym__emphasis_open_star] = ACTIONS(4527), - [sym__emphasis_open_underscore] = ACTIONS(4527), - [sym__strikeout_open] = ACTIONS(4527), - [sym__latex_span_start] = ACTIONS(4527), - [sym__single_quote_open] = ACTIONS(4527), - [sym__double_quote_open] = ACTIONS(4527), - [sym__superscript_open] = ACTIONS(4527), - [sym__subscript_open] = ACTIONS(4527), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), - [sym__cite_author_in_text] = ACTIONS(4527), - [sym__cite_suppress_author] = ACTIONS(4527), - [sym__shortcode_open_escaped] = ACTIONS(4527), - [sym__shortcode_open] = ACTIONS(4527), - [sym__unclosed_span] = ACTIONS(4527), - [sym__strong_emphasis_open_star] = ACTIONS(4527), - [sym__strong_emphasis_open_underscore] = ACTIONS(4527), - [sym__strong_emphasis_close_underscore] = ACTIONS(4527), - }, - [STATE(1246)] = { - [sym__backslash_escape] = ACTIONS(4531), - [sym_entity_reference] = ACTIONS(4531), - [sym_numeric_character_reference] = ACTIONS(4531), - [anon_sym_LT] = ACTIONS(4533), - [anon_sym_GT] = ACTIONS(4531), - [anon_sym_BANG] = ACTIONS(4531), - [anon_sym_DQUOTE] = ACTIONS(4531), - [anon_sym_POUND] = ACTIONS(4531), - [anon_sym_DOLLAR] = ACTIONS(4531), - [anon_sym_PERCENT] = ACTIONS(4531), - [anon_sym_AMP] = ACTIONS(4533), - [anon_sym_SQUOTE] = ACTIONS(4531), - [anon_sym_PLUS] = ACTIONS(4531), - [anon_sym_COMMA] = ACTIONS(4531), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4533), - [anon_sym_SLASH] = ACTIONS(4531), - [anon_sym_COLON] = ACTIONS(4531), - [anon_sym_SEMI] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4531), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_BSLASH] = ACTIONS(4533), - [anon_sym_CARET] = ACTIONS(4533), - [anon_sym_BQUOTE] = ACTIONS(4531), - [anon_sym_LBRACE] = ACTIONS(4531), - [anon_sym_PIPE] = ACTIONS(4531), - [anon_sym_TILDE] = ACTIONS(4531), - [anon_sym_LPAREN] = ACTIONS(4531), - [anon_sym_RPAREN] = ACTIONS(4531), - [sym__newline_token] = ACTIONS(4531), - [aux_sym_insert_token1] = ACTIONS(4531), - [aux_sym_delete_token1] = ACTIONS(4531), - [aux_sym_highlight_token1] = ACTIONS(4531), - [aux_sym_edit_comment_token1] = ACTIONS(4531), - [anon_sym_CARET_LBRACK] = ACTIONS(4531), - [anon_sym_LBRACK_CARET] = ACTIONS(4531), - [sym_uri_autolink] = ACTIONS(4531), - [sym_email_autolink] = ACTIONS(4531), - [sym__whitespace_ge_2] = ACTIONS(4531), - [aux_sym__whitespace_token1] = ACTIONS(4533), - [sym__word_no_digit] = ACTIONS(4531), - [sym__digits] = ACTIONS(4531), - [anon_sym_DASH_DASH] = ACTIONS(4533), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), - [sym__code_span_start] = ACTIONS(4531), - [sym__emphasis_open_star] = ACTIONS(4531), - [sym__emphasis_open_underscore] = ACTIONS(4531), - [sym__strikeout_open] = ACTIONS(4531), - [sym__latex_span_start] = ACTIONS(4531), - [sym__single_quote_open] = ACTIONS(4531), - [sym__double_quote_open] = ACTIONS(4531), - [sym__superscript_open] = ACTIONS(4531), - [sym__subscript_open] = ACTIONS(4531), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), - [sym__cite_author_in_text] = ACTIONS(4531), - [sym__cite_suppress_author] = ACTIONS(4531), - [sym__shortcode_open_escaped] = ACTIONS(4531), - [sym__shortcode_open] = ACTIONS(4531), - [sym__unclosed_span] = ACTIONS(4531), - [sym__strong_emphasis_open_star] = ACTIONS(4531), - [sym__strong_emphasis_open_underscore] = ACTIONS(4531), - [sym__strong_emphasis_close_underscore] = ACTIONS(4531), - }, - [STATE(1247)] = { + [STATE(1248)] = { [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), [sym_numeric_character_reference] = ACTIONS(4209), @@ -132132,74 +132198,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4209), [sym__strong_emphasis_close_underscore] = ACTIONS(4209), }, - [STATE(1248)] = { - [sym__backslash_escape] = ACTIONS(4699), - [sym_entity_reference] = ACTIONS(4699), - [sym_numeric_character_reference] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4701), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_DQUOTE] = ACTIONS(4699), - [anon_sym_POUND] = ACTIONS(4699), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_PERCENT] = ACTIONS(4699), - [anon_sym_AMP] = ACTIONS(4701), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_COMMA] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4701), - [anon_sym_DOT] = ACTIONS(4701), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SEMI] = ACTIONS(4699), - [anon_sym_EQ] = ACTIONS(4699), - [anon_sym_QMARK] = ACTIONS(4699), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_BSLASH] = ACTIONS(4701), - [anon_sym_CARET] = ACTIONS(4701), - [anon_sym_BQUOTE] = ACTIONS(4699), - [anon_sym_LBRACE] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_TILDE] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4699), - [anon_sym_RPAREN] = ACTIONS(4699), - [sym__newline_token] = ACTIONS(4699), - [aux_sym_insert_token1] = ACTIONS(4699), - [aux_sym_delete_token1] = ACTIONS(4699), - [aux_sym_highlight_token1] = ACTIONS(4699), - [aux_sym_edit_comment_token1] = ACTIONS(4699), - [anon_sym_CARET_LBRACK] = ACTIONS(4699), - [anon_sym_LBRACK_CARET] = ACTIONS(4699), - [sym_uri_autolink] = ACTIONS(4699), - [sym_email_autolink] = ACTIONS(4699), - [sym__whitespace_ge_2] = ACTIONS(4699), - [aux_sym__whitespace_token1] = ACTIONS(4701), - [sym__word_no_digit] = ACTIONS(4699), - [sym__digits] = ACTIONS(4699), - [anon_sym_DASH_DASH] = ACTIONS(4701), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4699), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4699), - [sym__code_span_start] = ACTIONS(4699), - [sym__emphasis_open_star] = ACTIONS(4699), - [sym__emphasis_open_underscore] = ACTIONS(4699), - [sym__emphasis_close_star] = ACTIONS(4699), - [sym__strikeout_open] = ACTIONS(4699), - [sym__latex_span_start] = ACTIONS(4699), - [sym__single_quote_open] = ACTIONS(4699), - [sym__double_quote_open] = ACTIONS(4699), - [sym__superscript_open] = ACTIONS(4699), - [sym__subscript_open] = ACTIONS(4699), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4699), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4699), - [sym__cite_author_in_text] = ACTIONS(4699), - [sym__cite_suppress_author] = ACTIONS(4699), - [sym__shortcode_open_escaped] = ACTIONS(4699), - [sym__shortcode_open] = ACTIONS(4699), - [sym__unclosed_span] = ACTIONS(4699), - [sym__strong_emphasis_open_star] = ACTIONS(4699), - [sym__strong_emphasis_open_underscore] = ACTIONS(4699), - }, [STATE(1249)] = { + [ts_builtin_sym_end] = ACTIONS(4181), + [sym__backslash_escape] = ACTIONS(4181), + [sym_entity_reference] = ACTIONS(4181), + [sym_numeric_character_reference] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4181), + [anon_sym_DQUOTE] = ACTIONS(4181), + [anon_sym_POUND] = ACTIONS(4181), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_PERCENT] = ACTIONS(4181), + [anon_sym_AMP] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_EQ] = ACTIONS(4181), + [anon_sym_QMARK] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(4183), + [anon_sym_BSLASH] = ACTIONS(4183), + [anon_sym_CARET] = ACTIONS(4183), + [anon_sym_BQUOTE] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_TILDE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(4181), + [sym__newline_token] = ACTIONS(4181), + [aux_sym_insert_token1] = ACTIONS(4181), + [aux_sym_delete_token1] = ACTIONS(4181), + [aux_sym_highlight_token1] = ACTIONS(4181), + [aux_sym_edit_comment_token1] = ACTIONS(4181), + [anon_sym_CARET_LBRACK] = ACTIONS(4181), + [anon_sym_LBRACK_CARET] = ACTIONS(4181), + [sym_uri_autolink] = ACTIONS(4181), + [sym_email_autolink] = ACTIONS(4181), + [sym__whitespace_ge_2] = ACTIONS(4181), + [aux_sym__whitespace_token1] = ACTIONS(4183), + [sym__word_no_digit] = ACTIONS(4181), + [sym__digits] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4183), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4181), + [sym__code_span_start] = ACTIONS(4181), + [sym__emphasis_open_star] = ACTIONS(4181), + [sym__emphasis_open_underscore] = ACTIONS(4181), + [sym__strikeout_open] = ACTIONS(4181), + [sym__latex_span_start] = ACTIONS(4181), + [sym__single_quote_open] = ACTIONS(4181), + [sym__double_quote_open] = ACTIONS(4181), + [sym__superscript_open] = ACTIONS(4181), + [sym__subscript_open] = ACTIONS(4181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4181), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4181), + [sym__cite_author_in_text] = ACTIONS(4181), + [sym__cite_suppress_author] = ACTIONS(4181), + [sym__shortcode_open_escaped] = ACTIONS(4181), + [sym__shortcode_open] = ACTIONS(4181), + [sym__unclosed_span] = ACTIONS(4181), + [sym__strong_emphasis_open_star] = ACTIONS(4181), + [sym__strong_emphasis_open_underscore] = ACTIONS(4181), + }, + [STATE(1250)] = { [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), [sym_numeric_character_reference] = ACTIONS(4213), @@ -132266,74 +132332,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4213), [sym__strong_emphasis_close_underscore] = ACTIONS(4213), }, - [STATE(1250)] = { - [sym__backslash_escape] = ACTIONS(4703), - [sym_entity_reference] = ACTIONS(4703), - [sym_numeric_character_reference] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4703), - [anon_sym_DQUOTE] = ACTIONS(4703), - [anon_sym_POUND] = ACTIONS(4703), - [anon_sym_DOLLAR] = ACTIONS(4703), - [anon_sym_PERCENT] = ACTIONS(4703), - [anon_sym_AMP] = ACTIONS(4705), - [anon_sym_SQUOTE] = ACTIONS(4703), - [anon_sym_PLUS] = ACTIONS(4703), - [anon_sym_COMMA] = ACTIONS(4703), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4703), - [anon_sym_COLON] = ACTIONS(4703), - [anon_sym_SEMI] = ACTIONS(4703), - [anon_sym_EQ] = ACTIONS(4703), - [anon_sym_QMARK] = ACTIONS(4703), - [anon_sym_LBRACK] = ACTIONS(4705), - [anon_sym_BSLASH] = ACTIONS(4705), - [anon_sym_CARET] = ACTIONS(4705), - [anon_sym_BQUOTE] = ACTIONS(4703), - [anon_sym_LBRACE] = ACTIONS(4703), - [anon_sym_PIPE] = ACTIONS(4703), - [anon_sym_TILDE] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4703), - [anon_sym_RPAREN] = ACTIONS(4703), - [sym__newline_token] = ACTIONS(4703), - [aux_sym_insert_token1] = ACTIONS(4703), - [aux_sym_delete_token1] = ACTIONS(4703), - [aux_sym_highlight_token1] = ACTIONS(4703), - [aux_sym_edit_comment_token1] = ACTIONS(4703), - [anon_sym_CARET_LBRACK] = ACTIONS(4703), - [anon_sym_LBRACK_CARET] = ACTIONS(4703), - [sym_uri_autolink] = ACTIONS(4703), - [sym_email_autolink] = ACTIONS(4703), - [sym__whitespace_ge_2] = ACTIONS(4703), - [aux_sym__whitespace_token1] = ACTIONS(4705), - [sym__word_no_digit] = ACTIONS(4703), - [sym__digits] = ACTIONS(4703), - [anon_sym_DASH_DASH] = ACTIONS(4705), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4703), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4703), - [sym__code_span_start] = ACTIONS(4703), - [sym__emphasis_open_star] = ACTIONS(4703), - [sym__emphasis_open_underscore] = ACTIONS(4703), - [sym__emphasis_close_star] = ACTIONS(4703), - [sym__strikeout_open] = ACTIONS(4703), - [sym__latex_span_start] = ACTIONS(4703), - [sym__single_quote_open] = ACTIONS(4703), - [sym__double_quote_open] = ACTIONS(4703), - [sym__superscript_open] = ACTIONS(4703), - [sym__subscript_open] = ACTIONS(4703), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4703), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4703), - [sym__cite_author_in_text] = ACTIONS(4703), - [sym__cite_suppress_author] = ACTIONS(4703), - [sym__shortcode_open_escaped] = ACTIONS(4703), - [sym__shortcode_open] = ACTIONS(4703), - [sym__unclosed_span] = ACTIONS(4703), - [sym__strong_emphasis_open_star] = ACTIONS(4703), - [sym__strong_emphasis_open_underscore] = ACTIONS(4703), - }, [STATE(1251)] = { + [sym__backslash_escape] = ACTIONS(4711), + [sym_entity_reference] = ACTIONS(4711), + [sym_numeric_character_reference] = ACTIONS(4711), + [anon_sym_LT] = ACTIONS(4713), + [anon_sym_GT] = ACTIONS(4711), + [anon_sym_BANG] = ACTIONS(4711), + [anon_sym_DQUOTE] = ACTIONS(4711), + [anon_sym_POUND] = ACTIONS(4711), + [anon_sym_DOLLAR] = ACTIONS(4711), + [anon_sym_PERCENT] = ACTIONS(4711), + [anon_sym_AMP] = ACTIONS(4713), + [anon_sym_SQUOTE] = ACTIONS(4711), + [anon_sym_PLUS] = ACTIONS(4711), + [anon_sym_COMMA] = ACTIONS(4711), + [anon_sym_DASH] = ACTIONS(4713), + [anon_sym_DOT] = ACTIONS(4713), + [anon_sym_SLASH] = ACTIONS(4711), + [anon_sym_COLON] = ACTIONS(4711), + [anon_sym_SEMI] = ACTIONS(4711), + [anon_sym_EQ] = ACTIONS(4711), + [anon_sym_QMARK] = ACTIONS(4711), + [anon_sym_LBRACK] = ACTIONS(4713), + [anon_sym_BSLASH] = ACTIONS(4713), + [anon_sym_CARET] = ACTIONS(4713), + [anon_sym_BQUOTE] = ACTIONS(4711), + [anon_sym_LBRACE] = ACTIONS(4711), + [anon_sym_PIPE] = ACTIONS(4711), + [anon_sym_TILDE] = ACTIONS(4711), + [anon_sym_LPAREN] = ACTIONS(4711), + [anon_sym_RPAREN] = ACTIONS(4711), + [sym__newline_token] = ACTIONS(4711), + [aux_sym_insert_token1] = ACTIONS(4711), + [aux_sym_delete_token1] = ACTIONS(4711), + [aux_sym_highlight_token1] = ACTIONS(4711), + [aux_sym_edit_comment_token1] = ACTIONS(4711), + [anon_sym_CARET_LBRACK] = ACTIONS(4711), + [anon_sym_LBRACK_CARET] = ACTIONS(4711), + [sym_uri_autolink] = ACTIONS(4711), + [sym_email_autolink] = ACTIONS(4711), + [sym__whitespace_ge_2] = ACTIONS(4711), + [aux_sym__whitespace_token1] = ACTIONS(4713), + [sym__word_no_digit] = ACTIONS(4711), + [sym__digits] = ACTIONS(4711), + [anon_sym_DASH_DASH] = ACTIONS(4713), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4711), + [sym__code_span_start] = ACTIONS(4711), + [sym__emphasis_open_star] = ACTIONS(4711), + [sym__emphasis_open_underscore] = ACTIONS(4711), + [sym__emphasis_close_star] = ACTIONS(4711), + [sym__strikeout_open] = ACTIONS(4711), + [sym__latex_span_start] = ACTIONS(4711), + [sym__single_quote_open] = ACTIONS(4711), + [sym__double_quote_open] = ACTIONS(4711), + [sym__superscript_open] = ACTIONS(4711), + [sym__subscript_open] = ACTIONS(4711), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4711), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4711), + [sym__cite_author_in_text] = ACTIONS(4711), + [sym__cite_suppress_author] = ACTIONS(4711), + [sym__shortcode_open_escaped] = ACTIONS(4711), + [sym__shortcode_open] = ACTIONS(4711), + [sym__unclosed_span] = ACTIONS(4711), + [sym__strong_emphasis_open_star] = ACTIONS(4711), + [sym__strong_emphasis_open_underscore] = ACTIONS(4711), + }, + [STATE(1252)] = { + [sym__backslash_escape] = ACTIONS(4531), + [sym_entity_reference] = ACTIONS(4531), + [sym_numeric_character_reference] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_DQUOTE] = ACTIONS(4531), + [anon_sym_POUND] = ACTIONS(4531), + [anon_sym_DOLLAR] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4533), + [anon_sym_SQUOTE] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_DASH] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4533), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_BSLASH] = ACTIONS(4533), + [anon_sym_CARET] = ACTIONS(4533), + [anon_sym_BQUOTE] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_TILDE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_RPAREN] = ACTIONS(4531), + [sym__newline_token] = ACTIONS(4531), + [aux_sym_insert_token1] = ACTIONS(4531), + [aux_sym_delete_token1] = ACTIONS(4531), + [aux_sym_highlight_token1] = ACTIONS(4531), + [aux_sym_edit_comment_token1] = ACTIONS(4531), + [anon_sym_CARET_LBRACK] = ACTIONS(4531), + [anon_sym_LBRACK_CARET] = ACTIONS(4531), + [sym_uri_autolink] = ACTIONS(4531), + [sym_email_autolink] = ACTIONS(4531), + [sym__whitespace_ge_2] = ACTIONS(4531), + [aux_sym__whitespace_token1] = ACTIONS(4533), + [sym__word_no_digit] = ACTIONS(4531), + [sym__digits] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), + [sym__code_span_start] = ACTIONS(4531), + [sym__emphasis_open_star] = ACTIONS(4531), + [sym__emphasis_open_underscore] = ACTIONS(4531), + [sym__strikeout_open] = ACTIONS(4531), + [sym__latex_span_start] = ACTIONS(4531), + [sym__single_quote_open] = ACTIONS(4531), + [sym__double_quote_open] = ACTIONS(4531), + [sym__superscript_open] = ACTIONS(4531), + [sym__subscript_open] = ACTIONS(4531), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), + [sym__cite_author_in_text] = ACTIONS(4531), + [sym__cite_suppress_author] = ACTIONS(4531), + [sym__shortcode_open_escaped] = ACTIONS(4531), + [sym__shortcode_open] = ACTIONS(4531), + [sym__unclosed_span] = ACTIONS(4531), + [sym__strong_emphasis_open_star] = ACTIONS(4531), + [sym__strong_emphasis_open_underscore] = ACTIONS(4531), + [sym__strong_emphasis_close_underscore] = ACTIONS(4531), + }, + [STATE(1253)] = { [sym__backslash_escape] = ACTIONS(4535), [sym_entity_reference] = ACTIONS(4535), [sym_numeric_character_reference] = ACTIONS(4535), @@ -132400,7 +132533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4535), [sym__strong_emphasis_close_underscore] = ACTIONS(4535), }, - [STATE(1252)] = { + [STATE(1254)] = { [sym__backslash_escape] = ACTIONS(4539), [sym_entity_reference] = ACTIONS(4539), [sym_numeric_character_reference] = ACTIONS(4539), @@ -132467,7 +132600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4539), [sym__strong_emphasis_close_underscore] = ACTIONS(4539), }, - [STATE(1253)] = { + [STATE(1255)] = { [sym__backslash_escape] = ACTIONS(4543), [sym_entity_reference] = ACTIONS(4543), [sym_numeric_character_reference] = ACTIONS(4543), @@ -132534,7 +132667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4543), [sym__strong_emphasis_close_underscore] = ACTIONS(4543), }, - [STATE(1254)] = { + [STATE(1256)] = { [sym__backslash_escape] = ACTIONS(4547), [sym_entity_reference] = ACTIONS(4547), [sym_numeric_character_reference] = ACTIONS(4547), @@ -132601,74 +132734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4547), [sym__strong_emphasis_close_underscore] = ACTIONS(4547), }, - [STATE(1255)] = { - [sym__backslash_escape] = ACTIONS(4551), - [sym_entity_reference] = ACTIONS(4551), - [sym_numeric_character_reference] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(4553), - [anon_sym_GT] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4551), - [anon_sym_DQUOTE] = ACTIONS(4551), - [anon_sym_POUND] = ACTIONS(4551), - [anon_sym_DOLLAR] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_AMP] = ACTIONS(4553), - [anon_sym_SQUOTE] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_COLON] = ACTIONS(4551), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_EQ] = ACTIONS(4551), - [anon_sym_QMARK] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_BSLASH] = ACTIONS(4553), - [anon_sym_CARET] = ACTIONS(4553), - [anon_sym_BQUOTE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_PIPE] = ACTIONS(4551), - [anon_sym_TILDE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_RPAREN] = ACTIONS(4551), - [sym__newline_token] = ACTIONS(4551), - [aux_sym_insert_token1] = ACTIONS(4551), - [aux_sym_delete_token1] = ACTIONS(4551), - [aux_sym_highlight_token1] = ACTIONS(4551), - [aux_sym_edit_comment_token1] = ACTIONS(4551), - [anon_sym_CARET_LBRACK] = ACTIONS(4551), - [anon_sym_LBRACK_CARET] = ACTIONS(4551), - [sym_uri_autolink] = ACTIONS(4551), - [sym_email_autolink] = ACTIONS(4551), - [sym__whitespace_ge_2] = ACTIONS(4551), - [aux_sym__whitespace_token1] = ACTIONS(4553), - [sym__word_no_digit] = ACTIONS(4551), - [sym__digits] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4553), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), - [sym__code_span_start] = ACTIONS(4551), - [sym__emphasis_open_star] = ACTIONS(4551), - [sym__emphasis_open_underscore] = ACTIONS(4551), - [sym__strikeout_open] = ACTIONS(4551), - [sym__latex_span_start] = ACTIONS(4551), - [sym__single_quote_open] = ACTIONS(4551), - [sym__double_quote_open] = ACTIONS(4551), - [sym__superscript_open] = ACTIONS(4551), - [sym__subscript_open] = ACTIONS(4551), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), - [sym__cite_author_in_text] = ACTIONS(4551), - [sym__cite_suppress_author] = ACTIONS(4551), - [sym__shortcode_open_escaped] = ACTIONS(4551), - [sym__shortcode_open] = ACTIONS(4551), - [sym__unclosed_span] = ACTIONS(4551), - [sym__strong_emphasis_open_star] = ACTIONS(4551), - [sym__strong_emphasis_open_underscore] = ACTIONS(4551), - [sym__strong_emphasis_close_underscore] = ACTIONS(4551), - }, - [STATE(1256)] = { + [STATE(1257)] = { [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -132735,73 +132801,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4217), [sym__strong_emphasis_close_underscore] = ACTIONS(4217), }, - [STATE(1257)] = { - [sym__backslash_escape] = ACTIONS(4707), - [sym_entity_reference] = ACTIONS(4707), - [sym_numeric_character_reference] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4709), - [anon_sym_GT] = ACTIONS(4707), - [anon_sym_BANG] = ACTIONS(4707), - [anon_sym_DQUOTE] = ACTIONS(4707), - [anon_sym_POUND] = ACTIONS(4707), - [anon_sym_DOLLAR] = ACTIONS(4707), - [anon_sym_PERCENT] = ACTIONS(4707), - [anon_sym_AMP] = ACTIONS(4709), - [anon_sym_SQUOTE] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4709), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4707), - [anon_sym_COLON] = ACTIONS(4707), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_EQ] = ACTIONS(4707), - [anon_sym_QMARK] = ACTIONS(4707), - [anon_sym_LBRACK] = ACTIONS(4709), - [anon_sym_BSLASH] = ACTIONS(4709), - [anon_sym_CARET] = ACTIONS(4709), - [anon_sym_BQUOTE] = ACTIONS(4707), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_PIPE] = ACTIONS(4707), - [anon_sym_TILDE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_RPAREN] = ACTIONS(4707), - [sym__newline_token] = ACTIONS(4707), - [aux_sym_insert_token1] = ACTIONS(4707), - [aux_sym_delete_token1] = ACTIONS(4707), - [aux_sym_highlight_token1] = ACTIONS(4707), - [aux_sym_edit_comment_token1] = ACTIONS(4707), - [anon_sym_CARET_LBRACK] = ACTIONS(4707), - [anon_sym_LBRACK_CARET] = ACTIONS(4707), - [sym_uri_autolink] = ACTIONS(4707), - [sym_email_autolink] = ACTIONS(4707), - [sym__whitespace_ge_2] = ACTIONS(4707), - [aux_sym__whitespace_token1] = ACTIONS(4709), - [sym__word_no_digit] = ACTIONS(4707), - [sym__digits] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4709), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4707), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4707), - [sym__code_span_start] = ACTIONS(4707), - [sym__emphasis_open_star] = ACTIONS(4707), - [sym__emphasis_open_underscore] = ACTIONS(4707), - [sym__emphasis_close_star] = ACTIONS(4707), - [sym__strikeout_open] = ACTIONS(4707), - [sym__latex_span_start] = ACTIONS(4707), - [sym__single_quote_open] = ACTIONS(4707), - [sym__double_quote_open] = ACTIONS(4707), - [sym__superscript_open] = ACTIONS(4707), - [sym__subscript_open] = ACTIONS(4707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4707), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4707), - [sym__cite_author_in_text] = ACTIONS(4707), - [sym__cite_suppress_author] = ACTIONS(4707), - [sym__shortcode_open_escaped] = ACTIONS(4707), - [sym__shortcode_open] = ACTIONS(4707), - [sym__unclosed_span] = ACTIONS(4707), - [sym__strong_emphasis_open_star] = ACTIONS(4707), - [sym__strong_emphasis_open_underscore] = ACTIONS(4707), - }, [STATE(1258)] = { [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), @@ -132870,73 +132869,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_underscore] = ACTIONS(4221), }, [STATE(1259)] = { - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__emphasis_close_star] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), + [sym__backslash_escape] = ACTIONS(4715), + [sym_entity_reference] = ACTIONS(4715), + [sym_numeric_character_reference] = ACTIONS(4715), + [anon_sym_LT] = ACTIONS(4717), + [anon_sym_GT] = ACTIONS(4715), + [anon_sym_BANG] = ACTIONS(4715), + [anon_sym_DQUOTE] = ACTIONS(4715), + [anon_sym_POUND] = ACTIONS(4715), + [anon_sym_DOLLAR] = ACTIONS(4715), + [anon_sym_PERCENT] = ACTIONS(4715), + [anon_sym_AMP] = ACTIONS(4717), + [anon_sym_SQUOTE] = ACTIONS(4715), + [anon_sym_PLUS] = ACTIONS(4715), + [anon_sym_COMMA] = ACTIONS(4715), + [anon_sym_DASH] = ACTIONS(4717), + [anon_sym_DOT] = ACTIONS(4717), + [anon_sym_SLASH] = ACTIONS(4715), + [anon_sym_COLON] = ACTIONS(4715), + [anon_sym_SEMI] = ACTIONS(4715), + [anon_sym_EQ] = ACTIONS(4715), + [anon_sym_QMARK] = ACTIONS(4715), + [anon_sym_LBRACK] = ACTIONS(4717), + [anon_sym_BSLASH] = ACTIONS(4717), + [anon_sym_CARET] = ACTIONS(4717), + [anon_sym_BQUOTE] = ACTIONS(4715), + [anon_sym_LBRACE] = ACTIONS(4715), + [anon_sym_PIPE] = ACTIONS(4715), + [anon_sym_TILDE] = ACTIONS(4715), + [anon_sym_LPAREN] = ACTIONS(4715), + [anon_sym_RPAREN] = ACTIONS(4715), + [sym__newline_token] = ACTIONS(4715), + [aux_sym_insert_token1] = ACTIONS(4715), + [aux_sym_delete_token1] = ACTIONS(4715), + [aux_sym_highlight_token1] = ACTIONS(4715), + [aux_sym_edit_comment_token1] = ACTIONS(4715), + [anon_sym_CARET_LBRACK] = ACTIONS(4715), + [anon_sym_LBRACK_CARET] = ACTIONS(4715), + [sym_uri_autolink] = ACTIONS(4715), + [sym_email_autolink] = ACTIONS(4715), + [sym__whitespace_ge_2] = ACTIONS(4715), + [aux_sym__whitespace_token1] = ACTIONS(4717), + [sym__word_no_digit] = ACTIONS(4715), + [sym__digits] = ACTIONS(4715), + [anon_sym_DASH_DASH] = ACTIONS(4717), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4715), + [sym__code_span_start] = ACTIONS(4715), + [sym__emphasis_open_star] = ACTIONS(4715), + [sym__emphasis_open_underscore] = ACTIONS(4715), + [sym__emphasis_close_star] = ACTIONS(4715), + [sym__strikeout_open] = ACTIONS(4715), + [sym__latex_span_start] = ACTIONS(4715), + [sym__single_quote_open] = ACTIONS(4715), + [sym__double_quote_open] = ACTIONS(4715), + [sym__superscript_open] = ACTIONS(4715), + [sym__subscript_open] = ACTIONS(4715), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4715), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4715), + [sym__cite_author_in_text] = ACTIONS(4715), + [sym__cite_suppress_author] = ACTIONS(4715), + [sym__shortcode_open_escaped] = ACTIONS(4715), + [sym__shortcode_open] = ACTIONS(4715), + [sym__unclosed_span] = ACTIONS(4715), + [sym__strong_emphasis_open_star] = ACTIONS(4715), + [sym__strong_emphasis_open_underscore] = ACTIONS(4715), }, [STATE(1260)] = { + [sym__backslash_escape] = ACTIONS(4551), + [sym_entity_reference] = ACTIONS(4551), + [sym_numeric_character_reference] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_POUND] = ACTIONS(4551), + [anon_sym_DOLLAR] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4553), + [anon_sym_SQUOTE] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_BSLASH] = ACTIONS(4553), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_BQUOTE] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_RPAREN] = ACTIONS(4551), + [sym__newline_token] = ACTIONS(4551), + [aux_sym_insert_token1] = ACTIONS(4551), + [aux_sym_delete_token1] = ACTIONS(4551), + [aux_sym_highlight_token1] = ACTIONS(4551), + [aux_sym_edit_comment_token1] = ACTIONS(4551), + [anon_sym_CARET_LBRACK] = ACTIONS(4551), + [anon_sym_LBRACK_CARET] = ACTIONS(4551), + [sym_uri_autolink] = ACTIONS(4551), + [sym_email_autolink] = ACTIONS(4551), + [sym__whitespace_ge_2] = ACTIONS(4551), + [aux_sym__whitespace_token1] = ACTIONS(4553), + [sym__word_no_digit] = ACTIONS(4551), + [sym__digits] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), + [sym__code_span_start] = ACTIONS(4551), + [sym__emphasis_open_star] = ACTIONS(4551), + [sym__emphasis_open_underscore] = ACTIONS(4551), + [sym__strikeout_open] = ACTIONS(4551), + [sym__latex_span_start] = ACTIONS(4551), + [sym__single_quote_open] = ACTIONS(4551), + [sym__double_quote_open] = ACTIONS(4551), + [sym__superscript_open] = ACTIONS(4551), + [sym__subscript_open] = ACTIONS(4551), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), + [sym__cite_author_in_text] = ACTIONS(4551), + [sym__cite_suppress_author] = ACTIONS(4551), + [sym__shortcode_open_escaped] = ACTIONS(4551), + [sym__shortcode_open] = ACTIONS(4551), + [sym__unclosed_span] = ACTIONS(4551), + [sym__strong_emphasis_open_star] = ACTIONS(4551), + [sym__strong_emphasis_open_underscore] = ACTIONS(4551), + [sym__strong_emphasis_close_underscore] = ACTIONS(4551), + }, + [STATE(1261)] = { [sym__backslash_escape] = ACTIONS(4555), [sym_entity_reference] = ACTIONS(4555), [sym_numeric_character_reference] = ACTIONS(4555), @@ -133003,7 +133069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4555), [sym__strong_emphasis_close_underscore] = ACTIONS(4555), }, - [STATE(1261)] = { + [STATE(1262)] = { [sym__backslash_escape] = ACTIONS(4559), [sym_entity_reference] = ACTIONS(4559), [sym_numeric_character_reference] = ACTIONS(4559), @@ -133070,7 +133136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4559), [sym__strong_emphasis_close_underscore] = ACTIONS(4559), }, - [STATE(1262)] = { + [STATE(1263)] = { [sym__backslash_escape] = ACTIONS(4563), [sym_entity_reference] = ACTIONS(4563), [sym_numeric_character_reference] = ACTIONS(4563), @@ -133137,73 +133203,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4563), [sym__strong_emphasis_close_underscore] = ACTIONS(4563), }, - [STATE(1263)] = { - [sym__backslash_escape] = ACTIONS(4567), - [sym_entity_reference] = ACTIONS(4567), - [sym_numeric_character_reference] = ACTIONS(4567), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4567), - [anon_sym_BANG] = ACTIONS(4567), - [anon_sym_DQUOTE] = ACTIONS(4567), - [anon_sym_POUND] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_COLON] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_QMARK] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4569), - [anon_sym_BSLASH] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym_BQUOTE] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_PIPE] = ACTIONS(4567), - [anon_sym_TILDE] = ACTIONS(4567), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [sym__newline_token] = ACTIONS(4567), - [aux_sym_insert_token1] = ACTIONS(4567), - [aux_sym_delete_token1] = ACTIONS(4567), - [aux_sym_highlight_token1] = ACTIONS(4567), - [aux_sym_edit_comment_token1] = ACTIONS(4567), - [anon_sym_CARET_LBRACK] = ACTIONS(4567), - [anon_sym_LBRACK_CARET] = ACTIONS(4567), - [sym_uri_autolink] = ACTIONS(4567), - [sym_email_autolink] = ACTIONS(4567), - [sym__whitespace_ge_2] = ACTIONS(4567), - [aux_sym__whitespace_token1] = ACTIONS(4569), - [sym__word_no_digit] = ACTIONS(4567), - [sym__digits] = ACTIONS(4567), - [anon_sym_DASH_DASH] = ACTIONS(4569), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), - [sym__code_span_start] = ACTIONS(4567), - [sym__emphasis_open_star] = ACTIONS(4567), - [sym__emphasis_open_underscore] = ACTIONS(4567), - [sym__strikeout_open] = ACTIONS(4567), - [sym__latex_span_start] = ACTIONS(4567), - [sym__single_quote_open] = ACTIONS(4567), - [sym__double_quote_open] = ACTIONS(4567), - [sym__superscript_open] = ACTIONS(4567), - [sym__subscript_open] = ACTIONS(4567), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), - [sym__cite_author_in_text] = ACTIONS(4567), - [sym__cite_suppress_author] = ACTIONS(4567), - [sym__shortcode_open_escaped] = ACTIONS(4567), - [sym__shortcode_open] = ACTIONS(4567), - [sym__unclosed_span] = ACTIONS(4567), - [sym__strong_emphasis_open_star] = ACTIONS(4567), - [sym__strong_emphasis_open_underscore] = ACTIONS(4567), - [sym__strong_emphasis_close_underscore] = ACTIONS(4567), - }, [STATE(1264)] = { [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), @@ -133272,73 +133271,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_underscore] = ACTIONS(4225), }, [STATE(1265)] = { - [ts_builtin_sym_end] = ACTIONS(4647), - [sym__backslash_escape] = ACTIONS(4647), - [sym_entity_reference] = ACTIONS(4647), - [sym_numeric_character_reference] = ACTIONS(4647), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4647), - [anon_sym_BANG] = ACTIONS(4647), - [anon_sym_DQUOTE] = ACTIONS(4647), - [anon_sym_POUND] = ACTIONS(4647), - [anon_sym_DOLLAR] = ACTIONS(4647), - [anon_sym_PERCENT] = ACTIONS(4647), - [anon_sym_AMP] = ACTIONS(4649), - [anon_sym_SQUOTE] = ACTIONS(4647), - [anon_sym_PLUS] = ACTIONS(4647), - [anon_sym_COMMA] = ACTIONS(4647), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_SLASH] = ACTIONS(4647), - [anon_sym_COLON] = ACTIONS(4647), - [anon_sym_SEMI] = ACTIONS(4647), - [anon_sym_EQ] = ACTIONS(4647), - [anon_sym_QMARK] = ACTIONS(4647), - [anon_sym_LBRACK] = ACTIONS(4649), - [anon_sym_BSLASH] = ACTIONS(4649), - [anon_sym_CARET] = ACTIONS(4649), - [anon_sym_BQUOTE] = ACTIONS(4647), - [anon_sym_LBRACE] = ACTIONS(4647), - [anon_sym_PIPE] = ACTIONS(4647), - [anon_sym_TILDE] = ACTIONS(4647), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_RPAREN] = ACTIONS(4647), - [sym__newline_token] = ACTIONS(4647), - [aux_sym_insert_token1] = ACTIONS(4647), - [aux_sym_delete_token1] = ACTIONS(4647), - [aux_sym_highlight_token1] = ACTIONS(4647), - [aux_sym_edit_comment_token1] = ACTIONS(4647), - [anon_sym_CARET_LBRACK] = ACTIONS(4647), - [anon_sym_LBRACK_CARET] = ACTIONS(4647), - [sym_uri_autolink] = ACTIONS(4647), - [sym_email_autolink] = ACTIONS(4647), - [sym__whitespace_ge_2] = ACTIONS(4647), - [aux_sym__whitespace_token1] = ACTIONS(4649), - [sym__word_no_digit] = ACTIONS(4647), - [sym__digits] = ACTIONS(4647), - [anon_sym_DASH_DASH] = ACTIONS(4649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4647), - [sym__code_span_start] = ACTIONS(4647), - [sym__emphasis_open_star] = ACTIONS(4647), - [sym__emphasis_open_underscore] = ACTIONS(4647), - [sym__strikeout_open] = ACTIONS(4647), - [sym__latex_span_start] = ACTIONS(4647), - [sym__single_quote_open] = ACTIONS(4647), - [sym__double_quote_open] = ACTIONS(4647), - [sym__superscript_open] = ACTIONS(4647), - [sym__subscript_open] = ACTIONS(4647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4647), - [sym__cite_author_in_text] = ACTIONS(4647), - [sym__cite_suppress_author] = ACTIONS(4647), - [sym__shortcode_open_escaped] = ACTIONS(4647), - [sym__shortcode_open] = ACTIONS(4647), - [sym__unclosed_span] = ACTIONS(4647), - [sym__strong_emphasis_open_star] = ACTIONS(4647), - [sym__strong_emphasis_open_underscore] = ACTIONS(4647), - }, - [STATE(1266)] = { [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -133405,72 +133337,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4229), [sym__strong_emphasis_close_underscore] = ACTIONS(4229), }, + [STATE(1266)] = { + [ts_builtin_sym_end] = ACTIONS(4599), + [sym__backslash_escape] = ACTIONS(4599), + [sym_entity_reference] = ACTIONS(4599), + [sym_numeric_character_reference] = ACTIONS(4599), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_GT] = ACTIONS(4599), + [anon_sym_BANG] = ACTIONS(4599), + [anon_sym_DQUOTE] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4599), + [anon_sym_DOLLAR] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_AMP] = ACTIONS(4601), + [anon_sym_SQUOTE] = ACTIONS(4599), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_COMMA] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(4601), + [anon_sym_BSLASH] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4601), + [anon_sym_BQUOTE] = ACTIONS(4599), + [anon_sym_LBRACE] = ACTIONS(4599), + [anon_sym_PIPE] = ACTIONS(4599), + [anon_sym_TILDE] = ACTIONS(4599), + [anon_sym_LPAREN] = ACTIONS(4599), + [anon_sym_RPAREN] = ACTIONS(4599), + [sym__newline_token] = ACTIONS(4599), + [aux_sym_insert_token1] = ACTIONS(4599), + [aux_sym_delete_token1] = ACTIONS(4599), + [aux_sym_highlight_token1] = ACTIONS(4599), + [aux_sym_edit_comment_token1] = ACTIONS(4599), + [anon_sym_CARET_LBRACK] = ACTIONS(4599), + [anon_sym_LBRACK_CARET] = ACTIONS(4599), + [sym_uri_autolink] = ACTIONS(4599), + [sym_email_autolink] = ACTIONS(4599), + [sym__whitespace_ge_2] = ACTIONS(4599), + [aux_sym__whitespace_token1] = ACTIONS(4601), + [sym__word_no_digit] = ACTIONS(4599), + [sym__digits] = ACTIONS(4599), + [anon_sym_DASH_DASH] = ACTIONS(4601), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4599), + [sym__code_span_start] = ACTIONS(4599), + [sym__emphasis_open_star] = ACTIONS(4599), + [sym__emphasis_open_underscore] = ACTIONS(4599), + [sym__strikeout_open] = ACTIONS(4599), + [sym__latex_span_start] = ACTIONS(4599), + [sym__single_quote_open] = ACTIONS(4599), + [sym__double_quote_open] = ACTIONS(4599), + [sym__superscript_open] = ACTIONS(4599), + [sym__subscript_open] = ACTIONS(4599), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4599), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4599), + [sym__cite_author_in_text] = ACTIONS(4599), + [sym__cite_suppress_author] = ACTIONS(4599), + [sym__shortcode_open_escaped] = ACTIONS(4599), + [sym__shortcode_open] = ACTIONS(4599), + [sym__unclosed_span] = ACTIONS(4599), + [sym__strong_emphasis_open_star] = ACTIONS(4599), + [sym__strong_emphasis_open_underscore] = ACTIONS(4599), + }, [STATE(1267)] = { - [sym__backslash_escape] = ACTIONS(4711), - [sym_entity_reference] = ACTIONS(4711), - [sym_numeric_character_reference] = ACTIONS(4711), - [anon_sym_LT] = ACTIONS(4713), - [anon_sym_GT] = ACTIONS(4711), - [anon_sym_BANG] = ACTIONS(4711), - [anon_sym_DQUOTE] = ACTIONS(4711), - [anon_sym_POUND] = ACTIONS(4711), - [anon_sym_DOLLAR] = ACTIONS(4711), - [anon_sym_PERCENT] = ACTIONS(4711), - [anon_sym_AMP] = ACTIONS(4713), - [anon_sym_SQUOTE] = ACTIONS(4711), - [anon_sym_PLUS] = ACTIONS(4711), - [anon_sym_COMMA] = ACTIONS(4711), - [anon_sym_DASH] = ACTIONS(4713), - [anon_sym_DOT] = ACTIONS(4713), - [anon_sym_SLASH] = ACTIONS(4711), - [anon_sym_COLON] = ACTIONS(4711), - [anon_sym_SEMI] = ACTIONS(4711), - [anon_sym_EQ] = ACTIONS(4711), - [anon_sym_QMARK] = ACTIONS(4711), - [anon_sym_LBRACK] = ACTIONS(4713), - [anon_sym_BSLASH] = ACTIONS(4713), - [anon_sym_CARET] = ACTIONS(4713), - [anon_sym_BQUOTE] = ACTIONS(4711), - [anon_sym_LBRACE] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(4711), - [anon_sym_TILDE] = ACTIONS(4711), - [anon_sym_LPAREN] = ACTIONS(4711), - [anon_sym_RPAREN] = ACTIONS(4711), - [sym__newline_token] = ACTIONS(4711), - [aux_sym_insert_token1] = ACTIONS(4711), - [aux_sym_delete_token1] = ACTIONS(4711), - [aux_sym_highlight_token1] = ACTIONS(4711), - [aux_sym_edit_comment_token1] = ACTIONS(4711), - [anon_sym_CARET_LBRACK] = ACTIONS(4711), - [anon_sym_LBRACK_CARET] = ACTIONS(4711), - [sym_uri_autolink] = ACTIONS(4711), - [sym_email_autolink] = ACTIONS(4711), - [sym__whitespace_ge_2] = ACTIONS(4711), - [aux_sym__whitespace_token1] = ACTIONS(4713), - [sym__word_no_digit] = ACTIONS(4711), - [sym__digits] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4713), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4711), - [sym__code_span_start] = ACTIONS(4711), - [sym__emphasis_open_star] = ACTIONS(4711), - [sym__emphasis_open_underscore] = ACTIONS(4711), - [sym__emphasis_close_star] = ACTIONS(4711), - [sym__strikeout_open] = ACTIONS(4711), - [sym__latex_span_start] = ACTIONS(4711), - [sym__single_quote_open] = ACTIONS(4711), - [sym__double_quote_open] = ACTIONS(4711), - [sym__superscript_open] = ACTIONS(4711), - [sym__subscript_open] = ACTIONS(4711), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4711), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4711), - [sym__cite_author_in_text] = ACTIONS(4711), - [sym__cite_suppress_author] = ACTIONS(4711), - [sym__shortcode_open_escaped] = ACTIONS(4711), - [sym__shortcode_open] = ACTIONS(4711), - [sym__unclosed_span] = ACTIONS(4711), - [sym__strong_emphasis_open_star] = ACTIONS(4711), - [sym__strong_emphasis_open_underscore] = ACTIONS(4711), + [sym__backslash_escape] = ACTIONS(4567), + [sym_entity_reference] = ACTIONS(4567), + [sym_numeric_character_reference] = ACTIONS(4567), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_DQUOTE] = ACTIONS(4567), + [anon_sym_POUND] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_BSLASH] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym_BQUOTE] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(4567), + [anon_sym_TILDE] = ACTIONS(4567), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [sym__newline_token] = ACTIONS(4567), + [aux_sym_insert_token1] = ACTIONS(4567), + [aux_sym_delete_token1] = ACTIONS(4567), + [aux_sym_highlight_token1] = ACTIONS(4567), + [aux_sym_edit_comment_token1] = ACTIONS(4567), + [anon_sym_CARET_LBRACK] = ACTIONS(4567), + [anon_sym_LBRACK_CARET] = ACTIONS(4567), + [sym_uri_autolink] = ACTIONS(4567), + [sym_email_autolink] = ACTIONS(4567), + [sym__whitespace_ge_2] = ACTIONS(4567), + [aux_sym__whitespace_token1] = ACTIONS(4569), + [sym__word_no_digit] = ACTIONS(4567), + [sym__digits] = ACTIONS(4567), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), + [sym__code_span_start] = ACTIONS(4567), + [sym__emphasis_open_star] = ACTIONS(4567), + [sym__emphasis_open_underscore] = ACTIONS(4567), + [sym__strikeout_open] = ACTIONS(4567), + [sym__latex_span_start] = ACTIONS(4567), + [sym__single_quote_open] = ACTIONS(4567), + [sym__double_quote_open] = ACTIONS(4567), + [sym__superscript_open] = ACTIONS(4567), + [sym__subscript_open] = ACTIONS(4567), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), + [sym__cite_author_in_text] = ACTIONS(4567), + [sym__cite_suppress_author] = ACTIONS(4567), + [sym__shortcode_open_escaped] = ACTIONS(4567), + [sym__shortcode_open] = ACTIONS(4567), + [sym__unclosed_span] = ACTIONS(4567), + [sym__strong_emphasis_open_star] = ACTIONS(4567), + [sym__strong_emphasis_open_underscore] = ACTIONS(4567), + [sym__strong_emphasis_close_underscore] = ACTIONS(4567), }, [STATE(1268)] = { [sym__backslash_escape] = ACTIONS(4571), @@ -133540,73 +133539,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_underscore] = ACTIONS(4571), }, [STATE(1269)] = { - [sym__backslash_escape] = ACTIONS(4575), - [sym_entity_reference] = ACTIONS(4575), - [sym_numeric_character_reference] = ACTIONS(4575), - [anon_sym_LT] = ACTIONS(4577), - [anon_sym_GT] = ACTIONS(4575), - [anon_sym_BANG] = ACTIONS(4575), - [anon_sym_DQUOTE] = ACTIONS(4575), - [anon_sym_POUND] = ACTIONS(4575), - [anon_sym_DOLLAR] = ACTIONS(4575), - [anon_sym_PERCENT] = ACTIONS(4575), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_SQUOTE] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4575), - [anon_sym_COMMA] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4577), - [anon_sym_SLASH] = ACTIONS(4575), - [anon_sym_COLON] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4575), - [anon_sym_EQ] = ACTIONS(4575), - [anon_sym_QMARK] = ACTIONS(4575), - [anon_sym_LBRACK] = ACTIONS(4577), - [anon_sym_BSLASH] = ACTIONS(4577), - [anon_sym_CARET] = ACTIONS(4577), - [anon_sym_BQUOTE] = ACTIONS(4575), - [anon_sym_LBRACE] = ACTIONS(4575), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_TILDE] = ACTIONS(4575), - [anon_sym_LPAREN] = ACTIONS(4575), - [anon_sym_RPAREN] = ACTIONS(4575), - [sym__newline_token] = ACTIONS(4575), - [aux_sym_insert_token1] = ACTIONS(4575), - [aux_sym_delete_token1] = ACTIONS(4575), - [aux_sym_highlight_token1] = ACTIONS(4575), - [aux_sym_edit_comment_token1] = ACTIONS(4575), - [anon_sym_CARET_LBRACK] = ACTIONS(4575), - [anon_sym_LBRACK_CARET] = ACTIONS(4575), - [sym_uri_autolink] = ACTIONS(4575), - [sym_email_autolink] = ACTIONS(4575), - [sym__whitespace_ge_2] = ACTIONS(4575), - [aux_sym__whitespace_token1] = ACTIONS(4577), - [sym__word_no_digit] = ACTIONS(4575), - [sym__digits] = ACTIONS(4575), - [anon_sym_DASH_DASH] = ACTIONS(4577), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), - [sym__code_span_start] = ACTIONS(4575), - [sym__emphasis_open_star] = ACTIONS(4575), - [sym__emphasis_open_underscore] = ACTIONS(4575), - [sym__strikeout_open] = ACTIONS(4575), - [sym__latex_span_start] = ACTIONS(4575), - [sym__single_quote_open] = ACTIONS(4575), - [sym__double_quote_open] = ACTIONS(4575), - [sym__superscript_open] = ACTIONS(4575), - [sym__subscript_open] = ACTIONS(4575), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), - [sym__cite_author_in_text] = ACTIONS(4575), - [sym__cite_suppress_author] = ACTIONS(4575), - [sym__shortcode_open_escaped] = ACTIONS(4575), - [sym__shortcode_open] = ACTIONS(4575), - [sym__unclosed_span] = ACTIONS(4575), - [sym__strong_emphasis_open_star] = ACTIONS(4575), - [sym__strong_emphasis_open_underscore] = ACTIONS(4575), - [sym__strong_emphasis_close_underscore] = ACTIONS(4575), - }, - [STATE(1270)] = { [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -133673,74 +133605,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4233), [sym__strong_emphasis_close_underscore] = ACTIONS(4233), }, - [STATE(1271)] = { - [ts_builtin_sym_end] = ACTIONS(4181), - [sym__backslash_escape] = ACTIONS(4181), - [sym_entity_reference] = ACTIONS(4181), - [sym_numeric_character_reference] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4181), - [anon_sym_POUND] = ACTIONS(4181), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_AMP] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_COLON] = ACTIONS(4181), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_QMARK] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_BSLASH] = ACTIONS(4183), - [anon_sym_CARET] = ACTIONS(4183), - [anon_sym_BQUOTE] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4181), - [anon_sym_PIPE] = ACTIONS(4181), - [anon_sym_TILDE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_RPAREN] = ACTIONS(4181), - [sym__newline_token] = ACTIONS(4181), - [aux_sym_insert_token1] = ACTIONS(4181), - [aux_sym_delete_token1] = ACTIONS(4181), - [aux_sym_highlight_token1] = ACTIONS(4181), - [aux_sym_edit_comment_token1] = ACTIONS(4181), - [anon_sym_CARET_LBRACK] = ACTIONS(4181), - [anon_sym_LBRACK_CARET] = ACTIONS(4181), - [sym_uri_autolink] = ACTIONS(4181), - [sym_email_autolink] = ACTIONS(4181), - [sym__whitespace_ge_2] = ACTIONS(4181), - [aux_sym__whitespace_token1] = ACTIONS(4183), - [sym__word_no_digit] = ACTIONS(4181), - [sym__digits] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4183), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4181), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4181), - [sym__code_span_start] = ACTIONS(4181), - [sym__emphasis_open_star] = ACTIONS(4181), - [sym__emphasis_open_underscore] = ACTIONS(4181), - [sym__strikeout_open] = ACTIONS(4181), - [sym__latex_span_start] = ACTIONS(4181), - [sym__single_quote_open] = ACTIONS(4181), - [sym__double_quote_open] = ACTIONS(4181), - [sym__superscript_open] = ACTIONS(4181), - [sym__subscript_open] = ACTIONS(4181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4181), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4181), - [sym__cite_author_in_text] = ACTIONS(4181), - [sym__cite_suppress_author] = ACTIONS(4181), - [sym__shortcode_open_escaped] = ACTIONS(4181), - [sym__shortcode_open] = ACTIONS(4181), - [sym__unclosed_span] = ACTIONS(4181), - [sym__strong_emphasis_open_star] = ACTIONS(4181), - [sym__strong_emphasis_open_underscore] = ACTIONS(4181), + [STATE(1270)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__emphasis_close_star] = ACTIONS(4391), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), }, - [STATE(1272)] = { + [STATE(1271)] = { [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -133807,74 +133739,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4237), [sym__strong_emphasis_close_underscore] = ACTIONS(4237), }, - [STATE(1273)] = { - [sym__backslash_escape] = ACTIONS(4715), - [sym_entity_reference] = ACTIONS(4715), - [sym_numeric_character_reference] = ACTIONS(4715), - [anon_sym_LT] = ACTIONS(4717), - [anon_sym_GT] = ACTIONS(4715), - [anon_sym_BANG] = ACTIONS(4715), - [anon_sym_DQUOTE] = ACTIONS(4715), - [anon_sym_POUND] = ACTIONS(4715), - [anon_sym_DOLLAR] = ACTIONS(4715), - [anon_sym_PERCENT] = ACTIONS(4715), - [anon_sym_AMP] = ACTIONS(4717), - [anon_sym_SQUOTE] = ACTIONS(4715), - [anon_sym_PLUS] = ACTIONS(4715), - [anon_sym_COMMA] = ACTIONS(4715), - [anon_sym_DASH] = ACTIONS(4717), - [anon_sym_DOT] = ACTIONS(4717), - [anon_sym_SLASH] = ACTIONS(4715), - [anon_sym_COLON] = ACTIONS(4715), - [anon_sym_SEMI] = ACTIONS(4715), - [anon_sym_EQ] = ACTIONS(4715), - [anon_sym_QMARK] = ACTIONS(4715), - [anon_sym_LBRACK] = ACTIONS(4717), - [anon_sym_BSLASH] = ACTIONS(4717), - [anon_sym_CARET] = ACTIONS(4717), - [anon_sym_BQUOTE] = ACTIONS(4715), - [anon_sym_LBRACE] = ACTIONS(4715), - [anon_sym_PIPE] = ACTIONS(4715), - [anon_sym_TILDE] = ACTIONS(4715), - [anon_sym_LPAREN] = ACTIONS(4715), - [anon_sym_RPAREN] = ACTIONS(4715), - [sym__newline_token] = ACTIONS(4715), - [aux_sym_insert_token1] = ACTIONS(4715), - [aux_sym_delete_token1] = ACTIONS(4715), - [aux_sym_highlight_token1] = ACTIONS(4715), - [aux_sym_edit_comment_token1] = ACTIONS(4715), - [anon_sym_CARET_LBRACK] = ACTIONS(4715), - [anon_sym_LBRACK_CARET] = ACTIONS(4715), - [sym_uri_autolink] = ACTIONS(4715), - [sym_email_autolink] = ACTIONS(4715), - [sym__whitespace_ge_2] = ACTIONS(4715), - [aux_sym__whitespace_token1] = ACTIONS(4717), - [sym__word_no_digit] = ACTIONS(4715), - [sym__digits] = ACTIONS(4715), - [anon_sym_DASH_DASH] = ACTIONS(4717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4715), - [sym__code_span_start] = ACTIONS(4715), - [sym__emphasis_open_star] = ACTIONS(4715), - [sym__emphasis_open_underscore] = ACTIONS(4715), - [sym__emphasis_close_star] = ACTIONS(4715), - [sym__strikeout_open] = ACTIONS(4715), - [sym__latex_span_start] = ACTIONS(4715), - [sym__single_quote_open] = ACTIONS(4715), - [sym__double_quote_open] = ACTIONS(4715), - [sym__superscript_open] = ACTIONS(4715), - [sym__subscript_open] = ACTIONS(4715), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4715), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4715), - [sym__cite_author_in_text] = ACTIONS(4715), - [sym__cite_suppress_author] = ACTIONS(4715), - [sym__shortcode_open_escaped] = ACTIONS(4715), - [sym__shortcode_open] = ACTIONS(4715), - [sym__unclosed_span] = ACTIONS(4715), - [sym__strong_emphasis_open_star] = ACTIONS(4715), - [sym__strong_emphasis_open_underscore] = ACTIONS(4715), + [STATE(1272)] = { + [ts_builtin_sym_end] = ACTIONS(4647), + [sym__backslash_escape] = ACTIONS(4647), + [sym_entity_reference] = ACTIONS(4647), + [sym_numeric_character_reference] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_POUND] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [anon_sym_PERCENT] = ACTIONS(4647), + [anon_sym_AMP] = ACTIONS(4649), + [anon_sym_SQUOTE] = ACTIONS(4647), + [anon_sym_PLUS] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4647), + [anon_sym_DASH] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4649), + [anon_sym_SLASH] = ACTIONS(4647), + [anon_sym_COLON] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_LBRACK] = ACTIONS(4649), + [anon_sym_BSLASH] = ACTIONS(4649), + [anon_sym_CARET] = ACTIONS(4649), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LBRACE] = ACTIONS(4647), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_TILDE] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4647), + [anon_sym_RPAREN] = ACTIONS(4647), + [sym__newline_token] = ACTIONS(4647), + [aux_sym_insert_token1] = ACTIONS(4647), + [aux_sym_delete_token1] = ACTIONS(4647), + [aux_sym_highlight_token1] = ACTIONS(4647), + [aux_sym_edit_comment_token1] = ACTIONS(4647), + [anon_sym_CARET_LBRACK] = ACTIONS(4647), + [anon_sym_LBRACK_CARET] = ACTIONS(4647), + [sym_uri_autolink] = ACTIONS(4647), + [sym_email_autolink] = ACTIONS(4647), + [sym__whitespace_ge_2] = ACTIONS(4647), + [aux_sym__whitespace_token1] = ACTIONS(4649), + [sym__word_no_digit] = ACTIONS(4647), + [sym__digits] = ACTIONS(4647), + [anon_sym_DASH_DASH] = ACTIONS(4649), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4647), + [sym__code_span_start] = ACTIONS(4647), + [sym__emphasis_open_star] = ACTIONS(4647), + [sym__emphasis_open_underscore] = ACTIONS(4647), + [sym__strikeout_open] = ACTIONS(4647), + [sym__latex_span_start] = ACTIONS(4647), + [sym__single_quote_open] = ACTIONS(4647), + [sym__double_quote_open] = ACTIONS(4647), + [sym__superscript_open] = ACTIONS(4647), + [sym__subscript_open] = ACTIONS(4647), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4647), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4647), + [sym__cite_author_in_text] = ACTIONS(4647), + [sym__cite_suppress_author] = ACTIONS(4647), + [sym__shortcode_open_escaped] = ACTIONS(4647), + [sym__shortcode_open] = ACTIONS(4647), + [sym__unclosed_span] = ACTIONS(4647), + [sym__strong_emphasis_open_star] = ACTIONS(4647), + [sym__strong_emphasis_open_underscore] = ACTIONS(4647), }, - [STATE(1274)] = { + [STATE(1273)] = { [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -133941,6 +133873,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4241), [sym__strong_emphasis_close_underscore] = ACTIONS(4241), }, + [STATE(1274)] = { + [sym__backslash_escape] = ACTIONS(4719), + [sym_entity_reference] = ACTIONS(4719), + [sym_numeric_character_reference] = ACTIONS(4719), + [anon_sym_LT] = ACTIONS(4721), + [anon_sym_GT] = ACTIONS(4719), + [anon_sym_BANG] = ACTIONS(4719), + [anon_sym_DQUOTE] = ACTIONS(4719), + [anon_sym_POUND] = ACTIONS(4719), + [anon_sym_DOLLAR] = ACTIONS(4719), + [anon_sym_PERCENT] = ACTIONS(4719), + [anon_sym_AMP] = ACTIONS(4721), + [anon_sym_SQUOTE] = ACTIONS(4719), + [anon_sym_PLUS] = ACTIONS(4719), + [anon_sym_COMMA] = ACTIONS(4719), + [anon_sym_DASH] = ACTIONS(4721), + [anon_sym_DOT] = ACTIONS(4721), + [anon_sym_SLASH] = ACTIONS(4719), + [anon_sym_COLON] = ACTIONS(4719), + [anon_sym_SEMI] = ACTIONS(4719), + [anon_sym_EQ] = ACTIONS(4719), + [anon_sym_QMARK] = ACTIONS(4719), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_BSLASH] = ACTIONS(4721), + [anon_sym_CARET] = ACTIONS(4721), + [anon_sym_BQUOTE] = ACTIONS(4719), + [anon_sym_LBRACE] = ACTIONS(4719), + [anon_sym_PIPE] = ACTIONS(4719), + [anon_sym_TILDE] = ACTIONS(4719), + [anon_sym_LPAREN] = ACTIONS(4719), + [anon_sym_RPAREN] = ACTIONS(4719), + [sym__newline_token] = ACTIONS(4719), + [aux_sym_insert_token1] = ACTIONS(4719), + [aux_sym_delete_token1] = ACTIONS(4719), + [aux_sym_highlight_token1] = ACTIONS(4719), + [aux_sym_edit_comment_token1] = ACTIONS(4719), + [anon_sym_CARET_LBRACK] = ACTIONS(4719), + [anon_sym_LBRACK_CARET] = ACTIONS(4719), + [sym_uri_autolink] = ACTIONS(4719), + [sym_email_autolink] = ACTIONS(4719), + [sym__whitespace_ge_2] = ACTIONS(4719), + [aux_sym__whitespace_token1] = ACTIONS(4721), + [sym__word_no_digit] = ACTIONS(4719), + [sym__digits] = ACTIONS(4719), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4719), + [sym__code_span_start] = ACTIONS(4719), + [sym__emphasis_open_star] = ACTIONS(4719), + [sym__emphasis_open_underscore] = ACTIONS(4719), + [sym__emphasis_close_star] = ACTIONS(4719), + [sym__strikeout_open] = ACTIONS(4719), + [sym__latex_span_start] = ACTIONS(4719), + [sym__single_quote_open] = ACTIONS(4719), + [sym__double_quote_open] = ACTIONS(4719), + [sym__superscript_open] = ACTIONS(4719), + [sym__subscript_open] = ACTIONS(4719), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4719), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4719), + [sym__cite_author_in_text] = ACTIONS(4719), + [sym__cite_suppress_author] = ACTIONS(4719), + [sym__shortcode_open_escaped] = ACTIONS(4719), + [sym__shortcode_open] = ACTIONS(4719), + [sym__unclosed_span] = ACTIONS(4719), + [sym__strong_emphasis_open_star] = ACTIONS(4719), + [sym__strong_emphasis_open_underscore] = ACTIONS(4719), + }, [STATE(1275)] = { [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), @@ -134009,71 +134008,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_underscore] = ACTIONS(4245), }, [STATE(1276)] = { - [sym__backslash_escape] = ACTIONS(4719), - [sym_entity_reference] = ACTIONS(4719), - [sym_numeric_character_reference] = ACTIONS(4719), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(4719), - [anon_sym_DQUOTE] = ACTIONS(4719), - [anon_sym_POUND] = ACTIONS(4719), - [anon_sym_DOLLAR] = ACTIONS(4719), - [anon_sym_PERCENT] = ACTIONS(4719), - [anon_sym_AMP] = ACTIONS(4721), - [anon_sym_SQUOTE] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_SLASH] = ACTIONS(4719), - [anon_sym_COLON] = ACTIONS(4719), - [anon_sym_SEMI] = ACTIONS(4719), - [anon_sym_EQ] = ACTIONS(4719), - [anon_sym_QMARK] = ACTIONS(4719), - [anon_sym_LBRACK] = ACTIONS(4721), - [anon_sym_BSLASH] = ACTIONS(4721), - [anon_sym_CARET] = ACTIONS(4721), - [anon_sym_BQUOTE] = ACTIONS(4719), - [anon_sym_LBRACE] = ACTIONS(4719), - [anon_sym_PIPE] = ACTIONS(4719), - [anon_sym_TILDE] = ACTIONS(4719), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_RPAREN] = ACTIONS(4719), - [sym__newline_token] = ACTIONS(4719), - [aux_sym_insert_token1] = ACTIONS(4719), - [aux_sym_delete_token1] = ACTIONS(4719), - [aux_sym_highlight_token1] = ACTIONS(4719), - [aux_sym_edit_comment_token1] = ACTIONS(4719), - [anon_sym_CARET_LBRACK] = ACTIONS(4719), - [anon_sym_LBRACK_CARET] = ACTIONS(4719), - [sym_uri_autolink] = ACTIONS(4719), - [sym_email_autolink] = ACTIONS(4719), - [sym__whitespace_ge_2] = ACTIONS(4719), - [aux_sym__whitespace_token1] = ACTIONS(4721), - [sym__word_no_digit] = ACTIONS(4719), - [sym__digits] = ACTIONS(4719), - [anon_sym_DASH_DASH] = ACTIONS(4721), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4719), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4719), - [sym__code_span_start] = ACTIONS(4719), - [sym__emphasis_open_star] = ACTIONS(4719), - [sym__emphasis_open_underscore] = ACTIONS(4719), - [sym__emphasis_close_star] = ACTIONS(4719), - [sym__strikeout_open] = ACTIONS(4719), - [sym__latex_span_start] = ACTIONS(4719), - [sym__single_quote_open] = ACTIONS(4719), - [sym__double_quote_open] = ACTIONS(4719), - [sym__superscript_open] = ACTIONS(4719), - [sym__subscript_open] = ACTIONS(4719), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4719), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4719), - [sym__cite_author_in_text] = ACTIONS(4719), - [sym__cite_suppress_author] = ACTIONS(4719), - [sym__shortcode_open_escaped] = ACTIONS(4719), - [sym__shortcode_open] = ACTIONS(4719), - [sym__unclosed_span] = ACTIONS(4719), - [sym__strong_emphasis_open_star] = ACTIONS(4719), - [sym__strong_emphasis_open_underscore] = ACTIONS(4719), + [sym__backslash_escape] = ACTIONS(4575), + [sym_entity_reference] = ACTIONS(4575), + [sym_numeric_character_reference] = ACTIONS(4575), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4575), + [anon_sym_DQUOTE] = ACTIONS(4575), + [anon_sym_POUND] = ACTIONS(4575), + [anon_sym_DOLLAR] = ACTIONS(4575), + [anon_sym_PERCENT] = ACTIONS(4575), + [anon_sym_AMP] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4575), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_EQ] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4577), + [anon_sym_BSLASH] = ACTIONS(4577), + [anon_sym_CARET] = ACTIONS(4577), + [anon_sym_BQUOTE] = ACTIONS(4575), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_PIPE] = ACTIONS(4575), + [anon_sym_TILDE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_RPAREN] = ACTIONS(4575), + [sym__newline_token] = ACTIONS(4575), + [aux_sym_insert_token1] = ACTIONS(4575), + [aux_sym_delete_token1] = ACTIONS(4575), + [aux_sym_highlight_token1] = ACTIONS(4575), + [aux_sym_edit_comment_token1] = ACTIONS(4575), + [anon_sym_CARET_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_CARET] = ACTIONS(4575), + [sym_uri_autolink] = ACTIONS(4575), + [sym_email_autolink] = ACTIONS(4575), + [sym__whitespace_ge_2] = ACTIONS(4575), + [aux_sym__whitespace_token1] = ACTIONS(4577), + [sym__word_no_digit] = ACTIONS(4575), + [sym__digits] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4577), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), + [sym__code_span_start] = ACTIONS(4575), + [sym__emphasis_open_star] = ACTIONS(4575), + [sym__emphasis_open_underscore] = ACTIONS(4575), + [sym__strikeout_open] = ACTIONS(4575), + [sym__latex_span_start] = ACTIONS(4575), + [sym__single_quote_open] = ACTIONS(4575), + [sym__double_quote_open] = ACTIONS(4575), + [sym__superscript_open] = ACTIONS(4575), + [sym__subscript_open] = ACTIONS(4575), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), + [sym__cite_author_in_text] = ACTIONS(4575), + [sym__cite_suppress_author] = ACTIONS(4575), + [sym__shortcode_open_escaped] = ACTIONS(4575), + [sym__shortcode_open] = ACTIONS(4575), + [sym__unclosed_span] = ACTIONS(4575), + [sym__strong_emphasis_open_star] = ACTIONS(4575), + [sym__strong_emphasis_open_underscore] = ACTIONS(4575), + [sym__strong_emphasis_close_underscore] = ACTIONS(4575), }, [STATE(1277)] = { [sym__backslash_escape] = ACTIONS(4579), @@ -134210,274 +134209,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_underscore] = ACTIONS(4583), }, [STATE(1279)] = { - [sym__backslash_escape] = ACTIONS(4587), - [sym_entity_reference] = ACTIONS(4587), - [sym_numeric_character_reference] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4589), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_DQUOTE] = ACTIONS(4587), - [anon_sym_POUND] = ACTIONS(4587), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_AMP] = ACTIONS(4589), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_COMMA] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_QMARK] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_BSLASH] = ACTIONS(4589), - [anon_sym_CARET] = ACTIONS(4589), - [anon_sym_BQUOTE] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_TILDE] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4587), - [anon_sym_RPAREN] = ACTIONS(4587), - [sym__newline_token] = ACTIONS(4587), - [aux_sym_insert_token1] = ACTIONS(4587), - [aux_sym_delete_token1] = ACTIONS(4587), - [aux_sym_highlight_token1] = ACTIONS(4587), - [aux_sym_edit_comment_token1] = ACTIONS(4587), - [anon_sym_CARET_LBRACK] = ACTIONS(4587), - [anon_sym_LBRACK_CARET] = ACTIONS(4587), - [sym_uri_autolink] = ACTIONS(4587), - [sym_email_autolink] = ACTIONS(4587), - [sym__whitespace_ge_2] = ACTIONS(4587), - [aux_sym__whitespace_token1] = ACTIONS(4589), - [sym__word_no_digit] = ACTIONS(4587), - [sym__digits] = ACTIONS(4587), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), - [sym__code_span_start] = ACTIONS(4587), - [sym__emphasis_open_star] = ACTIONS(4587), - [sym__emphasis_open_underscore] = ACTIONS(4587), - [sym__strikeout_open] = ACTIONS(4587), - [sym__latex_span_start] = ACTIONS(4587), - [sym__single_quote_open] = ACTIONS(4587), - [sym__double_quote_open] = ACTIONS(4587), - [sym__superscript_open] = ACTIONS(4587), - [sym__subscript_open] = ACTIONS(4587), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), - [sym__cite_author_in_text] = ACTIONS(4587), - [sym__cite_suppress_author] = ACTIONS(4587), - [sym__shortcode_open_escaped] = ACTIONS(4587), - [sym__shortcode_open] = ACTIONS(4587), - [sym__unclosed_span] = ACTIONS(4587), - [sym__strong_emphasis_open_star] = ACTIONS(4587), - [sym__strong_emphasis_open_underscore] = ACTIONS(4587), - [sym__strong_emphasis_close_underscore] = ACTIONS(4587), - }, - [STATE(1280)] = { - [ts_builtin_sym_end] = ACTIONS(4603), - [sym__backslash_escape] = ACTIONS(4603), - [sym_entity_reference] = ACTIONS(4603), - [sym_numeric_character_reference] = ACTIONS(4603), - [anon_sym_LT] = ACTIONS(4605), - [anon_sym_GT] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(4603), - [anon_sym_DQUOTE] = ACTIONS(4603), - [anon_sym_POUND] = ACTIONS(4603), - [anon_sym_DOLLAR] = ACTIONS(4603), - [anon_sym_PERCENT] = ACTIONS(4603), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_SQUOTE] = ACTIONS(4603), - [anon_sym_PLUS] = ACTIONS(4603), - [anon_sym_COMMA] = ACTIONS(4603), - [anon_sym_DASH] = ACTIONS(4605), - [anon_sym_DOT] = ACTIONS(4605), - [anon_sym_SLASH] = ACTIONS(4603), - [anon_sym_COLON] = ACTIONS(4603), - [anon_sym_SEMI] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(4603), - [anon_sym_QMARK] = ACTIONS(4603), - [anon_sym_LBRACK] = ACTIONS(4605), - [anon_sym_BSLASH] = ACTIONS(4605), - [anon_sym_CARET] = ACTIONS(4605), - [anon_sym_BQUOTE] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(4603), - [anon_sym_PIPE] = ACTIONS(4603), - [anon_sym_TILDE] = ACTIONS(4603), - [anon_sym_LPAREN] = ACTIONS(4603), - [anon_sym_RPAREN] = ACTIONS(4603), - [sym__newline_token] = ACTIONS(4603), - [aux_sym_insert_token1] = ACTIONS(4603), - [aux_sym_delete_token1] = ACTIONS(4603), - [aux_sym_highlight_token1] = ACTIONS(4603), - [aux_sym_edit_comment_token1] = ACTIONS(4603), - [anon_sym_CARET_LBRACK] = ACTIONS(4603), - [anon_sym_LBRACK_CARET] = ACTIONS(4603), - [sym_uri_autolink] = ACTIONS(4603), - [sym_email_autolink] = ACTIONS(4603), - [sym__whitespace_ge_2] = ACTIONS(4603), - [aux_sym__whitespace_token1] = ACTIONS(4605), - [sym__word_no_digit] = ACTIONS(4603), - [sym__digits] = ACTIONS(4603), - [anon_sym_DASH_DASH] = ACTIONS(4605), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4603), - [sym__code_span_start] = ACTIONS(4603), - [sym__emphasis_open_star] = ACTIONS(4603), - [sym__emphasis_open_underscore] = ACTIONS(4603), - [sym__strikeout_open] = ACTIONS(4603), - [sym__latex_span_start] = ACTIONS(4603), - [sym__single_quote_open] = ACTIONS(4603), - [sym__double_quote_open] = ACTIONS(4603), - [sym__superscript_open] = ACTIONS(4603), - [sym__subscript_open] = ACTIONS(4603), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4603), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4603), - [sym__cite_author_in_text] = ACTIONS(4603), - [sym__cite_suppress_author] = ACTIONS(4603), - [sym__shortcode_open_escaped] = ACTIONS(4603), - [sym__shortcode_open] = ACTIONS(4603), - [sym__unclosed_span] = ACTIONS(4603), - [sym__strong_emphasis_open_star] = ACTIONS(4603), - [sym__strong_emphasis_open_underscore] = ACTIONS(4603), - }, - [STATE(1281)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__emphasis_close_star] = ACTIONS(4413), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), - }, - [STATE(1282)] = { - [ts_builtin_sym_end] = ACTIONS(4651), - [sym__backslash_escape] = ACTIONS(4651), - [sym_entity_reference] = ACTIONS(4651), - [sym_numeric_character_reference] = ACTIONS(4651), - [anon_sym_LT] = ACTIONS(4653), - [anon_sym_GT] = ACTIONS(4651), - [anon_sym_BANG] = ACTIONS(4651), - [anon_sym_DQUOTE] = ACTIONS(4651), - [anon_sym_POUND] = ACTIONS(4651), - [anon_sym_DOLLAR] = ACTIONS(4651), - [anon_sym_PERCENT] = ACTIONS(4651), - [anon_sym_AMP] = ACTIONS(4653), - [anon_sym_SQUOTE] = ACTIONS(4651), - [anon_sym_PLUS] = ACTIONS(4651), - [anon_sym_COMMA] = ACTIONS(4651), - [anon_sym_DASH] = ACTIONS(4653), - [anon_sym_DOT] = ACTIONS(4653), - [anon_sym_SLASH] = ACTIONS(4651), - [anon_sym_COLON] = ACTIONS(4651), - [anon_sym_SEMI] = ACTIONS(4651), - [anon_sym_EQ] = ACTIONS(4651), - [anon_sym_QMARK] = ACTIONS(4651), - [anon_sym_LBRACK] = ACTIONS(4653), - [anon_sym_BSLASH] = ACTIONS(4653), - [anon_sym_CARET] = ACTIONS(4653), - [anon_sym_BQUOTE] = ACTIONS(4651), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4651), - [anon_sym_TILDE] = ACTIONS(4651), - [anon_sym_LPAREN] = ACTIONS(4651), - [anon_sym_RPAREN] = ACTIONS(4651), - [sym__newline_token] = ACTIONS(4651), - [aux_sym_insert_token1] = ACTIONS(4651), - [aux_sym_delete_token1] = ACTIONS(4651), - [aux_sym_highlight_token1] = ACTIONS(4651), - [aux_sym_edit_comment_token1] = ACTIONS(4651), - [anon_sym_CARET_LBRACK] = ACTIONS(4651), - [anon_sym_LBRACK_CARET] = ACTIONS(4651), - [sym_uri_autolink] = ACTIONS(4651), - [sym_email_autolink] = ACTIONS(4651), - [sym__whitespace_ge_2] = ACTIONS(4651), - [aux_sym__whitespace_token1] = ACTIONS(4653), - [sym__word_no_digit] = ACTIONS(4651), - [sym__digits] = ACTIONS(4651), - [anon_sym_DASH_DASH] = ACTIONS(4653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4651), - [sym__code_span_start] = ACTIONS(4651), - [sym__emphasis_open_star] = ACTIONS(4651), - [sym__emphasis_open_underscore] = ACTIONS(4651), - [sym__strikeout_open] = ACTIONS(4651), - [sym__latex_span_start] = ACTIONS(4651), - [sym__single_quote_open] = ACTIONS(4651), - [sym__double_quote_open] = ACTIONS(4651), - [sym__superscript_open] = ACTIONS(4651), - [sym__subscript_open] = ACTIONS(4651), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4651), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4651), - [sym__cite_author_in_text] = ACTIONS(4651), - [sym__cite_suppress_author] = ACTIONS(4651), - [sym__shortcode_open_escaped] = ACTIONS(4651), - [sym__shortcode_open] = ACTIONS(4651), - [sym__unclosed_span] = ACTIONS(4651), - [sym__strong_emphasis_open_star] = ACTIONS(4651), - [sym__strong_emphasis_open_underscore] = ACTIONS(4651), - }, - [STATE(1283)] = { [sym__backslash_escape] = ACTIONS(4723), [sym_entity_reference] = ACTIONS(4723), [sym_numeric_character_reference] = ACTIONS(4723), @@ -134544,208 +134275,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4723), [sym__strong_emphasis_open_underscore] = ACTIONS(4723), }, - [STATE(1284)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_RBRACK] = ACTIONS(4335), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(1285)] = { - [sym__backslash_escape] = ACTIONS(4591), - [sym_entity_reference] = ACTIONS(4591), - [sym_numeric_character_reference] = ACTIONS(4591), - [anon_sym_LT] = ACTIONS(4593), - [anon_sym_GT] = ACTIONS(4591), - [anon_sym_BANG] = ACTIONS(4591), - [anon_sym_DQUOTE] = ACTIONS(4591), - [anon_sym_POUND] = ACTIONS(4591), - [anon_sym_DOLLAR] = ACTIONS(4591), - [anon_sym_PERCENT] = ACTIONS(4591), - [anon_sym_AMP] = ACTIONS(4593), - [anon_sym_SQUOTE] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_COMMA] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4593), - [anon_sym_SLASH] = ACTIONS(4591), - [anon_sym_COLON] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4591), - [anon_sym_EQ] = ACTIONS(4591), - [anon_sym_QMARK] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_BSLASH] = ACTIONS(4593), - [anon_sym_RBRACK] = ACTIONS(4591), - [anon_sym_CARET] = ACTIONS(4593), - [anon_sym_BQUOTE] = ACTIONS(4591), - [anon_sym_LBRACE] = ACTIONS(4591), - [anon_sym_PIPE] = ACTIONS(4591), - [anon_sym_TILDE] = ACTIONS(4591), - [anon_sym_LPAREN] = ACTIONS(4591), - [anon_sym_RPAREN] = ACTIONS(4591), - [sym__newline_token] = ACTIONS(4591), - [aux_sym_insert_token1] = ACTIONS(4591), - [aux_sym_delete_token1] = ACTIONS(4591), - [aux_sym_highlight_token1] = ACTIONS(4591), - [aux_sym_edit_comment_token1] = ACTIONS(4591), - [anon_sym_CARET_LBRACK] = ACTIONS(4591), - [anon_sym_LBRACK_CARET] = ACTIONS(4591), - [sym_uri_autolink] = ACTIONS(4591), - [sym_email_autolink] = ACTIONS(4591), - [sym__whitespace_ge_2] = ACTIONS(4591), - [aux_sym__whitespace_token1] = ACTIONS(4593), - [sym__word_no_digit] = ACTIONS(4591), - [sym__digits] = ACTIONS(4591), - [anon_sym_DASH_DASH] = ACTIONS(4593), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4591), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), - [sym__code_span_start] = ACTIONS(4591), - [sym__emphasis_open_star] = ACTIONS(4591), - [sym__emphasis_open_underscore] = ACTIONS(4591), - [sym__strikeout_open] = ACTIONS(4591), - [sym__latex_span_start] = ACTIONS(4591), - [sym__single_quote_open] = ACTIONS(4591), - [sym__double_quote_open] = ACTIONS(4591), - [sym__superscript_open] = ACTIONS(4591), - [sym__subscript_open] = ACTIONS(4591), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4591), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4591), - [sym__cite_author_in_text] = ACTIONS(4591), - [sym__cite_suppress_author] = ACTIONS(4591), - [sym__shortcode_open_escaped] = ACTIONS(4591), - [sym__shortcode_open] = ACTIONS(4591), - [sym__unclosed_span] = ACTIONS(4591), - [sym__strong_emphasis_open_star] = ACTIONS(4591), - [sym__strong_emphasis_open_underscore] = ACTIONS(4591), - }, - [STATE(1286)] = { - [sym__backslash_escape] = ACTIONS(4595), - [sym_entity_reference] = ACTIONS(4595), - [sym_numeric_character_reference] = ACTIONS(4595), - [anon_sym_LT] = ACTIONS(4597), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_DQUOTE] = ACTIONS(4595), - [anon_sym_POUND] = ACTIONS(4595), - [anon_sym_DOLLAR] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4597), - [anon_sym_SQUOTE] = ACTIONS(4595), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_COMMA] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4597), - [anon_sym_DOT] = ACTIONS(4597), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_COLON] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_QMARK] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_BSLASH] = ACTIONS(4597), - [anon_sym_RBRACK] = ACTIONS(4595), - [anon_sym_CARET] = ACTIONS(4597), - [anon_sym_BQUOTE] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(4595), - [anon_sym_PIPE] = ACTIONS(4595), - [anon_sym_TILDE] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(4595), - [anon_sym_RPAREN] = ACTIONS(4595), - [sym__newline_token] = ACTIONS(4595), - [aux_sym_insert_token1] = ACTIONS(4595), - [aux_sym_delete_token1] = ACTIONS(4595), - [aux_sym_highlight_token1] = ACTIONS(4595), - [aux_sym_edit_comment_token1] = ACTIONS(4595), - [anon_sym_CARET_LBRACK] = ACTIONS(4595), - [anon_sym_LBRACK_CARET] = ACTIONS(4595), - [sym_uri_autolink] = ACTIONS(4595), - [sym_email_autolink] = ACTIONS(4595), - [sym__whitespace_ge_2] = ACTIONS(4595), - [aux_sym__whitespace_token1] = ACTIONS(4597), - [sym__word_no_digit] = ACTIONS(4595), - [sym__digits] = ACTIONS(4595), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4595), - [sym__code_span_start] = ACTIONS(4595), - [sym__emphasis_open_star] = ACTIONS(4595), - [sym__emphasis_open_underscore] = ACTIONS(4595), - [sym__strikeout_open] = ACTIONS(4595), - [sym__latex_span_start] = ACTIONS(4595), - [sym__single_quote_open] = ACTIONS(4595), - [sym__double_quote_open] = ACTIONS(4595), - [sym__superscript_open] = ACTIONS(4595), - [sym__subscript_open] = ACTIONS(4595), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4595), - [sym__cite_author_in_text] = ACTIONS(4595), - [sym__cite_suppress_author] = ACTIONS(4595), - [sym__shortcode_open_escaped] = ACTIONS(4595), - [sym__shortcode_open] = ACTIONS(4595), - [sym__unclosed_span] = ACTIONS(4595), - [sym__strong_emphasis_open_star] = ACTIONS(4595), - [sym__strong_emphasis_open_underscore] = ACTIONS(4595), + [STATE(1280)] = { + [sym__backslash_escape] = ACTIONS(4527), + [sym_entity_reference] = ACTIONS(4527), + [sym_numeric_character_reference] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_POUND] = ACTIONS(4527), + [anon_sym_DOLLAR] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_BSLASH] = ACTIONS(4529), + [anon_sym_CARET] = ACTIONS(4529), + [anon_sym_BQUOTE] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_RPAREN] = ACTIONS(4527), + [sym__newline_token] = ACTIONS(4527), + [aux_sym_insert_token1] = ACTIONS(4527), + [aux_sym_delete_token1] = ACTIONS(4527), + [aux_sym_highlight_token1] = ACTIONS(4527), + [aux_sym_edit_comment_token1] = ACTIONS(4527), + [anon_sym_CARET_LBRACK] = ACTIONS(4527), + [anon_sym_LBRACK_CARET] = ACTIONS(4527), + [sym_uri_autolink] = ACTIONS(4527), + [sym_email_autolink] = ACTIONS(4527), + [sym__whitespace_ge_2] = ACTIONS(4527), + [aux_sym__whitespace_token1] = ACTIONS(4529), + [sym__word_no_digit] = ACTIONS(4527), + [sym__digits] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), + [sym__code_span_start] = ACTIONS(4527), + [sym__emphasis_open_star] = ACTIONS(4527), + [sym__emphasis_open_underscore] = ACTIONS(4527), + [sym__emphasis_close_star] = ACTIONS(4527), + [sym__strikeout_open] = ACTIONS(4527), + [sym__latex_span_start] = ACTIONS(4527), + [sym__single_quote_open] = ACTIONS(4527), + [sym__double_quote_open] = ACTIONS(4527), + [sym__superscript_open] = ACTIONS(4527), + [sym__subscript_open] = ACTIONS(4527), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), + [sym__cite_author_in_text] = ACTIONS(4527), + [sym__cite_suppress_author] = ACTIONS(4527), + [sym__shortcode_open_escaped] = ACTIONS(4527), + [sym__shortcode_open] = ACTIONS(4527), + [sym__unclosed_span] = ACTIONS(4527), + [sym__strong_emphasis_open_star] = ACTIONS(4527), + [sym__strong_emphasis_open_underscore] = ACTIONS(4527), }, - [STATE(1287)] = { + [STATE(1281)] = { [sym__backslash_escape] = ACTIONS(4727), [sym_entity_reference] = ACTIONS(4727), [sym_numeric_character_reference] = ACTIONS(4727), @@ -134812,7 +134409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4727), [sym__strong_emphasis_open_underscore] = ACTIONS(4727), }, - [STATE(1288)] = { + [STATE(1282)] = { [sym__backslash_escape] = ACTIONS(4731), [sym_entity_reference] = ACTIONS(4731), [sym_numeric_character_reference] = ACTIONS(4731), @@ -134879,106 +134476,642 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4731), [sym__strong_emphasis_open_underscore] = ACTIONS(4731), }, - [STATE(1289)] = { - [sym__backslash_escape] = ACTIONS(4599), - [sym_entity_reference] = ACTIONS(4599), - [sym_numeric_character_reference] = ACTIONS(4599), - [anon_sym_LT] = ACTIONS(4601), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_BANG] = ACTIONS(4599), - [anon_sym_DQUOTE] = ACTIONS(4599), - [anon_sym_POUND] = ACTIONS(4599), - [anon_sym_DOLLAR] = ACTIONS(4599), - [anon_sym_PERCENT] = ACTIONS(4599), - [anon_sym_AMP] = ACTIONS(4601), - [anon_sym_SQUOTE] = ACTIONS(4599), - [anon_sym_PLUS] = ACTIONS(4599), - [anon_sym_COMMA] = ACTIONS(4599), - [anon_sym_DASH] = ACTIONS(4601), - [anon_sym_DOT] = ACTIONS(4601), - [anon_sym_SLASH] = ACTIONS(4599), - [anon_sym_COLON] = ACTIONS(4599), - [anon_sym_SEMI] = ACTIONS(4599), - [anon_sym_EQ] = ACTIONS(4599), - [anon_sym_QMARK] = ACTIONS(4599), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_BSLASH] = ACTIONS(4601), - [anon_sym_RBRACK] = ACTIONS(4599), - [anon_sym_CARET] = ACTIONS(4601), - [anon_sym_BQUOTE] = ACTIONS(4599), - [anon_sym_LBRACE] = ACTIONS(4599), - [anon_sym_PIPE] = ACTIONS(4599), - [anon_sym_TILDE] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4599), - [anon_sym_RPAREN] = ACTIONS(4599), - [sym__newline_token] = ACTIONS(4599), - [aux_sym_insert_token1] = ACTIONS(4599), - [aux_sym_delete_token1] = ACTIONS(4599), - [aux_sym_highlight_token1] = ACTIONS(4599), - [aux_sym_edit_comment_token1] = ACTIONS(4599), - [anon_sym_CARET_LBRACK] = ACTIONS(4599), - [anon_sym_LBRACK_CARET] = ACTIONS(4599), - [sym_uri_autolink] = ACTIONS(4599), - [sym_email_autolink] = ACTIONS(4599), - [sym__whitespace_ge_2] = ACTIONS(4599), - [aux_sym__whitespace_token1] = ACTIONS(4601), - [sym__word_no_digit] = ACTIONS(4599), - [sym__digits] = ACTIONS(4599), - [anon_sym_DASH_DASH] = ACTIONS(4601), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4599), - [sym__code_span_start] = ACTIONS(4599), - [sym__emphasis_open_star] = ACTIONS(4599), - [sym__emphasis_open_underscore] = ACTIONS(4599), - [sym__strikeout_open] = ACTIONS(4599), - [sym__latex_span_start] = ACTIONS(4599), - [sym__single_quote_open] = ACTIONS(4599), - [sym__double_quote_open] = ACTIONS(4599), - [sym__superscript_open] = ACTIONS(4599), - [sym__subscript_open] = ACTIONS(4599), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4599), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4599), - [sym__cite_author_in_text] = ACTIONS(4599), - [sym__cite_suppress_author] = ACTIONS(4599), - [sym__shortcode_open_escaped] = ACTIONS(4599), - [sym__shortcode_open] = ACTIONS(4599), - [sym__unclosed_span] = ACTIONS(4599), - [sym__strong_emphasis_open_star] = ACTIONS(4599), - [sym__strong_emphasis_open_underscore] = ACTIONS(4599), + [STATE(1283)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_RBRACK] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(1290)] = { - [sym__backslash_escape] = ACTIONS(4603), - [sym_entity_reference] = ACTIONS(4603), - [sym_numeric_character_reference] = ACTIONS(4603), - [anon_sym_LT] = ACTIONS(4605), - [anon_sym_GT] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(4603), - [anon_sym_DQUOTE] = ACTIONS(4603), - [anon_sym_POUND] = ACTIONS(4603), - [anon_sym_DOLLAR] = ACTIONS(4603), - [anon_sym_PERCENT] = ACTIONS(4603), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_SQUOTE] = ACTIONS(4603), - [anon_sym_PLUS] = ACTIONS(4603), - [anon_sym_COMMA] = ACTIONS(4603), - [anon_sym_DASH] = ACTIONS(4605), - [anon_sym_DOT] = ACTIONS(4605), - [anon_sym_SLASH] = ACTIONS(4603), - [anon_sym_COLON] = ACTIONS(4603), - [anon_sym_SEMI] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(4603), - [anon_sym_QMARK] = ACTIONS(4603), - [anon_sym_LBRACK] = ACTIONS(4605), - [anon_sym_BSLASH] = ACTIONS(4605), - [anon_sym_RBRACK] = ACTIONS(4603), - [anon_sym_CARET] = ACTIONS(4605), - [anon_sym_BQUOTE] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(4603), - [anon_sym_PIPE] = ACTIONS(4603), - [anon_sym_TILDE] = ACTIONS(4603), - [anon_sym_LPAREN] = ACTIONS(4603), - [anon_sym_RPAREN] = ACTIONS(4603), - [sym__newline_token] = ACTIONS(4603), + [STATE(1284)] = { + [sym__backslash_escape] = ACTIONS(4735), + [sym_entity_reference] = ACTIONS(4735), + [sym_numeric_character_reference] = ACTIONS(4735), + [anon_sym_LT] = ACTIONS(4737), + [anon_sym_GT] = ACTIONS(4735), + [anon_sym_BANG] = ACTIONS(4735), + [anon_sym_DQUOTE] = ACTIONS(4735), + [anon_sym_POUND] = ACTIONS(4735), + [anon_sym_DOLLAR] = ACTIONS(4735), + [anon_sym_PERCENT] = ACTIONS(4735), + [anon_sym_AMP] = ACTIONS(4737), + [anon_sym_SQUOTE] = ACTIONS(4735), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_COMMA] = ACTIONS(4735), + [anon_sym_DASH] = ACTIONS(4737), + [anon_sym_DOT] = ACTIONS(4737), + [anon_sym_SLASH] = ACTIONS(4735), + [anon_sym_COLON] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4735), + [anon_sym_EQ] = ACTIONS(4735), + [anon_sym_QMARK] = ACTIONS(4735), + [anon_sym_LBRACK] = ACTIONS(4737), + [anon_sym_BSLASH] = ACTIONS(4737), + [anon_sym_CARET] = ACTIONS(4737), + [anon_sym_BQUOTE] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4735), + [anon_sym_PIPE] = ACTIONS(4735), + [anon_sym_TILDE] = ACTIONS(4735), + [anon_sym_LPAREN] = ACTIONS(4735), + [anon_sym_RPAREN] = ACTIONS(4735), + [sym__newline_token] = ACTIONS(4735), + [aux_sym_insert_token1] = ACTIONS(4735), + [aux_sym_delete_token1] = ACTIONS(4735), + [aux_sym_highlight_token1] = ACTIONS(4735), + [aux_sym_edit_comment_token1] = ACTIONS(4735), + [anon_sym_CARET_LBRACK] = ACTIONS(4735), + [anon_sym_LBRACK_CARET] = ACTIONS(4735), + [sym_uri_autolink] = ACTIONS(4735), + [sym_email_autolink] = ACTIONS(4735), + [sym__whitespace_ge_2] = ACTIONS(4735), + [aux_sym__whitespace_token1] = ACTIONS(4737), + [sym__word_no_digit] = ACTIONS(4735), + [sym__digits] = ACTIONS(4735), + [anon_sym_DASH_DASH] = ACTIONS(4737), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4735), + [sym__code_span_start] = ACTIONS(4735), + [sym__emphasis_open_star] = ACTIONS(4735), + [sym__emphasis_open_underscore] = ACTIONS(4735), + [sym__emphasis_close_star] = ACTIONS(4735), + [sym__strikeout_open] = ACTIONS(4735), + [sym__latex_span_start] = ACTIONS(4735), + [sym__single_quote_open] = ACTIONS(4735), + [sym__double_quote_open] = ACTIONS(4735), + [sym__superscript_open] = ACTIONS(4735), + [sym__subscript_open] = ACTIONS(4735), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4735), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4735), + [sym__cite_author_in_text] = ACTIONS(4735), + [sym__cite_suppress_author] = ACTIONS(4735), + [sym__shortcode_open_escaped] = ACTIONS(4735), + [sym__shortcode_open] = ACTIONS(4735), + [sym__unclosed_span] = ACTIONS(4735), + [sym__strong_emphasis_open_star] = ACTIONS(4735), + [sym__strong_emphasis_open_underscore] = ACTIONS(4735), + }, + [STATE(1285)] = { + [sym__backslash_escape] = ACTIONS(4739), + [sym_entity_reference] = ACTIONS(4739), + [sym_numeric_character_reference] = ACTIONS(4739), + [anon_sym_LT] = ACTIONS(4741), + [anon_sym_GT] = ACTIONS(4739), + [anon_sym_BANG] = ACTIONS(4739), + [anon_sym_DQUOTE] = ACTIONS(4739), + [anon_sym_POUND] = ACTIONS(4739), + [anon_sym_DOLLAR] = ACTIONS(4739), + [anon_sym_PERCENT] = ACTIONS(4739), + [anon_sym_AMP] = ACTIONS(4741), + [anon_sym_SQUOTE] = ACTIONS(4739), + [anon_sym_PLUS] = ACTIONS(4739), + [anon_sym_COMMA] = ACTIONS(4739), + [anon_sym_DASH] = ACTIONS(4741), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_SLASH] = ACTIONS(4739), + [anon_sym_COLON] = ACTIONS(4739), + [anon_sym_SEMI] = ACTIONS(4739), + [anon_sym_EQ] = ACTIONS(4739), + [anon_sym_QMARK] = ACTIONS(4739), + [anon_sym_LBRACK] = ACTIONS(4741), + [anon_sym_BSLASH] = ACTIONS(4741), + [anon_sym_CARET] = ACTIONS(4741), + [anon_sym_BQUOTE] = ACTIONS(4739), + [anon_sym_LBRACE] = ACTIONS(4739), + [anon_sym_PIPE] = ACTIONS(4739), + [anon_sym_TILDE] = ACTIONS(4739), + [anon_sym_LPAREN] = ACTIONS(4739), + [anon_sym_RPAREN] = ACTIONS(4739), + [sym__newline_token] = ACTIONS(4739), + [aux_sym_insert_token1] = ACTIONS(4739), + [aux_sym_delete_token1] = ACTIONS(4739), + [aux_sym_highlight_token1] = ACTIONS(4739), + [aux_sym_edit_comment_token1] = ACTIONS(4739), + [anon_sym_CARET_LBRACK] = ACTIONS(4739), + [anon_sym_LBRACK_CARET] = ACTIONS(4739), + [sym_uri_autolink] = ACTIONS(4739), + [sym_email_autolink] = ACTIONS(4739), + [sym__whitespace_ge_2] = ACTIONS(4739), + [aux_sym__whitespace_token1] = ACTIONS(4741), + [sym__word_no_digit] = ACTIONS(4739), + [sym__digits] = ACTIONS(4739), + [anon_sym_DASH_DASH] = ACTIONS(4741), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4739), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4739), + [sym__code_span_start] = ACTIONS(4739), + [sym__emphasis_open_star] = ACTIONS(4739), + [sym__emphasis_open_underscore] = ACTIONS(4739), + [sym__emphasis_close_star] = ACTIONS(4739), + [sym__strikeout_open] = ACTIONS(4739), + [sym__latex_span_start] = ACTIONS(4739), + [sym__single_quote_open] = ACTIONS(4739), + [sym__double_quote_open] = ACTIONS(4739), + [sym__superscript_open] = ACTIONS(4739), + [sym__subscript_open] = ACTIONS(4739), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4739), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4739), + [sym__cite_author_in_text] = ACTIONS(4739), + [sym__cite_suppress_author] = ACTIONS(4739), + [sym__shortcode_open_escaped] = ACTIONS(4739), + [sym__shortcode_open] = ACTIONS(4739), + [sym__unclosed_span] = ACTIONS(4739), + [sym__strong_emphasis_open_star] = ACTIONS(4739), + [sym__strong_emphasis_open_underscore] = ACTIONS(4739), + }, + [STATE(1286)] = { + [sym__backslash_escape] = ACTIONS(4587), + [sym_entity_reference] = ACTIONS(4587), + [sym_numeric_character_reference] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4587), + [anon_sym_DQUOTE] = ACTIONS(4587), + [anon_sym_POUND] = ACTIONS(4587), + [anon_sym_DOLLAR] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4587), + [anon_sym_AMP] = ACTIONS(4589), + [anon_sym_SQUOTE] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_BSLASH] = ACTIONS(4589), + [anon_sym_RBRACK] = ACTIONS(4587), + [anon_sym_CARET] = ACTIONS(4589), + [anon_sym_BQUOTE] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_PIPE] = ACTIONS(4587), + [anon_sym_TILDE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4587), + [sym__newline_token] = ACTIONS(4587), + [aux_sym_insert_token1] = ACTIONS(4587), + [aux_sym_delete_token1] = ACTIONS(4587), + [aux_sym_highlight_token1] = ACTIONS(4587), + [aux_sym_edit_comment_token1] = ACTIONS(4587), + [anon_sym_CARET_LBRACK] = ACTIONS(4587), + [anon_sym_LBRACK_CARET] = ACTIONS(4587), + [sym_uri_autolink] = ACTIONS(4587), + [sym_email_autolink] = ACTIONS(4587), + [sym__whitespace_ge_2] = ACTIONS(4587), + [aux_sym__whitespace_token1] = ACTIONS(4589), + [sym__word_no_digit] = ACTIONS(4587), + [sym__digits] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), + [sym__code_span_start] = ACTIONS(4587), + [sym__emphasis_open_star] = ACTIONS(4587), + [sym__emphasis_open_underscore] = ACTIONS(4587), + [sym__strikeout_open] = ACTIONS(4587), + [sym__latex_span_start] = ACTIONS(4587), + [sym__single_quote_open] = ACTIONS(4587), + [sym__double_quote_open] = ACTIONS(4587), + [sym__superscript_open] = ACTIONS(4587), + [sym__subscript_open] = ACTIONS(4587), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), + [sym__cite_author_in_text] = ACTIONS(4587), + [sym__cite_suppress_author] = ACTIONS(4587), + [sym__shortcode_open_escaped] = ACTIONS(4587), + [sym__shortcode_open] = ACTIONS(4587), + [sym__unclosed_span] = ACTIONS(4587), + [sym__strong_emphasis_open_star] = ACTIONS(4587), + [sym__strong_emphasis_open_underscore] = ACTIONS(4587), + }, + [STATE(1287)] = { + [sym__backslash_escape] = ACTIONS(4591), + [sym_entity_reference] = ACTIONS(4591), + [sym_numeric_character_reference] = ACTIONS(4591), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_GT] = ACTIONS(4591), + [anon_sym_BANG] = ACTIONS(4591), + [anon_sym_DQUOTE] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4591), + [anon_sym_DOLLAR] = ACTIONS(4591), + [anon_sym_PERCENT] = ACTIONS(4591), + [anon_sym_AMP] = ACTIONS(4593), + [anon_sym_SQUOTE] = ACTIONS(4591), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [anon_sym_LBRACK] = ACTIONS(4593), + [anon_sym_BSLASH] = ACTIONS(4593), + [anon_sym_RBRACK] = ACTIONS(4591), + [anon_sym_CARET] = ACTIONS(4593), + [anon_sym_BQUOTE] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4591), + [anon_sym_LPAREN] = ACTIONS(4591), + [anon_sym_RPAREN] = ACTIONS(4591), + [sym__newline_token] = ACTIONS(4591), + [aux_sym_insert_token1] = ACTIONS(4591), + [aux_sym_delete_token1] = ACTIONS(4591), + [aux_sym_highlight_token1] = ACTIONS(4591), + [aux_sym_edit_comment_token1] = ACTIONS(4591), + [anon_sym_CARET_LBRACK] = ACTIONS(4591), + [anon_sym_LBRACK_CARET] = ACTIONS(4591), + [sym_uri_autolink] = ACTIONS(4591), + [sym_email_autolink] = ACTIONS(4591), + [sym__whitespace_ge_2] = ACTIONS(4591), + [aux_sym__whitespace_token1] = ACTIONS(4593), + [sym__word_no_digit] = ACTIONS(4591), + [sym__digits] = ACTIONS(4591), + [anon_sym_DASH_DASH] = ACTIONS(4593), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4591), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), + [sym__code_span_start] = ACTIONS(4591), + [sym__emphasis_open_star] = ACTIONS(4591), + [sym__emphasis_open_underscore] = ACTIONS(4591), + [sym__strikeout_open] = ACTIONS(4591), + [sym__latex_span_start] = ACTIONS(4591), + [sym__single_quote_open] = ACTIONS(4591), + [sym__double_quote_open] = ACTIONS(4591), + [sym__superscript_open] = ACTIONS(4591), + [sym__subscript_open] = ACTIONS(4591), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4591), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4591), + [sym__cite_author_in_text] = ACTIONS(4591), + [sym__cite_suppress_author] = ACTIONS(4591), + [sym__shortcode_open_escaped] = ACTIONS(4591), + [sym__shortcode_open] = ACTIONS(4591), + [sym__unclosed_span] = ACTIONS(4591), + [sym__strong_emphasis_open_star] = ACTIONS(4591), + [sym__strong_emphasis_open_underscore] = ACTIONS(4591), + }, + [STATE(1288)] = { + [sym__backslash_escape] = ACTIONS(4743), + [sym_entity_reference] = ACTIONS(4743), + [sym_numeric_character_reference] = ACTIONS(4743), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_GT] = ACTIONS(4743), + [anon_sym_BANG] = ACTIONS(4743), + [anon_sym_DQUOTE] = ACTIONS(4743), + [anon_sym_POUND] = ACTIONS(4743), + [anon_sym_DOLLAR] = ACTIONS(4743), + [anon_sym_PERCENT] = ACTIONS(4743), + [anon_sym_AMP] = ACTIONS(4745), + [anon_sym_SQUOTE] = ACTIONS(4743), + [anon_sym_PLUS] = ACTIONS(4743), + [anon_sym_COMMA] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_SLASH] = ACTIONS(4743), + [anon_sym_COLON] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_EQ] = ACTIONS(4743), + [anon_sym_QMARK] = ACTIONS(4743), + [anon_sym_LBRACK] = ACTIONS(4745), + [anon_sym_BSLASH] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4745), + [anon_sym_BQUOTE] = ACTIONS(4743), + [anon_sym_LBRACE] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_TILDE] = ACTIONS(4743), + [anon_sym_LPAREN] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [sym__newline_token] = ACTIONS(4743), + [aux_sym_insert_token1] = ACTIONS(4743), + [aux_sym_delete_token1] = ACTIONS(4743), + [aux_sym_highlight_token1] = ACTIONS(4743), + [aux_sym_edit_comment_token1] = ACTIONS(4743), + [anon_sym_CARET_LBRACK] = ACTIONS(4743), + [anon_sym_LBRACK_CARET] = ACTIONS(4743), + [sym_uri_autolink] = ACTIONS(4743), + [sym_email_autolink] = ACTIONS(4743), + [sym__whitespace_ge_2] = ACTIONS(4743), + [aux_sym__whitespace_token1] = ACTIONS(4745), + [sym__word_no_digit] = ACTIONS(4743), + [sym__digits] = ACTIONS(4743), + [anon_sym_DASH_DASH] = ACTIONS(4745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4743), + [sym__code_span_start] = ACTIONS(4743), + [sym__emphasis_open_star] = ACTIONS(4743), + [sym__emphasis_open_underscore] = ACTIONS(4743), + [sym__emphasis_close_star] = ACTIONS(4743), + [sym__strikeout_open] = ACTIONS(4743), + [sym__latex_span_start] = ACTIONS(4743), + [sym__single_quote_open] = ACTIONS(4743), + [sym__double_quote_open] = ACTIONS(4743), + [sym__superscript_open] = ACTIONS(4743), + [sym__subscript_open] = ACTIONS(4743), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4743), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4743), + [sym__cite_author_in_text] = ACTIONS(4743), + [sym__cite_suppress_author] = ACTIONS(4743), + [sym__shortcode_open_escaped] = ACTIONS(4743), + [sym__shortcode_open] = ACTIONS(4743), + [sym__unclosed_span] = ACTIONS(4743), + [sym__strong_emphasis_open_star] = ACTIONS(4743), + [sym__strong_emphasis_open_underscore] = ACTIONS(4743), + }, + [STATE(1289)] = { + [sym__backslash_escape] = ACTIONS(4747), + [sym_entity_reference] = ACTIONS(4747), + [sym_numeric_character_reference] = ACTIONS(4747), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_GT] = ACTIONS(4747), + [anon_sym_BANG] = ACTIONS(4747), + [anon_sym_DQUOTE] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4747), + [anon_sym_DOLLAR] = ACTIONS(4747), + [anon_sym_PERCENT] = ACTIONS(4747), + [anon_sym_AMP] = ACTIONS(4749), + [anon_sym_SQUOTE] = ACTIONS(4747), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_COMMA] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [anon_sym_LBRACK] = ACTIONS(4749), + [anon_sym_BSLASH] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4749), + [anon_sym_BQUOTE] = ACTIONS(4747), + [anon_sym_LBRACE] = ACTIONS(4747), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_TILDE] = ACTIONS(4747), + [anon_sym_LPAREN] = ACTIONS(4747), + [anon_sym_RPAREN] = ACTIONS(4747), + [sym__newline_token] = ACTIONS(4747), + [aux_sym_insert_token1] = ACTIONS(4747), + [aux_sym_delete_token1] = ACTIONS(4747), + [aux_sym_highlight_token1] = ACTIONS(4747), + [aux_sym_edit_comment_token1] = ACTIONS(4747), + [anon_sym_CARET_LBRACK] = ACTIONS(4747), + [anon_sym_LBRACK_CARET] = ACTIONS(4747), + [sym_uri_autolink] = ACTIONS(4747), + [sym_email_autolink] = ACTIONS(4747), + [sym__whitespace_ge_2] = ACTIONS(4747), + [aux_sym__whitespace_token1] = ACTIONS(4749), + [sym__word_no_digit] = ACTIONS(4747), + [sym__digits] = ACTIONS(4747), + [anon_sym_DASH_DASH] = ACTIONS(4749), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4747), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4747), + [sym__code_span_start] = ACTIONS(4747), + [sym__emphasis_open_star] = ACTIONS(4747), + [sym__emphasis_open_underscore] = ACTIONS(4747), + [sym__emphasis_close_star] = ACTIONS(4747), + [sym__strikeout_open] = ACTIONS(4747), + [sym__latex_span_start] = ACTIONS(4747), + [sym__single_quote_open] = ACTIONS(4747), + [sym__double_quote_open] = ACTIONS(4747), + [sym__superscript_open] = ACTIONS(4747), + [sym__subscript_open] = ACTIONS(4747), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4747), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4747), + [sym__cite_author_in_text] = ACTIONS(4747), + [sym__cite_suppress_author] = ACTIONS(4747), + [sym__shortcode_open_escaped] = ACTIONS(4747), + [sym__shortcode_open] = ACTIONS(4747), + [sym__unclosed_span] = ACTIONS(4747), + [sym__strong_emphasis_open_star] = ACTIONS(4747), + [sym__strong_emphasis_open_underscore] = ACTIONS(4747), + }, + [STATE(1290)] = { + [sym__backslash_escape] = ACTIONS(4595), + [sym_entity_reference] = ACTIONS(4595), + [sym_numeric_character_reference] = ACTIONS(4595), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_BANG] = ACTIONS(4595), + [anon_sym_DQUOTE] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4595), + [anon_sym_DOLLAR] = ACTIONS(4595), + [anon_sym_PERCENT] = ACTIONS(4595), + [anon_sym_AMP] = ACTIONS(4597), + [anon_sym_SQUOTE] = ACTIONS(4595), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_COMMA] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [anon_sym_LBRACK] = ACTIONS(4597), + [anon_sym_BSLASH] = ACTIONS(4597), + [anon_sym_RBRACK] = ACTIONS(4595), + [anon_sym_CARET] = ACTIONS(4597), + [anon_sym_BQUOTE] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4595), + [anon_sym_PIPE] = ACTIONS(4595), + [anon_sym_TILDE] = ACTIONS(4595), + [anon_sym_LPAREN] = ACTIONS(4595), + [anon_sym_RPAREN] = ACTIONS(4595), + [sym__newline_token] = ACTIONS(4595), + [aux_sym_insert_token1] = ACTIONS(4595), + [aux_sym_delete_token1] = ACTIONS(4595), + [aux_sym_highlight_token1] = ACTIONS(4595), + [aux_sym_edit_comment_token1] = ACTIONS(4595), + [anon_sym_CARET_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACK_CARET] = ACTIONS(4595), + [sym_uri_autolink] = ACTIONS(4595), + [sym_email_autolink] = ACTIONS(4595), + [sym__whitespace_ge_2] = ACTIONS(4595), + [aux_sym__whitespace_token1] = ACTIONS(4597), + [sym__word_no_digit] = ACTIONS(4595), + [sym__digits] = ACTIONS(4595), + [anon_sym_DASH_DASH] = ACTIONS(4597), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4595), + [sym__code_span_start] = ACTIONS(4595), + [sym__emphasis_open_star] = ACTIONS(4595), + [sym__emphasis_open_underscore] = ACTIONS(4595), + [sym__strikeout_open] = ACTIONS(4595), + [sym__latex_span_start] = ACTIONS(4595), + [sym__single_quote_open] = ACTIONS(4595), + [sym__double_quote_open] = ACTIONS(4595), + [sym__superscript_open] = ACTIONS(4595), + [sym__subscript_open] = ACTIONS(4595), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4595), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4595), + [sym__cite_author_in_text] = ACTIONS(4595), + [sym__cite_suppress_author] = ACTIONS(4595), + [sym__shortcode_open_escaped] = ACTIONS(4595), + [sym__shortcode_open] = ACTIONS(4595), + [sym__unclosed_span] = ACTIONS(4595), + [sym__strong_emphasis_open_star] = ACTIONS(4595), + [sym__strong_emphasis_open_underscore] = ACTIONS(4595), + }, + [STATE(1291)] = { + [sym__backslash_escape] = ACTIONS(4599), + [sym_entity_reference] = ACTIONS(4599), + [sym_numeric_character_reference] = ACTIONS(4599), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_GT] = ACTIONS(4599), + [anon_sym_BANG] = ACTIONS(4599), + [anon_sym_DQUOTE] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4599), + [anon_sym_DOLLAR] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_AMP] = ACTIONS(4601), + [anon_sym_SQUOTE] = ACTIONS(4599), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_COMMA] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(4601), + [anon_sym_BSLASH] = ACTIONS(4601), + [anon_sym_RBRACK] = ACTIONS(4599), + [anon_sym_CARET] = ACTIONS(4601), + [anon_sym_BQUOTE] = ACTIONS(4599), + [anon_sym_LBRACE] = ACTIONS(4599), + [anon_sym_PIPE] = ACTIONS(4599), + [anon_sym_TILDE] = ACTIONS(4599), + [anon_sym_LPAREN] = ACTIONS(4599), + [anon_sym_RPAREN] = ACTIONS(4599), + [sym__newline_token] = ACTIONS(4599), + [aux_sym_insert_token1] = ACTIONS(4599), + [aux_sym_delete_token1] = ACTIONS(4599), + [aux_sym_highlight_token1] = ACTIONS(4599), + [aux_sym_edit_comment_token1] = ACTIONS(4599), + [anon_sym_CARET_LBRACK] = ACTIONS(4599), + [anon_sym_LBRACK_CARET] = ACTIONS(4599), + [sym_uri_autolink] = ACTIONS(4599), + [sym_email_autolink] = ACTIONS(4599), + [sym__whitespace_ge_2] = ACTIONS(4599), + [aux_sym__whitespace_token1] = ACTIONS(4601), + [sym__word_no_digit] = ACTIONS(4599), + [sym__digits] = ACTIONS(4599), + [anon_sym_DASH_DASH] = ACTIONS(4601), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4599), + [sym__code_span_start] = ACTIONS(4599), + [sym__emphasis_open_star] = ACTIONS(4599), + [sym__emphasis_open_underscore] = ACTIONS(4599), + [sym__strikeout_open] = ACTIONS(4599), + [sym__latex_span_start] = ACTIONS(4599), + [sym__single_quote_open] = ACTIONS(4599), + [sym__double_quote_open] = ACTIONS(4599), + [sym__superscript_open] = ACTIONS(4599), + [sym__subscript_open] = ACTIONS(4599), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4599), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4599), + [sym__cite_author_in_text] = ACTIONS(4599), + [sym__cite_suppress_author] = ACTIONS(4599), + [sym__shortcode_open_escaped] = ACTIONS(4599), + [sym__shortcode_open] = ACTIONS(4599), + [sym__unclosed_span] = ACTIONS(4599), + [sym__strong_emphasis_open_star] = ACTIONS(4599), + [sym__strong_emphasis_open_underscore] = ACTIONS(4599), + }, + [STATE(1292)] = { + [sym__backslash_escape] = ACTIONS(4603), + [sym_entity_reference] = ACTIONS(4603), + [sym_numeric_character_reference] = ACTIONS(4603), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_GT] = ACTIONS(4603), + [anon_sym_BANG] = ACTIONS(4603), + [anon_sym_DQUOTE] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4603), + [anon_sym_DOLLAR] = ACTIONS(4603), + [anon_sym_PERCENT] = ACTIONS(4603), + [anon_sym_AMP] = ACTIONS(4605), + [anon_sym_SQUOTE] = ACTIONS(4603), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_COMMA] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [anon_sym_LBRACK] = ACTIONS(4605), + [anon_sym_BSLASH] = ACTIONS(4605), + [anon_sym_RBRACK] = ACTIONS(4603), + [anon_sym_CARET] = ACTIONS(4605), + [anon_sym_BQUOTE] = ACTIONS(4603), + [anon_sym_LBRACE] = ACTIONS(4603), + [anon_sym_PIPE] = ACTIONS(4603), + [anon_sym_TILDE] = ACTIONS(4603), + [anon_sym_LPAREN] = ACTIONS(4603), + [anon_sym_RPAREN] = ACTIONS(4603), + [sym__newline_token] = ACTIONS(4603), [aux_sym_insert_token1] = ACTIONS(4603), [aux_sym_delete_token1] = ACTIONS(4603), [aux_sym_highlight_token1] = ACTIONS(4603), @@ -135013,7 +135146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4603), [sym__strong_emphasis_open_underscore] = ACTIONS(4603), }, - [STATE(1291)] = { + [STATE(1293)] = { [sym__backslash_escape] = ACTIONS(4607), [sym_entity_reference] = ACTIONS(4607), [sym_numeric_character_reference] = ACTIONS(4607), @@ -135080,7 +135213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4607), [sym__strong_emphasis_open_underscore] = ACTIONS(4607), }, - [STATE(1292)] = { + [STATE(1294)] = { [sym__backslash_escape] = ACTIONS(4611), [sym_entity_reference] = ACTIONS(4611), [sym_numeric_character_reference] = ACTIONS(4611), @@ -135147,7 +135280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4611), [sym__strong_emphasis_open_underscore] = ACTIONS(4611), }, - [STATE(1293)] = { + [STATE(1295)] = { [sym__backslash_escape] = ACTIONS(4615), [sym_entity_reference] = ACTIONS(4615), [sym_numeric_character_reference] = ACTIONS(4615), @@ -135214,7 +135347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4615), [sym__strong_emphasis_open_underscore] = ACTIONS(4615), }, - [STATE(1294)] = { + [STATE(1296)] = { [sym__backslash_escape] = ACTIONS(4619), [sym_entity_reference] = ACTIONS(4619), [sym_numeric_character_reference] = ACTIONS(4619), @@ -135281,7 +135414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4619), [sym__strong_emphasis_open_underscore] = ACTIONS(4619), }, - [STATE(1295)] = { + [STATE(1297)] = { [sym__backslash_escape] = ACTIONS(4623), [sym_entity_reference] = ACTIONS(4623), [sym_numeric_character_reference] = ACTIONS(4623), @@ -135348,7 +135481,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4623), [sym__strong_emphasis_open_underscore] = ACTIONS(4623), }, - [STATE(1296)] = { + [STATE(1298)] = { + [sym__backslash_escape] = ACTIONS(4751), + [sym_entity_reference] = ACTIONS(4751), + [sym_numeric_character_reference] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4751), + [anon_sym_BANG] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4751), + [anon_sym_PERCENT] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4753), + [anon_sym_SQUOTE] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4753), + [anon_sym_DOT] = ACTIONS(4753), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4753), + [anon_sym_BSLASH] = ACTIONS(4753), + [anon_sym_CARET] = ACTIONS(4753), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_TILDE] = ACTIONS(4751), + [anon_sym_LPAREN] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [sym__newline_token] = ACTIONS(4751), + [aux_sym_insert_token1] = ACTIONS(4751), + [aux_sym_delete_token1] = ACTIONS(4751), + [aux_sym_highlight_token1] = ACTIONS(4751), + [aux_sym_edit_comment_token1] = ACTIONS(4751), + [anon_sym_CARET_LBRACK] = ACTIONS(4751), + [anon_sym_LBRACK_CARET] = ACTIONS(4751), + [sym_uri_autolink] = ACTIONS(4751), + [sym_email_autolink] = ACTIONS(4751), + [sym__whitespace_ge_2] = ACTIONS(4751), + [aux_sym__whitespace_token1] = ACTIONS(4753), + [sym__word_no_digit] = ACTIONS(4751), + [sym__digits] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4753), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4751), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4751), + [sym__code_span_start] = ACTIONS(4751), + [sym__emphasis_open_star] = ACTIONS(4751), + [sym__emphasis_open_underscore] = ACTIONS(4751), + [sym__emphasis_close_star] = ACTIONS(4751), + [sym__strikeout_open] = ACTIONS(4751), + [sym__latex_span_start] = ACTIONS(4751), + [sym__single_quote_open] = ACTIONS(4751), + [sym__double_quote_open] = ACTIONS(4751), + [sym__superscript_open] = ACTIONS(4751), + [sym__subscript_open] = ACTIONS(4751), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4751), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4751), + [sym__cite_author_in_text] = ACTIONS(4751), + [sym__cite_suppress_author] = ACTIONS(4751), + [sym__shortcode_open_escaped] = ACTIONS(4751), + [sym__shortcode_open] = ACTIONS(4751), + [sym__unclosed_span] = ACTIONS(4751), + [sym__strong_emphasis_open_star] = ACTIONS(4751), + [sym__strong_emphasis_open_underscore] = ACTIONS(4751), + }, + [STATE(1299)] = { [sym__backslash_escape] = ACTIONS(4627), [sym_entity_reference] = ACTIONS(4627), [sym_numeric_character_reference] = ACTIONS(4627), @@ -135415,74 +135615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4627), [sym__strong_emphasis_open_underscore] = ACTIONS(4627), }, - [STATE(1297)] = { - [sym__backslash_escape] = ACTIONS(4735), - [sym_entity_reference] = ACTIONS(4735), - [sym_numeric_character_reference] = ACTIONS(4735), - [anon_sym_LT] = ACTIONS(4737), - [anon_sym_GT] = ACTIONS(4735), - [anon_sym_BANG] = ACTIONS(4735), - [anon_sym_DQUOTE] = ACTIONS(4735), - [anon_sym_POUND] = ACTIONS(4735), - [anon_sym_DOLLAR] = ACTIONS(4735), - [anon_sym_PERCENT] = ACTIONS(4735), - [anon_sym_AMP] = ACTIONS(4737), - [anon_sym_SQUOTE] = ACTIONS(4735), - [anon_sym_PLUS] = ACTIONS(4735), - [anon_sym_COMMA] = ACTIONS(4735), - [anon_sym_DASH] = ACTIONS(4737), - [anon_sym_DOT] = ACTIONS(4737), - [anon_sym_SLASH] = ACTIONS(4735), - [anon_sym_COLON] = ACTIONS(4735), - [anon_sym_SEMI] = ACTIONS(4735), - [anon_sym_EQ] = ACTIONS(4735), - [anon_sym_QMARK] = ACTIONS(4735), - [anon_sym_LBRACK] = ACTIONS(4737), - [anon_sym_BSLASH] = ACTIONS(4737), - [anon_sym_CARET] = ACTIONS(4737), - [anon_sym_BQUOTE] = ACTIONS(4735), - [anon_sym_LBRACE] = ACTIONS(4735), - [anon_sym_PIPE] = ACTIONS(4735), - [anon_sym_TILDE] = ACTIONS(4735), - [anon_sym_LPAREN] = ACTIONS(4735), - [anon_sym_RPAREN] = ACTIONS(4735), - [sym__newline_token] = ACTIONS(4735), - [aux_sym_insert_token1] = ACTIONS(4735), - [aux_sym_delete_token1] = ACTIONS(4735), - [aux_sym_highlight_token1] = ACTIONS(4735), - [aux_sym_edit_comment_token1] = ACTIONS(4735), - [anon_sym_CARET_LBRACK] = ACTIONS(4735), - [anon_sym_LBRACK_CARET] = ACTIONS(4735), - [sym_uri_autolink] = ACTIONS(4735), - [sym_email_autolink] = ACTIONS(4735), - [sym__whitespace_ge_2] = ACTIONS(4735), - [aux_sym__whitespace_token1] = ACTIONS(4737), - [sym__word_no_digit] = ACTIONS(4735), - [sym__digits] = ACTIONS(4735), - [anon_sym_DASH_DASH] = ACTIONS(4737), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4735), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4735), - [sym__code_span_start] = ACTIONS(4735), - [sym__emphasis_open_star] = ACTIONS(4735), - [sym__emphasis_open_underscore] = ACTIONS(4735), - [sym__emphasis_close_star] = ACTIONS(4735), - [sym__strikeout_open] = ACTIONS(4735), - [sym__latex_span_start] = ACTIONS(4735), - [sym__single_quote_open] = ACTIONS(4735), - [sym__double_quote_open] = ACTIONS(4735), - [sym__superscript_open] = ACTIONS(4735), - [sym__subscript_open] = ACTIONS(4735), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4735), - [sym__cite_author_in_text] = ACTIONS(4735), - [sym__cite_suppress_author] = ACTIONS(4735), - [sym__shortcode_open_escaped] = ACTIONS(4735), - [sym__shortcode_open] = ACTIONS(4735), - [sym__unclosed_span] = ACTIONS(4735), - [sym__strong_emphasis_open_star] = ACTIONS(4735), - [sym__strong_emphasis_open_underscore] = ACTIONS(4735), - }, - [STATE(1298)] = { + [STATE(1300)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -135549,7 +135682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4631), [sym__strong_emphasis_open_underscore] = ACTIONS(4631), }, - [STATE(1299)] = { + [STATE(1301)] = { [sym__backslash_escape] = ACTIONS(4635), [sym_entity_reference] = ACTIONS(4635), [sym_numeric_character_reference] = ACTIONS(4635), @@ -135573,7 +135706,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4635), [anon_sym_LBRACK] = ACTIONS(4637), [anon_sym_BSLASH] = ACTIONS(4637), - [anon_sym_RBRACK] = ACTIONS(4635), [anon_sym_CARET] = ACTIONS(4637), [anon_sym_BQUOTE] = ACTIONS(4635), [anon_sym_LBRACE] = ACTIONS(4635), @@ -135614,9 +135746,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__shortcode_open] = ACTIONS(4635), [sym__unclosed_span] = ACTIONS(4635), [sym__strong_emphasis_open_star] = ACTIONS(4635), + [sym__strong_emphasis_close_star] = ACTIONS(4635), [sym__strong_emphasis_open_underscore] = ACTIONS(4635), }, - [STATE(1300)] = { + [STATE(1302)] = { + [sym__backslash_escape] = ACTIONS(4755), + [sym_entity_reference] = ACTIONS(4755), + [sym_numeric_character_reference] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4757), + [anon_sym_GT] = ACTIONS(4755), + [anon_sym_BANG] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_POUND] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4755), + [anon_sym_PERCENT] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4757), + [anon_sym_SQUOTE] = ACTIONS(4755), + [anon_sym_PLUS] = ACTIONS(4755), + [anon_sym_COMMA] = ACTIONS(4755), + [anon_sym_DASH] = ACTIONS(4757), + [anon_sym_DOT] = ACTIONS(4757), + [anon_sym_SLASH] = ACTIONS(4755), + [anon_sym_COLON] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4755), + [anon_sym_EQ] = ACTIONS(4755), + [anon_sym_QMARK] = ACTIONS(4755), + [anon_sym_LBRACK] = ACTIONS(4757), + [anon_sym_BSLASH] = ACTIONS(4757), + [anon_sym_CARET] = ACTIONS(4757), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LBRACE] = ACTIONS(4755), + [anon_sym_PIPE] = ACTIONS(4755), + [anon_sym_TILDE] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4755), + [anon_sym_RPAREN] = ACTIONS(4755), + [sym__newline_token] = ACTIONS(4755), + [aux_sym_insert_token1] = ACTIONS(4755), + [aux_sym_delete_token1] = ACTIONS(4755), + [aux_sym_highlight_token1] = ACTIONS(4755), + [aux_sym_edit_comment_token1] = ACTIONS(4755), + [anon_sym_CARET_LBRACK] = ACTIONS(4755), + [anon_sym_LBRACK_CARET] = ACTIONS(4755), + [sym_uri_autolink] = ACTIONS(4755), + [sym_email_autolink] = ACTIONS(4755), + [sym__whitespace_ge_2] = ACTIONS(4755), + [aux_sym__whitespace_token1] = ACTIONS(4757), + [sym__word_no_digit] = ACTIONS(4755), + [sym__digits] = ACTIONS(4755), + [anon_sym_DASH_DASH] = ACTIONS(4757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4755), + [sym__code_span_start] = ACTIONS(4755), + [sym__emphasis_open_star] = ACTIONS(4755), + [sym__emphasis_open_underscore] = ACTIONS(4755), + [sym__emphasis_close_star] = ACTIONS(4755), + [sym__strikeout_open] = ACTIONS(4755), + [sym__latex_span_start] = ACTIONS(4755), + [sym__single_quote_open] = ACTIONS(4755), + [sym__double_quote_open] = ACTIONS(4755), + [sym__superscript_open] = ACTIONS(4755), + [sym__subscript_open] = ACTIONS(4755), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4755), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4755), + [sym__cite_author_in_text] = ACTIONS(4755), + [sym__cite_suppress_author] = ACTIONS(4755), + [sym__shortcode_open_escaped] = ACTIONS(4755), + [sym__shortcode_open] = ACTIONS(4755), + [sym__unclosed_span] = ACTIONS(4755), + [sym__strong_emphasis_open_star] = ACTIONS(4755), + [sym__strong_emphasis_open_underscore] = ACTIONS(4755), + }, + [STATE(1303)] = { + [sym__backslash_escape] = ACTIONS(4759), + [sym_entity_reference] = ACTIONS(4759), + [sym_numeric_character_reference] = ACTIONS(4759), + [anon_sym_LT] = ACTIONS(4761), + [anon_sym_GT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4759), + [anon_sym_POUND] = ACTIONS(4759), + [anon_sym_DOLLAR] = ACTIONS(4759), + [anon_sym_PERCENT] = ACTIONS(4759), + [anon_sym_AMP] = ACTIONS(4761), + [anon_sym_SQUOTE] = ACTIONS(4759), + [anon_sym_PLUS] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4759), + [anon_sym_DASH] = ACTIONS(4761), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_SLASH] = ACTIONS(4759), + [anon_sym_COLON] = ACTIONS(4759), + [anon_sym_SEMI] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4759), + [anon_sym_QMARK] = ACTIONS(4759), + [anon_sym_LBRACK] = ACTIONS(4761), + [anon_sym_BSLASH] = ACTIONS(4761), + [anon_sym_CARET] = ACTIONS(4761), + [anon_sym_BQUOTE] = ACTIONS(4759), + [anon_sym_LBRACE] = ACTIONS(4759), + [anon_sym_PIPE] = ACTIONS(4759), + [anon_sym_TILDE] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4759), + [anon_sym_RPAREN] = ACTIONS(4759), + [sym__newline_token] = ACTIONS(4759), + [aux_sym_insert_token1] = ACTIONS(4759), + [aux_sym_delete_token1] = ACTIONS(4759), + [aux_sym_highlight_token1] = ACTIONS(4759), + [aux_sym_edit_comment_token1] = ACTIONS(4759), + [anon_sym_CARET_LBRACK] = ACTIONS(4759), + [anon_sym_LBRACK_CARET] = ACTIONS(4759), + [sym_uri_autolink] = ACTIONS(4759), + [sym_email_autolink] = ACTIONS(4759), + [sym__whitespace_ge_2] = ACTIONS(4759), + [aux_sym__whitespace_token1] = ACTIONS(4761), + [sym__word_no_digit] = ACTIONS(4759), + [sym__digits] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4761), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4759), + [sym__code_span_start] = ACTIONS(4759), + [sym__emphasis_open_star] = ACTIONS(4759), + [sym__emphasis_open_underscore] = ACTIONS(4759), + [sym__emphasis_close_star] = ACTIONS(4759), + [sym__strikeout_open] = ACTIONS(4759), + [sym__latex_span_start] = ACTIONS(4759), + [sym__single_quote_open] = ACTIONS(4759), + [sym__double_quote_open] = ACTIONS(4759), + [sym__superscript_open] = ACTIONS(4759), + [sym__subscript_open] = ACTIONS(4759), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4759), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4759), + [sym__cite_author_in_text] = ACTIONS(4759), + [sym__cite_suppress_author] = ACTIONS(4759), + [sym__shortcode_open_escaped] = ACTIONS(4759), + [sym__shortcode_open] = ACTIONS(4759), + [sym__unclosed_span] = ACTIONS(4759), + [sym__strong_emphasis_open_star] = ACTIONS(4759), + [sym__strong_emphasis_open_underscore] = ACTIONS(4759), + }, + [STATE(1304)] = { + [sym__backslash_escape] = ACTIONS(4763), + [sym_entity_reference] = ACTIONS(4763), + [sym_numeric_character_reference] = ACTIONS(4763), + [anon_sym_LT] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4763), + [anon_sym_BANG] = ACTIONS(4763), + [anon_sym_DQUOTE] = ACTIONS(4763), + [anon_sym_POUND] = ACTIONS(4763), + [anon_sym_DOLLAR] = ACTIONS(4763), + [anon_sym_PERCENT] = ACTIONS(4763), + [anon_sym_AMP] = ACTIONS(4765), + [anon_sym_SQUOTE] = ACTIONS(4763), + [anon_sym_PLUS] = ACTIONS(4763), + [anon_sym_COMMA] = ACTIONS(4763), + [anon_sym_DASH] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4765), + [anon_sym_SLASH] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4763), + [anon_sym_SEMI] = ACTIONS(4763), + [anon_sym_EQ] = ACTIONS(4763), + [anon_sym_QMARK] = ACTIONS(4763), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_BSLASH] = ACTIONS(4765), + [anon_sym_CARET] = ACTIONS(4765), + [anon_sym_BQUOTE] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4763), + [anon_sym_PIPE] = ACTIONS(4763), + [anon_sym_TILDE] = ACTIONS(4763), + [anon_sym_LPAREN] = ACTIONS(4763), + [anon_sym_RPAREN] = ACTIONS(4763), + [sym__newline_token] = ACTIONS(4763), + [aux_sym_insert_token1] = ACTIONS(4763), + [aux_sym_delete_token1] = ACTIONS(4763), + [aux_sym_highlight_token1] = ACTIONS(4763), + [aux_sym_edit_comment_token1] = ACTIONS(4763), + [anon_sym_CARET_LBRACK] = ACTIONS(4763), + [anon_sym_LBRACK_CARET] = ACTIONS(4763), + [sym_uri_autolink] = ACTIONS(4763), + [sym_email_autolink] = ACTIONS(4763), + [sym__whitespace_ge_2] = ACTIONS(4763), + [aux_sym__whitespace_token1] = ACTIONS(4765), + [sym__word_no_digit] = ACTIONS(4763), + [sym__digits] = ACTIONS(4763), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4763), + [sym__code_span_start] = ACTIONS(4763), + [sym__emphasis_open_star] = ACTIONS(4763), + [sym__emphasis_open_underscore] = ACTIONS(4763), + [sym__emphasis_close_star] = ACTIONS(4763), + [sym__strikeout_open] = ACTIONS(4763), + [sym__latex_span_start] = ACTIONS(4763), + [sym__single_quote_open] = ACTIONS(4763), + [sym__double_quote_open] = ACTIONS(4763), + [sym__superscript_open] = ACTIONS(4763), + [sym__subscript_open] = ACTIONS(4763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4763), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4763), + [sym__cite_author_in_text] = ACTIONS(4763), + [sym__cite_suppress_author] = ACTIONS(4763), + [sym__shortcode_open_escaped] = ACTIONS(4763), + [sym__shortcode_open] = ACTIONS(4763), + [sym__unclosed_span] = ACTIONS(4763), + [sym__strong_emphasis_open_star] = ACTIONS(4763), + [sym__strong_emphasis_open_underscore] = ACTIONS(4763), + }, + [STATE(1305)] = { + [sym__backslash_escape] = ACTIONS(4209), + [sym_entity_reference] = ACTIONS(4209), + [sym_numeric_character_reference] = ACTIONS(4209), + [anon_sym_LT] = ACTIONS(4211), + [anon_sym_GT] = ACTIONS(4209), + [anon_sym_BANG] = ACTIONS(4209), + [anon_sym_DQUOTE] = ACTIONS(4209), + [anon_sym_POUND] = ACTIONS(4209), + [anon_sym_DOLLAR] = ACTIONS(4209), + [anon_sym_PERCENT] = ACTIONS(4209), + [anon_sym_AMP] = ACTIONS(4211), + [anon_sym_SQUOTE] = ACTIONS(4209), + [anon_sym_PLUS] = ACTIONS(4209), + [anon_sym_COMMA] = ACTIONS(4209), + [anon_sym_DASH] = ACTIONS(4211), + [anon_sym_DOT] = ACTIONS(4211), + [anon_sym_SLASH] = ACTIONS(4209), + [anon_sym_COLON] = ACTIONS(4209), + [anon_sym_SEMI] = ACTIONS(4209), + [anon_sym_EQ] = ACTIONS(4209), + [anon_sym_QMARK] = ACTIONS(4209), + [anon_sym_LBRACK] = ACTIONS(4211), + [anon_sym_BSLASH] = ACTIONS(4211), + [anon_sym_CARET] = ACTIONS(4211), + [anon_sym_BQUOTE] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_PIPE] = ACTIONS(4209), + [anon_sym_TILDE] = ACTIONS(4209), + [anon_sym_LPAREN] = ACTIONS(4209), + [anon_sym_RPAREN] = ACTIONS(4209), + [sym__newline_token] = ACTIONS(4209), + [aux_sym_insert_token1] = ACTIONS(4209), + [aux_sym_delete_token1] = ACTIONS(4209), + [aux_sym_highlight_token1] = ACTIONS(4209), + [aux_sym_edit_comment_token1] = ACTIONS(4209), + [anon_sym_CARET_LBRACK] = ACTIONS(4209), + [anon_sym_LBRACK_CARET] = ACTIONS(4209), + [sym_uri_autolink] = ACTIONS(4209), + [sym_email_autolink] = ACTIONS(4209), + [sym__whitespace_ge_2] = ACTIONS(4209), + [aux_sym__whitespace_token1] = ACTIONS(4211), + [sym__word_no_digit] = ACTIONS(4209), + [sym__digits] = ACTIONS(4209), + [anon_sym_DASH_DASH] = ACTIONS(4211), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4209), + [sym__code_span_start] = ACTIONS(4209), + [sym__emphasis_open_star] = ACTIONS(4209), + [sym__emphasis_open_underscore] = ACTIONS(4209), + [sym__emphasis_close_star] = ACTIONS(4209), + [sym__strikeout_open] = ACTIONS(4209), + [sym__latex_span_start] = ACTIONS(4209), + [sym__single_quote_open] = ACTIONS(4209), + [sym__double_quote_open] = ACTIONS(4209), + [sym__superscript_open] = ACTIONS(4209), + [sym__subscript_open] = ACTIONS(4209), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4209), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4209), + [sym__cite_author_in_text] = ACTIONS(4209), + [sym__cite_suppress_author] = ACTIONS(4209), + [sym__shortcode_open_escaped] = ACTIONS(4209), + [sym__shortcode_open] = ACTIONS(4209), + [sym__unclosed_span] = ACTIONS(4209), + [sym__strong_emphasis_open_star] = ACTIONS(4209), + [sym__strong_emphasis_open_underscore] = ACTIONS(4209), + }, + [STATE(1306)] = { [sym__backslash_escape] = ACTIONS(4639), [sym_entity_reference] = ACTIONS(4639), [sym_numeric_character_reference] = ACTIONS(4639), @@ -135683,342 +136084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_star] = ACTIONS(4639), [sym__strong_emphasis_open_underscore] = ACTIONS(4639), }, - [STATE(1301)] = { - [sym__backslash_escape] = ACTIONS(4739), - [sym_entity_reference] = ACTIONS(4739), - [sym_numeric_character_reference] = ACTIONS(4739), - [anon_sym_LT] = ACTIONS(4741), - [anon_sym_GT] = ACTIONS(4739), - [anon_sym_BANG] = ACTIONS(4739), - [anon_sym_DQUOTE] = ACTIONS(4739), - [anon_sym_POUND] = ACTIONS(4739), - [anon_sym_DOLLAR] = ACTIONS(4739), - [anon_sym_PERCENT] = ACTIONS(4739), - [anon_sym_AMP] = ACTIONS(4741), - [anon_sym_SQUOTE] = ACTIONS(4739), - [anon_sym_PLUS] = ACTIONS(4739), - [anon_sym_COMMA] = ACTIONS(4739), - [anon_sym_DASH] = ACTIONS(4741), - [anon_sym_DOT] = ACTIONS(4741), - [anon_sym_SLASH] = ACTIONS(4739), - [anon_sym_COLON] = ACTIONS(4739), - [anon_sym_SEMI] = ACTIONS(4739), - [anon_sym_EQ] = ACTIONS(4739), - [anon_sym_QMARK] = ACTIONS(4739), - [anon_sym_LBRACK] = ACTIONS(4741), - [anon_sym_BSLASH] = ACTIONS(4741), - [anon_sym_CARET] = ACTIONS(4741), - [anon_sym_BQUOTE] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4739), - [anon_sym_PIPE] = ACTIONS(4739), - [anon_sym_TILDE] = ACTIONS(4739), - [anon_sym_LPAREN] = ACTIONS(4739), - [anon_sym_RPAREN] = ACTIONS(4739), - [sym__newline_token] = ACTIONS(4739), - [aux_sym_insert_token1] = ACTIONS(4739), - [aux_sym_delete_token1] = ACTIONS(4739), - [aux_sym_highlight_token1] = ACTIONS(4739), - [aux_sym_edit_comment_token1] = ACTIONS(4739), - [anon_sym_CARET_LBRACK] = ACTIONS(4739), - [anon_sym_LBRACK_CARET] = ACTIONS(4739), - [sym_uri_autolink] = ACTIONS(4739), - [sym_email_autolink] = ACTIONS(4739), - [sym__whitespace_ge_2] = ACTIONS(4739), - [aux_sym__whitespace_token1] = ACTIONS(4741), - [sym__word_no_digit] = ACTIONS(4739), - [sym__digits] = ACTIONS(4739), - [anon_sym_DASH_DASH] = ACTIONS(4741), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4739), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4739), - [sym__code_span_start] = ACTIONS(4739), - [sym__emphasis_open_star] = ACTIONS(4739), - [sym__emphasis_open_underscore] = ACTIONS(4739), - [sym__emphasis_close_star] = ACTIONS(4739), - [sym__strikeout_open] = ACTIONS(4739), - [sym__latex_span_start] = ACTIONS(4739), - [sym__single_quote_open] = ACTIONS(4739), - [sym__double_quote_open] = ACTIONS(4739), - [sym__superscript_open] = ACTIONS(4739), - [sym__subscript_open] = ACTIONS(4739), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4739), - [sym__cite_author_in_text] = ACTIONS(4739), - [sym__cite_suppress_author] = ACTIONS(4739), - [sym__shortcode_open_escaped] = ACTIONS(4739), - [sym__shortcode_open] = ACTIONS(4739), - [sym__unclosed_span] = ACTIONS(4739), - [sym__strong_emphasis_open_star] = ACTIONS(4739), - [sym__strong_emphasis_open_underscore] = ACTIONS(4739), - }, - [STATE(1302)] = { - [sym__backslash_escape] = ACTIONS(4743), - [sym_entity_reference] = ACTIONS(4743), - [sym_numeric_character_reference] = ACTIONS(4743), - [anon_sym_LT] = ACTIONS(4745), - [anon_sym_GT] = ACTIONS(4743), - [anon_sym_BANG] = ACTIONS(4743), - [anon_sym_DQUOTE] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4743), - [anon_sym_DOLLAR] = ACTIONS(4743), - [anon_sym_PERCENT] = ACTIONS(4743), - [anon_sym_AMP] = ACTIONS(4745), - [anon_sym_SQUOTE] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(4743), - [anon_sym_COMMA] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4745), - [anon_sym_DOT] = ACTIONS(4745), - [anon_sym_SLASH] = ACTIONS(4743), - [anon_sym_COLON] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_EQ] = ACTIONS(4743), - [anon_sym_QMARK] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4745), - [anon_sym_BSLASH] = ACTIONS(4745), - [anon_sym_CARET] = ACTIONS(4745), - [anon_sym_BQUOTE] = ACTIONS(4743), - [anon_sym_LBRACE] = ACTIONS(4743), - [anon_sym_PIPE] = ACTIONS(4743), - [anon_sym_TILDE] = ACTIONS(4743), - [anon_sym_LPAREN] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4743), - [sym__newline_token] = ACTIONS(4743), - [aux_sym_insert_token1] = ACTIONS(4743), - [aux_sym_delete_token1] = ACTIONS(4743), - [aux_sym_highlight_token1] = ACTIONS(4743), - [aux_sym_edit_comment_token1] = ACTIONS(4743), - [anon_sym_CARET_LBRACK] = ACTIONS(4743), - [anon_sym_LBRACK_CARET] = ACTIONS(4743), - [sym_uri_autolink] = ACTIONS(4743), - [sym_email_autolink] = ACTIONS(4743), - [sym__whitespace_ge_2] = ACTIONS(4743), - [aux_sym__whitespace_token1] = ACTIONS(4745), - [sym__word_no_digit] = ACTIONS(4743), - [sym__digits] = ACTIONS(4743), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4743), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4743), - [sym__code_span_start] = ACTIONS(4743), - [sym__emphasis_open_star] = ACTIONS(4743), - [sym__emphasis_open_underscore] = ACTIONS(4743), - [sym__emphasis_close_star] = ACTIONS(4743), - [sym__strikeout_open] = ACTIONS(4743), - [sym__latex_span_start] = ACTIONS(4743), - [sym__single_quote_open] = ACTIONS(4743), - [sym__double_quote_open] = ACTIONS(4743), - [sym__superscript_open] = ACTIONS(4743), - [sym__subscript_open] = ACTIONS(4743), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4743), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4743), - [sym__cite_author_in_text] = ACTIONS(4743), - [sym__cite_suppress_author] = ACTIONS(4743), - [sym__shortcode_open_escaped] = ACTIONS(4743), - [sym__shortcode_open] = ACTIONS(4743), - [sym__unclosed_span] = ACTIONS(4743), - [sym__strong_emphasis_open_star] = ACTIONS(4743), - [sym__strong_emphasis_open_underscore] = ACTIONS(4743), - }, - [STATE(1303)] = { - [sym__backslash_escape] = ACTIONS(4747), - [sym_entity_reference] = ACTIONS(4747), - [sym_numeric_character_reference] = ACTIONS(4747), - [anon_sym_LT] = ACTIONS(4749), - [anon_sym_GT] = ACTIONS(4747), - [anon_sym_BANG] = ACTIONS(4747), - [anon_sym_DQUOTE] = ACTIONS(4747), - [anon_sym_POUND] = ACTIONS(4747), - [anon_sym_DOLLAR] = ACTIONS(4747), - [anon_sym_PERCENT] = ACTIONS(4747), - [anon_sym_AMP] = ACTIONS(4749), - [anon_sym_SQUOTE] = ACTIONS(4747), - [anon_sym_PLUS] = ACTIONS(4747), - [anon_sym_COMMA] = ACTIONS(4747), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_DOT] = ACTIONS(4749), - [anon_sym_SLASH] = ACTIONS(4747), - [anon_sym_COLON] = ACTIONS(4747), - [anon_sym_SEMI] = ACTIONS(4747), - [anon_sym_EQ] = ACTIONS(4747), - [anon_sym_QMARK] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4749), - [anon_sym_BSLASH] = ACTIONS(4749), - [anon_sym_CARET] = ACTIONS(4749), - [anon_sym_BQUOTE] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(4747), - [anon_sym_PIPE] = ACTIONS(4747), - [anon_sym_TILDE] = ACTIONS(4747), - [anon_sym_LPAREN] = ACTIONS(4747), - [anon_sym_RPAREN] = ACTIONS(4747), - [sym__newline_token] = ACTIONS(4747), - [aux_sym_insert_token1] = ACTIONS(4747), - [aux_sym_delete_token1] = ACTIONS(4747), - [aux_sym_highlight_token1] = ACTIONS(4747), - [aux_sym_edit_comment_token1] = ACTIONS(4747), - [anon_sym_CARET_LBRACK] = ACTIONS(4747), - [anon_sym_LBRACK_CARET] = ACTIONS(4747), - [sym_uri_autolink] = ACTIONS(4747), - [sym_email_autolink] = ACTIONS(4747), - [sym__whitespace_ge_2] = ACTIONS(4747), - [aux_sym__whitespace_token1] = ACTIONS(4749), - [sym__word_no_digit] = ACTIONS(4747), - [sym__digits] = ACTIONS(4747), - [anon_sym_DASH_DASH] = ACTIONS(4749), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4747), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4747), - [sym__code_span_start] = ACTIONS(4747), - [sym__emphasis_open_star] = ACTIONS(4747), - [sym__emphasis_open_underscore] = ACTIONS(4747), - [sym__emphasis_close_star] = ACTIONS(4747), - [sym__strikeout_open] = ACTIONS(4747), - [sym__latex_span_start] = ACTIONS(4747), - [sym__single_quote_open] = ACTIONS(4747), - [sym__double_quote_open] = ACTIONS(4747), - [sym__superscript_open] = ACTIONS(4747), - [sym__subscript_open] = ACTIONS(4747), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4747), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4747), - [sym__cite_author_in_text] = ACTIONS(4747), - [sym__cite_suppress_author] = ACTIONS(4747), - [sym__shortcode_open_escaped] = ACTIONS(4747), - [sym__shortcode_open] = ACTIONS(4747), - [sym__unclosed_span] = ACTIONS(4747), - [sym__strong_emphasis_open_star] = ACTIONS(4747), - [sym__strong_emphasis_open_underscore] = ACTIONS(4747), - }, - [STATE(1304)] = { - [sym__backslash_escape] = ACTIONS(4751), - [sym_entity_reference] = ACTIONS(4751), - [sym_numeric_character_reference] = ACTIONS(4751), - [anon_sym_LT] = ACTIONS(4753), - [anon_sym_GT] = ACTIONS(4751), - [anon_sym_BANG] = ACTIONS(4751), - [anon_sym_DQUOTE] = ACTIONS(4751), - [anon_sym_POUND] = ACTIONS(4751), - [anon_sym_DOLLAR] = ACTIONS(4751), - [anon_sym_PERCENT] = ACTIONS(4751), - [anon_sym_AMP] = ACTIONS(4753), - [anon_sym_SQUOTE] = ACTIONS(4751), - [anon_sym_PLUS] = ACTIONS(4751), - [anon_sym_COMMA] = ACTIONS(4751), - [anon_sym_DASH] = ACTIONS(4753), - [anon_sym_DOT] = ACTIONS(4753), - [anon_sym_SLASH] = ACTIONS(4751), - [anon_sym_COLON] = ACTIONS(4751), - [anon_sym_SEMI] = ACTIONS(4751), - [anon_sym_EQ] = ACTIONS(4751), - [anon_sym_QMARK] = ACTIONS(4751), - [anon_sym_LBRACK] = ACTIONS(4753), - [anon_sym_BSLASH] = ACTIONS(4753), - [anon_sym_CARET] = ACTIONS(4753), - [anon_sym_BQUOTE] = ACTIONS(4751), - [anon_sym_LBRACE] = ACTIONS(4751), - [anon_sym_PIPE] = ACTIONS(4751), - [anon_sym_TILDE] = ACTIONS(4751), - [anon_sym_LPAREN] = ACTIONS(4751), - [anon_sym_RPAREN] = ACTIONS(4751), - [sym__newline_token] = ACTIONS(4751), - [aux_sym_insert_token1] = ACTIONS(4751), - [aux_sym_delete_token1] = ACTIONS(4751), - [aux_sym_highlight_token1] = ACTIONS(4751), - [aux_sym_edit_comment_token1] = ACTIONS(4751), - [anon_sym_CARET_LBRACK] = ACTIONS(4751), - [anon_sym_LBRACK_CARET] = ACTIONS(4751), - [sym_uri_autolink] = ACTIONS(4751), - [sym_email_autolink] = ACTIONS(4751), - [sym__whitespace_ge_2] = ACTIONS(4751), - [aux_sym__whitespace_token1] = ACTIONS(4753), - [sym__word_no_digit] = ACTIONS(4751), - [sym__digits] = ACTIONS(4751), - [anon_sym_DASH_DASH] = ACTIONS(4753), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4751), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4751), - [sym__code_span_start] = ACTIONS(4751), - [sym__emphasis_open_star] = ACTIONS(4751), - [sym__emphasis_open_underscore] = ACTIONS(4751), - [sym__emphasis_close_star] = ACTIONS(4751), - [sym__strikeout_open] = ACTIONS(4751), - [sym__latex_span_start] = ACTIONS(4751), - [sym__single_quote_open] = ACTIONS(4751), - [sym__double_quote_open] = ACTIONS(4751), - [sym__superscript_open] = ACTIONS(4751), - [sym__subscript_open] = ACTIONS(4751), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4751), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4751), - [sym__cite_author_in_text] = ACTIONS(4751), - [sym__cite_suppress_author] = ACTIONS(4751), - [sym__shortcode_open_escaped] = ACTIONS(4751), - [sym__shortcode_open] = ACTIONS(4751), - [sym__unclosed_span] = ACTIONS(4751), - [sym__strong_emphasis_open_star] = ACTIONS(4751), - [sym__strong_emphasis_open_underscore] = ACTIONS(4751), - }, - [STATE(1305)] = { - [sym__backslash_escape] = ACTIONS(4755), - [sym_entity_reference] = ACTIONS(4755), - [sym_numeric_character_reference] = ACTIONS(4755), - [anon_sym_LT] = ACTIONS(4757), - [anon_sym_GT] = ACTIONS(4755), - [anon_sym_BANG] = ACTIONS(4755), - [anon_sym_DQUOTE] = ACTIONS(4755), - [anon_sym_POUND] = ACTIONS(4755), - [anon_sym_DOLLAR] = ACTIONS(4755), - [anon_sym_PERCENT] = ACTIONS(4755), - [anon_sym_AMP] = ACTIONS(4757), - [anon_sym_SQUOTE] = ACTIONS(4755), - [anon_sym_PLUS] = ACTIONS(4755), - [anon_sym_COMMA] = ACTIONS(4755), - [anon_sym_DASH] = ACTIONS(4757), - [anon_sym_DOT] = ACTIONS(4757), - [anon_sym_SLASH] = ACTIONS(4755), - [anon_sym_COLON] = ACTIONS(4755), - [anon_sym_SEMI] = ACTIONS(4755), - [anon_sym_EQ] = ACTIONS(4755), - [anon_sym_QMARK] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(4757), - [anon_sym_BSLASH] = ACTIONS(4757), - [anon_sym_CARET] = ACTIONS(4757), - [anon_sym_BQUOTE] = ACTIONS(4755), - [anon_sym_LBRACE] = ACTIONS(4755), - [anon_sym_PIPE] = ACTIONS(4755), - [anon_sym_TILDE] = ACTIONS(4755), - [anon_sym_LPAREN] = ACTIONS(4755), - [anon_sym_RPAREN] = ACTIONS(4755), - [sym__newline_token] = ACTIONS(4755), - [aux_sym_insert_token1] = ACTIONS(4755), - [aux_sym_delete_token1] = ACTIONS(4755), - [aux_sym_highlight_token1] = ACTIONS(4755), - [aux_sym_edit_comment_token1] = ACTIONS(4755), - [anon_sym_CARET_LBRACK] = ACTIONS(4755), - [anon_sym_LBRACK_CARET] = ACTIONS(4755), - [sym_uri_autolink] = ACTIONS(4755), - [sym_email_autolink] = ACTIONS(4755), - [sym__whitespace_ge_2] = ACTIONS(4755), - [aux_sym__whitespace_token1] = ACTIONS(4757), - [sym__word_no_digit] = ACTIONS(4755), - [sym__digits] = ACTIONS(4755), - [anon_sym_DASH_DASH] = ACTIONS(4757), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4755), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4755), - [sym__code_span_start] = ACTIONS(4755), - [sym__emphasis_open_star] = ACTIONS(4755), - [sym__emphasis_open_underscore] = ACTIONS(4755), - [sym__emphasis_close_star] = ACTIONS(4755), - [sym__strikeout_open] = ACTIONS(4755), - [sym__latex_span_start] = ACTIONS(4755), - [sym__single_quote_open] = ACTIONS(4755), - [sym__double_quote_open] = ACTIONS(4755), - [sym__superscript_open] = ACTIONS(4755), - [sym__subscript_open] = ACTIONS(4755), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4755), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4755), - [sym__cite_author_in_text] = ACTIONS(4755), - [sym__cite_suppress_author] = ACTIONS(4755), - [sym__shortcode_open_escaped] = ACTIONS(4755), - [sym__shortcode_open] = ACTIONS(4755), - [sym__unclosed_span] = ACTIONS(4755), - [sym__strong_emphasis_open_star] = ACTIONS(4755), - [sym__strong_emphasis_open_underscore] = ACTIONS(4755), - }, - [STATE(1306)] = { + [STATE(1307)] = { [sym__backslash_escape] = ACTIONS(4643), [sym_entity_reference] = ACTIONS(4643), [sym_numeric_character_reference] = ACTIONS(4643), @@ -136042,6 +136108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4643), [anon_sym_LBRACK] = ACTIONS(4645), [anon_sym_BSLASH] = ACTIONS(4645), + [anon_sym_RBRACK] = ACTIONS(4643), [anon_sym_CARET] = ACTIONS(4645), [anon_sym_BQUOTE] = ACTIONS(4643), [anon_sym_LBRACE] = ACTIONS(4643), @@ -136082,76 +136149,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__shortcode_open] = ACTIONS(4643), [sym__unclosed_span] = ACTIONS(4643), [sym__strong_emphasis_open_star] = ACTIONS(4643), - [sym__strong_emphasis_close_star] = ACTIONS(4643), [sym__strong_emphasis_open_underscore] = ACTIONS(4643), }, - [STATE(1307)] = { - [sym__backslash_escape] = ACTIONS(4647), - [sym_entity_reference] = ACTIONS(4647), - [sym_numeric_character_reference] = ACTIONS(4647), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4647), - [anon_sym_BANG] = ACTIONS(4647), - [anon_sym_DQUOTE] = ACTIONS(4647), - [anon_sym_POUND] = ACTIONS(4647), - [anon_sym_DOLLAR] = ACTIONS(4647), - [anon_sym_PERCENT] = ACTIONS(4647), - [anon_sym_AMP] = ACTIONS(4649), - [anon_sym_SQUOTE] = ACTIONS(4647), - [anon_sym_PLUS] = ACTIONS(4647), - [anon_sym_COMMA] = ACTIONS(4647), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_SLASH] = ACTIONS(4647), - [anon_sym_COLON] = ACTIONS(4647), - [anon_sym_SEMI] = ACTIONS(4647), - [anon_sym_EQ] = ACTIONS(4647), - [anon_sym_QMARK] = ACTIONS(4647), - [anon_sym_LBRACK] = ACTIONS(4649), - [anon_sym_BSLASH] = ACTIONS(4649), - [anon_sym_RBRACK] = ACTIONS(4647), - [anon_sym_CARET] = ACTIONS(4649), - [anon_sym_BQUOTE] = ACTIONS(4647), - [anon_sym_LBRACE] = ACTIONS(4647), - [anon_sym_PIPE] = ACTIONS(4647), - [anon_sym_TILDE] = ACTIONS(4647), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_RPAREN] = ACTIONS(4647), - [sym__newline_token] = ACTIONS(4647), - [aux_sym_insert_token1] = ACTIONS(4647), - [aux_sym_delete_token1] = ACTIONS(4647), - [aux_sym_highlight_token1] = ACTIONS(4647), - [aux_sym_edit_comment_token1] = ACTIONS(4647), - [anon_sym_CARET_LBRACK] = ACTIONS(4647), - [anon_sym_LBRACK_CARET] = ACTIONS(4647), - [sym_uri_autolink] = ACTIONS(4647), - [sym_email_autolink] = ACTIONS(4647), - [sym__whitespace_ge_2] = ACTIONS(4647), - [aux_sym__whitespace_token1] = ACTIONS(4649), - [sym__word_no_digit] = ACTIONS(4647), - [sym__digits] = ACTIONS(4647), - [anon_sym_DASH_DASH] = ACTIONS(4649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4647), - [sym__code_span_start] = ACTIONS(4647), - [sym__emphasis_open_star] = ACTIONS(4647), - [sym__emphasis_open_underscore] = ACTIONS(4647), - [sym__strikeout_open] = ACTIONS(4647), - [sym__latex_span_start] = ACTIONS(4647), - [sym__single_quote_open] = ACTIONS(4647), - [sym__double_quote_open] = ACTIONS(4647), - [sym__superscript_open] = ACTIONS(4647), - [sym__subscript_open] = ACTIONS(4647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4647), - [sym__cite_author_in_text] = ACTIONS(4647), - [sym__cite_suppress_author] = ACTIONS(4647), - [sym__shortcode_open_escaped] = ACTIONS(4647), - [sym__shortcode_open] = ACTIONS(4647), - [sym__unclosed_span] = ACTIONS(4647), - [sym__strong_emphasis_open_star] = ACTIONS(4647), - [sym__strong_emphasis_open_underscore] = ACTIONS(4647), - }, [STATE(1308)] = { [sym__backslash_escape] = ACTIONS(4181), [sym_entity_reference] = ACTIONS(4181), @@ -136220,73 +136219,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, [STATE(1309)] = { - [sym__backslash_escape] = ACTIONS(4759), - [sym_entity_reference] = ACTIONS(4759), - [sym_numeric_character_reference] = ACTIONS(4759), - [anon_sym_LT] = ACTIONS(4761), - [anon_sym_GT] = ACTIONS(4759), - [anon_sym_BANG] = ACTIONS(4759), - [anon_sym_DQUOTE] = ACTIONS(4759), - [anon_sym_POUND] = ACTIONS(4759), - [anon_sym_DOLLAR] = ACTIONS(4759), - [anon_sym_PERCENT] = ACTIONS(4759), - [anon_sym_AMP] = ACTIONS(4761), - [anon_sym_SQUOTE] = ACTIONS(4759), - [anon_sym_PLUS] = ACTIONS(4759), - [anon_sym_COMMA] = ACTIONS(4759), - [anon_sym_DASH] = ACTIONS(4761), - [anon_sym_DOT] = ACTIONS(4761), - [anon_sym_SLASH] = ACTIONS(4759), - [anon_sym_COLON] = ACTIONS(4759), - [anon_sym_SEMI] = ACTIONS(4759), - [anon_sym_EQ] = ACTIONS(4759), - [anon_sym_QMARK] = ACTIONS(4759), - [anon_sym_LBRACK] = ACTIONS(4761), - [anon_sym_BSLASH] = ACTIONS(4761), - [anon_sym_CARET] = ACTIONS(4761), - [anon_sym_BQUOTE] = ACTIONS(4759), - [anon_sym_LBRACE] = ACTIONS(4759), - [anon_sym_PIPE] = ACTIONS(4759), - [anon_sym_TILDE] = ACTIONS(4759), - [anon_sym_LPAREN] = ACTIONS(4759), - [anon_sym_RPAREN] = ACTIONS(4759), - [sym__newline_token] = ACTIONS(4759), - [aux_sym_insert_token1] = ACTIONS(4759), - [aux_sym_delete_token1] = ACTIONS(4759), - [aux_sym_highlight_token1] = ACTIONS(4759), - [aux_sym_edit_comment_token1] = ACTIONS(4759), - [anon_sym_CARET_LBRACK] = ACTIONS(4759), - [anon_sym_LBRACK_CARET] = ACTIONS(4759), - [sym_uri_autolink] = ACTIONS(4759), - [sym_email_autolink] = ACTIONS(4759), - [sym__whitespace_ge_2] = ACTIONS(4759), - [aux_sym__whitespace_token1] = ACTIONS(4761), - [sym__word_no_digit] = ACTIONS(4759), - [sym__digits] = ACTIONS(4759), - [anon_sym_DASH_DASH] = ACTIONS(4761), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4759), - [sym__code_span_start] = ACTIONS(4759), - [sym__emphasis_open_star] = ACTIONS(4759), - [sym__emphasis_open_underscore] = ACTIONS(4759), - [sym__emphasis_close_star] = ACTIONS(4759), - [sym__strikeout_open] = ACTIONS(4759), - [sym__latex_span_start] = ACTIONS(4759), - [sym__single_quote_open] = ACTIONS(4759), - [sym__double_quote_open] = ACTIONS(4759), - [sym__superscript_open] = ACTIONS(4759), - [sym__subscript_open] = ACTIONS(4759), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4759), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4759), - [sym__cite_author_in_text] = ACTIONS(4759), - [sym__cite_suppress_author] = ACTIONS(4759), - [sym__shortcode_open_escaped] = ACTIONS(4759), - [sym__shortcode_open] = ACTIONS(4759), - [sym__unclosed_span] = ACTIONS(4759), - [sym__strong_emphasis_open_star] = ACTIONS(4759), - [sym__strong_emphasis_open_underscore] = ACTIONS(4759), + [sym__backslash_escape] = ACTIONS(4647), + [sym_entity_reference] = ACTIONS(4647), + [sym_numeric_character_reference] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_POUND] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [anon_sym_PERCENT] = ACTIONS(4647), + [anon_sym_AMP] = ACTIONS(4649), + [anon_sym_SQUOTE] = ACTIONS(4647), + [anon_sym_PLUS] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4647), + [anon_sym_DASH] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4649), + [anon_sym_SLASH] = ACTIONS(4647), + [anon_sym_COLON] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_LBRACK] = ACTIONS(4649), + [anon_sym_BSLASH] = ACTIONS(4649), + [anon_sym_RBRACK] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(4649), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LBRACE] = ACTIONS(4647), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_TILDE] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4647), + [anon_sym_RPAREN] = ACTIONS(4647), + [sym__newline_token] = ACTIONS(4647), + [aux_sym_insert_token1] = ACTIONS(4647), + [aux_sym_delete_token1] = ACTIONS(4647), + [aux_sym_highlight_token1] = ACTIONS(4647), + [aux_sym_edit_comment_token1] = ACTIONS(4647), + [anon_sym_CARET_LBRACK] = ACTIONS(4647), + [anon_sym_LBRACK_CARET] = ACTIONS(4647), + [sym_uri_autolink] = ACTIONS(4647), + [sym_email_autolink] = ACTIONS(4647), + [sym__whitespace_ge_2] = ACTIONS(4647), + [aux_sym__whitespace_token1] = ACTIONS(4649), + [sym__word_no_digit] = ACTIONS(4647), + [sym__digits] = ACTIONS(4647), + [anon_sym_DASH_DASH] = ACTIONS(4649), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4647), + [sym__code_span_start] = ACTIONS(4647), + [sym__emphasis_open_star] = ACTIONS(4647), + [sym__emphasis_open_underscore] = ACTIONS(4647), + [sym__strikeout_open] = ACTIONS(4647), + [sym__latex_span_start] = ACTIONS(4647), + [sym__single_quote_open] = ACTIONS(4647), + [sym__double_quote_open] = ACTIONS(4647), + [sym__superscript_open] = ACTIONS(4647), + [sym__subscript_open] = ACTIONS(4647), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4647), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4647), + [sym__cite_author_in_text] = ACTIONS(4647), + [sym__cite_suppress_author] = ACTIONS(4647), + [sym__shortcode_open_escaped] = ACTIONS(4647), + [sym__shortcode_open] = ACTIONS(4647), + [sym__unclosed_span] = ACTIONS(4647), + [sym__strong_emphasis_open_star] = ACTIONS(4647), + [sym__strong_emphasis_open_underscore] = ACTIONS(4647), }, [STATE(1310)] = { + [sym__backslash_escape] = ACTIONS(4213), + [sym_entity_reference] = ACTIONS(4213), + [sym_numeric_character_reference] = ACTIONS(4213), + [anon_sym_LT] = ACTIONS(4215), + [anon_sym_GT] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(4213), + [anon_sym_DQUOTE] = ACTIONS(4213), + [anon_sym_POUND] = ACTIONS(4213), + [anon_sym_DOLLAR] = ACTIONS(4213), + [anon_sym_PERCENT] = ACTIONS(4213), + [anon_sym_AMP] = ACTIONS(4215), + [anon_sym_SQUOTE] = ACTIONS(4213), + [anon_sym_PLUS] = ACTIONS(4213), + [anon_sym_COMMA] = ACTIONS(4213), + [anon_sym_DASH] = ACTIONS(4215), + [anon_sym_DOT] = ACTIONS(4215), + [anon_sym_SLASH] = ACTIONS(4213), + [anon_sym_COLON] = ACTIONS(4213), + [anon_sym_SEMI] = ACTIONS(4213), + [anon_sym_EQ] = ACTIONS(4213), + [anon_sym_QMARK] = ACTIONS(4213), + [anon_sym_LBRACK] = ACTIONS(4215), + [anon_sym_BSLASH] = ACTIONS(4215), + [anon_sym_CARET] = ACTIONS(4215), + [anon_sym_BQUOTE] = ACTIONS(4213), + [anon_sym_LBRACE] = ACTIONS(4213), + [anon_sym_PIPE] = ACTIONS(4213), + [anon_sym_TILDE] = ACTIONS(4213), + [anon_sym_LPAREN] = ACTIONS(4213), + [anon_sym_RPAREN] = ACTIONS(4213), + [sym__newline_token] = ACTIONS(4213), + [aux_sym_insert_token1] = ACTIONS(4213), + [aux_sym_delete_token1] = ACTIONS(4213), + [aux_sym_highlight_token1] = ACTIONS(4213), + [aux_sym_edit_comment_token1] = ACTIONS(4213), + [anon_sym_CARET_LBRACK] = ACTIONS(4213), + [anon_sym_LBRACK_CARET] = ACTIONS(4213), + [sym_uri_autolink] = ACTIONS(4213), + [sym_email_autolink] = ACTIONS(4213), + [sym__whitespace_ge_2] = ACTIONS(4213), + [aux_sym__whitespace_token1] = ACTIONS(4215), + [sym__word_no_digit] = ACTIONS(4213), + [sym__digits] = ACTIONS(4213), + [anon_sym_DASH_DASH] = ACTIONS(4215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4213), + [sym__code_span_start] = ACTIONS(4213), + [sym__emphasis_open_star] = ACTIONS(4213), + [sym__emphasis_open_underscore] = ACTIONS(4213), + [sym__emphasis_close_star] = ACTIONS(4213), + [sym__strikeout_open] = ACTIONS(4213), + [sym__latex_span_start] = ACTIONS(4213), + [sym__single_quote_open] = ACTIONS(4213), + [sym__double_quote_open] = ACTIONS(4213), + [sym__superscript_open] = ACTIONS(4213), + [sym__subscript_open] = ACTIONS(4213), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4213), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4213), + [sym__cite_author_in_text] = ACTIONS(4213), + [sym__cite_suppress_author] = ACTIONS(4213), + [sym__shortcode_open_escaped] = ACTIONS(4213), + [sym__shortcode_open] = ACTIONS(4213), + [sym__unclosed_span] = ACTIONS(4213), + [sym__strong_emphasis_open_star] = ACTIONS(4213), + [sym__strong_emphasis_open_underscore] = ACTIONS(4213), + }, + [STATE(1311)] = { [sym__backslash_escape] = ACTIONS(4651), [sym_entity_reference] = ACTIONS(4651), [sym_numeric_character_reference] = ACTIONS(4651), @@ -136353,7 +136419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4651), [sym__strong_emphasis_open_underscore] = ACTIONS(4651), }, - [STATE(1311)] = { + [STATE(1312)] = { [sym__backslash_escape] = ACTIONS(4655), [sym_entity_reference] = ACTIONS(4655), [sym_numeric_character_reference] = ACTIONS(4655), @@ -136420,7 +136486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4655), [sym__strong_emphasis_open_underscore] = ACTIONS(4655), }, - [STATE(1312)] = { + [STATE(1313)] = { [sym__backslash_escape] = ACTIONS(4659), [sym_entity_reference] = ACTIONS(4659), [sym_numeric_character_reference] = ACTIONS(4659), @@ -136487,7 +136553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4659), [sym__strong_emphasis_open_underscore] = ACTIONS(4659), }, - [STATE(1313)] = { + [STATE(1314)] = { [sym__backslash_escape] = ACTIONS(4663), [sym_entity_reference] = ACTIONS(4663), [sym_numeric_character_reference] = ACTIONS(4663), @@ -136554,7 +136620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4663), [sym__strong_emphasis_open_underscore] = ACTIONS(4663), }, - [STATE(1314)] = { + [STATE(1315)] = { [sym__backslash_escape] = ACTIONS(4667), [sym_entity_reference] = ACTIONS(4667), [sym_numeric_character_reference] = ACTIONS(4667), @@ -136621,7 +136687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4667), [sym__strong_emphasis_open_underscore] = ACTIONS(4667), }, - [STATE(1315)] = { + [STATE(1316)] = { [sym__backslash_escape] = ACTIONS(4671), [sym_entity_reference] = ACTIONS(4671), [sym_numeric_character_reference] = ACTIONS(4671), @@ -136688,7 +136754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4671), [sym__strong_emphasis_open_underscore] = ACTIONS(4671), }, - [STATE(1316)] = { + [STATE(1317)] = { [sym__backslash_escape] = ACTIONS(4675), [sym_entity_reference] = ACTIONS(4675), [sym_numeric_character_reference] = ACTIONS(4675), @@ -136755,7 +136821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4675), [sym__strong_emphasis_open_underscore] = ACTIONS(4675), }, - [STATE(1317)] = { + [STATE(1318)] = { [sym__backslash_escape] = ACTIONS(4679), [sym_entity_reference] = ACTIONS(4679), [sym_numeric_character_reference] = ACTIONS(4679), @@ -136822,7 +136888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4679), [sym__strong_emphasis_open_underscore] = ACTIONS(4679), }, - [STATE(1318)] = { + [STATE(1319)] = { [sym__backslash_escape] = ACTIONS(4683), [sym_entity_reference] = ACTIONS(4683), [sym_numeric_character_reference] = ACTIONS(4683), @@ -136889,7 +136955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4683), [sym__strong_emphasis_open_underscore] = ACTIONS(4683), }, - [STATE(1319)] = { + [STATE(1320)] = { [sym__backslash_escape] = ACTIONS(4687), [sym_entity_reference] = ACTIONS(4687), [sym_numeric_character_reference] = ACTIONS(4687), @@ -136956,7 +137022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4687), [sym__strong_emphasis_open_underscore] = ACTIONS(4687), }, - [STATE(1320)] = { + [STATE(1321)] = { [sym__backslash_escape] = ACTIONS(4691), [sym_entity_reference] = ACTIONS(4691), [sym_numeric_character_reference] = ACTIONS(4691), @@ -137023,7 +137089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4691), [sym__strong_emphasis_open_underscore] = ACTIONS(4691), }, - [STATE(1321)] = { + [STATE(1322)] = { [sym__backslash_escape] = ACTIONS(4695), [sym_entity_reference] = ACTIONS(4695), [sym_numeric_character_reference] = ACTIONS(4695), @@ -137090,7 +137156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4695), [sym__strong_emphasis_open_underscore] = ACTIONS(4695), }, - [STATE(1322)] = { + [STATE(1323)] = { [sym__backslash_escape] = ACTIONS(4699), [sym_entity_reference] = ACTIONS(4699), [sym_numeric_character_reference] = ACTIONS(4699), @@ -137157,7 +137223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4699), [sym__strong_emphasis_open_underscore] = ACTIONS(4699), }, - [STATE(1323)] = { + [STATE(1324)] = { [sym__backslash_escape] = ACTIONS(4703), [sym_entity_reference] = ACTIONS(4703), [sym_numeric_character_reference] = ACTIONS(4703), @@ -137224,7 +137290,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4703), [sym__strong_emphasis_open_underscore] = ACTIONS(4703), }, - [STATE(1324)] = { + [STATE(1325)] = { + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_RBRACK] = ACTIONS(4271), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + }, + [STATE(1326)] = { + [ts_builtin_sym_end] = ACTIONS(4651), + [sym__backslash_escape] = ACTIONS(4651), + [sym_entity_reference] = ACTIONS(4651), + [sym_numeric_character_reference] = ACTIONS(4651), + [anon_sym_LT] = ACTIONS(4653), + [anon_sym_GT] = ACTIONS(4651), + [anon_sym_BANG] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(4651), + [anon_sym_POUND] = ACTIONS(4651), + [anon_sym_DOLLAR] = ACTIONS(4651), + [anon_sym_PERCENT] = ACTIONS(4651), + [anon_sym_AMP] = ACTIONS(4653), + [anon_sym_SQUOTE] = ACTIONS(4651), + [anon_sym_PLUS] = ACTIONS(4651), + [anon_sym_COMMA] = ACTIONS(4651), + [anon_sym_DASH] = ACTIONS(4653), + [anon_sym_DOT] = ACTIONS(4653), + [anon_sym_SLASH] = ACTIONS(4651), + [anon_sym_COLON] = ACTIONS(4651), + [anon_sym_SEMI] = ACTIONS(4651), + [anon_sym_EQ] = ACTIONS(4651), + [anon_sym_QMARK] = ACTIONS(4651), + [anon_sym_LBRACK] = ACTIONS(4653), + [anon_sym_BSLASH] = ACTIONS(4653), + [anon_sym_CARET] = ACTIONS(4653), + [anon_sym_BQUOTE] = ACTIONS(4651), + [anon_sym_LBRACE] = ACTIONS(4651), + [anon_sym_PIPE] = ACTIONS(4651), + [anon_sym_TILDE] = ACTIONS(4651), + [anon_sym_LPAREN] = ACTIONS(4651), + [anon_sym_RPAREN] = ACTIONS(4651), + [sym__newline_token] = ACTIONS(4651), + [aux_sym_insert_token1] = ACTIONS(4651), + [aux_sym_delete_token1] = ACTIONS(4651), + [aux_sym_highlight_token1] = ACTIONS(4651), + [aux_sym_edit_comment_token1] = ACTIONS(4651), + [anon_sym_CARET_LBRACK] = ACTIONS(4651), + [anon_sym_LBRACK_CARET] = ACTIONS(4651), + [sym_uri_autolink] = ACTIONS(4651), + [sym_email_autolink] = ACTIONS(4651), + [sym__whitespace_ge_2] = ACTIONS(4651), + [aux_sym__whitespace_token1] = ACTIONS(4653), + [sym__word_no_digit] = ACTIONS(4651), + [sym__digits] = ACTIONS(4651), + [anon_sym_DASH_DASH] = ACTIONS(4653), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4651), + [sym__code_span_start] = ACTIONS(4651), + [sym__emphasis_open_star] = ACTIONS(4651), + [sym__emphasis_open_underscore] = ACTIONS(4651), + [sym__strikeout_open] = ACTIONS(4651), + [sym__latex_span_start] = ACTIONS(4651), + [sym__single_quote_open] = ACTIONS(4651), + [sym__double_quote_open] = ACTIONS(4651), + [sym__superscript_open] = ACTIONS(4651), + [sym__subscript_open] = ACTIONS(4651), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4651), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4651), + [sym__cite_author_in_text] = ACTIONS(4651), + [sym__cite_suppress_author] = ACTIONS(4651), + [sym__shortcode_open_escaped] = ACTIONS(4651), + [sym__shortcode_open] = ACTIONS(4651), + [sym__unclosed_span] = ACTIONS(4651), + [sym__strong_emphasis_open_star] = ACTIONS(4651), + [sym__strong_emphasis_open_underscore] = ACTIONS(4651), + }, + [STATE(1327)] = { [sym__backslash_escape] = ACTIONS(4707), [sym_entity_reference] = ACTIONS(4707), [sym_numeric_character_reference] = ACTIONS(4707), @@ -137291,141 +137491,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4707), [sym__strong_emphasis_open_underscore] = ACTIONS(4707), }, - [STATE(1325)] = { - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_RBRACK] = ACTIONS(4275), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - }, - [STATE(1326)] = { - [sym__backslash_escape] = ACTIONS(4763), - [sym_entity_reference] = ACTIONS(4763), - [sym_numeric_character_reference] = ACTIONS(4763), - [anon_sym_LT] = ACTIONS(4765), - [anon_sym_GT] = ACTIONS(4763), - [anon_sym_BANG] = ACTIONS(4763), - [anon_sym_DQUOTE] = ACTIONS(4763), - [anon_sym_POUND] = ACTIONS(4763), - [anon_sym_DOLLAR] = ACTIONS(4763), - [anon_sym_PERCENT] = ACTIONS(4763), - [anon_sym_AMP] = ACTIONS(4765), - [anon_sym_SQUOTE] = ACTIONS(4763), - [anon_sym_PLUS] = ACTIONS(4763), - [anon_sym_COMMA] = ACTIONS(4763), - [anon_sym_DASH] = ACTIONS(4765), - [anon_sym_DOT] = ACTIONS(4765), - [anon_sym_SLASH] = ACTIONS(4763), - [anon_sym_COLON] = ACTIONS(4763), - [anon_sym_SEMI] = ACTIONS(4763), - [anon_sym_EQ] = ACTIONS(4763), - [anon_sym_QMARK] = ACTIONS(4763), - [anon_sym_LBRACK] = ACTIONS(4765), - [anon_sym_BSLASH] = ACTIONS(4765), - [anon_sym_CARET] = ACTIONS(4765), - [anon_sym_BQUOTE] = ACTIONS(4763), - [anon_sym_LBRACE] = ACTIONS(4763), - [anon_sym_PIPE] = ACTIONS(4763), - [anon_sym_TILDE] = ACTIONS(4763), - [anon_sym_LPAREN] = ACTIONS(4763), - [anon_sym_RPAREN] = ACTIONS(4763), - [sym__newline_token] = ACTIONS(4763), - [aux_sym_insert_token1] = ACTIONS(4763), - [aux_sym_delete_token1] = ACTIONS(4763), - [aux_sym_highlight_token1] = ACTIONS(4763), - [aux_sym_edit_comment_token1] = ACTIONS(4763), - [anon_sym_CARET_LBRACK] = ACTIONS(4763), - [anon_sym_LBRACK_CARET] = ACTIONS(4763), - [sym_uri_autolink] = ACTIONS(4763), - [sym_email_autolink] = ACTIONS(4763), - [sym__whitespace_ge_2] = ACTIONS(4763), - [aux_sym__whitespace_token1] = ACTIONS(4765), - [sym__word_no_digit] = ACTIONS(4763), - [sym__digits] = ACTIONS(4763), - [anon_sym_DASH_DASH] = ACTIONS(4765), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4763), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4763), - [sym__code_span_start] = ACTIONS(4763), - [sym__emphasis_open_star] = ACTIONS(4763), - [sym__emphasis_open_underscore] = ACTIONS(4763), - [sym__emphasis_close_star] = ACTIONS(4763), - [sym__strikeout_open] = ACTIONS(4763), - [sym__latex_span_start] = ACTIONS(4763), - [sym__single_quote_open] = ACTIONS(4763), - [sym__double_quote_open] = ACTIONS(4763), - [sym__superscript_open] = ACTIONS(4763), - [sym__subscript_open] = ACTIONS(4763), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4763), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4763), - [sym__cite_author_in_text] = ACTIONS(4763), - [sym__cite_suppress_author] = ACTIONS(4763), - [sym__shortcode_open_escaped] = ACTIONS(4763), - [sym__shortcode_open] = ACTIONS(4763), - [sym__unclosed_span] = ACTIONS(4763), - [sym__strong_emphasis_open_star] = ACTIONS(4763), - [sym__strong_emphasis_open_underscore] = ACTIONS(4763), + [STATE(1328)] = { + [sym__backslash_escape] = ACTIONS(4531), + [sym_entity_reference] = ACTIONS(4531), + [sym_numeric_character_reference] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_DQUOTE] = ACTIONS(4531), + [anon_sym_POUND] = ACTIONS(4531), + [anon_sym_DOLLAR] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4533), + [anon_sym_SQUOTE] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_DASH] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4533), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_BSLASH] = ACTIONS(4533), + [anon_sym_CARET] = ACTIONS(4533), + [anon_sym_BQUOTE] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_TILDE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_RPAREN] = ACTIONS(4531), + [sym__newline_token] = ACTIONS(4531), + [aux_sym_insert_token1] = ACTIONS(4531), + [aux_sym_delete_token1] = ACTIONS(4531), + [aux_sym_highlight_token1] = ACTIONS(4531), + [aux_sym_edit_comment_token1] = ACTIONS(4531), + [anon_sym_CARET_LBRACK] = ACTIONS(4531), + [anon_sym_LBRACK_CARET] = ACTIONS(4531), + [sym_uri_autolink] = ACTIONS(4531), + [sym_email_autolink] = ACTIONS(4531), + [sym__whitespace_ge_2] = ACTIONS(4531), + [aux_sym__whitespace_token1] = ACTIONS(4533), + [sym__word_no_digit] = ACTIONS(4531), + [sym__digits] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), + [sym__code_span_start] = ACTIONS(4531), + [sym__emphasis_open_star] = ACTIONS(4531), + [sym__emphasis_open_underscore] = ACTIONS(4531), + [sym__emphasis_close_star] = ACTIONS(4531), + [sym__strikeout_open] = ACTIONS(4531), + [sym__latex_span_start] = ACTIONS(4531), + [sym__single_quote_open] = ACTIONS(4531), + [sym__double_quote_open] = ACTIONS(4531), + [sym__superscript_open] = ACTIONS(4531), + [sym__subscript_open] = ACTIONS(4531), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), + [sym__cite_author_in_text] = ACTIONS(4531), + [sym__cite_suppress_author] = ACTIONS(4531), + [sym__shortcode_open_escaped] = ACTIONS(4531), + [sym__shortcode_open] = ACTIONS(4531), + [sym__unclosed_span] = ACTIONS(4531), + [sym__strong_emphasis_open_star] = ACTIONS(4531), + [sym__strong_emphasis_open_underscore] = ACTIONS(4531), }, - [STATE(1327)] = { + [STATE(1329)] = { [sym__backslash_escape] = ACTIONS(4711), [sym_entity_reference] = ACTIONS(4711), [sym_numeric_character_reference] = ACTIONS(4711), @@ -137492,74 +137625,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4711), [sym__strong_emphasis_open_underscore] = ACTIONS(4711), }, - [STATE(1328)] = { - [sym__backslash_escape] = ACTIONS(4527), - [sym_entity_reference] = ACTIONS(4527), - [sym_numeric_character_reference] = ACTIONS(4527), - [anon_sym_LT] = ACTIONS(4529), - [anon_sym_GT] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(4527), - [anon_sym_DQUOTE] = ACTIONS(4527), - [anon_sym_POUND] = ACTIONS(4527), - [anon_sym_DOLLAR] = ACTIONS(4527), - [anon_sym_PERCENT] = ACTIONS(4527), - [anon_sym_AMP] = ACTIONS(4529), - [anon_sym_SQUOTE] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(4527), - [anon_sym_COMMA] = ACTIONS(4527), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_DOT] = ACTIONS(4529), - [anon_sym_SLASH] = ACTIONS(4527), - [anon_sym_COLON] = ACTIONS(4527), - [anon_sym_SEMI] = ACTIONS(4527), - [anon_sym_EQ] = ACTIONS(4527), - [anon_sym_QMARK] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4529), - [anon_sym_BSLASH] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(4529), - [anon_sym_BQUOTE] = ACTIONS(4527), - [anon_sym_LBRACE] = ACTIONS(4527), - [anon_sym_PIPE] = ACTIONS(4527), - [anon_sym_TILDE] = ACTIONS(4527), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym_RPAREN] = ACTIONS(4527), - [sym__newline_token] = ACTIONS(4527), - [aux_sym_insert_token1] = ACTIONS(4527), - [aux_sym_delete_token1] = ACTIONS(4527), - [aux_sym_highlight_token1] = ACTIONS(4527), - [aux_sym_edit_comment_token1] = ACTIONS(4527), - [anon_sym_CARET_LBRACK] = ACTIONS(4527), - [anon_sym_LBRACK_CARET] = ACTIONS(4527), - [sym_uri_autolink] = ACTIONS(4527), - [sym_email_autolink] = ACTIONS(4527), - [sym__whitespace_ge_2] = ACTIONS(4527), - [aux_sym__whitespace_token1] = ACTIONS(4529), - [sym__word_no_digit] = ACTIONS(4527), - [sym__digits] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), - [sym__code_span_start] = ACTIONS(4527), - [sym__emphasis_open_star] = ACTIONS(4527), - [sym__emphasis_open_underscore] = ACTIONS(4527), - [sym__emphasis_close_star] = ACTIONS(4527), - [sym__strikeout_open] = ACTIONS(4527), - [sym__latex_span_start] = ACTIONS(4527), - [sym__single_quote_open] = ACTIONS(4527), - [sym__double_quote_open] = ACTIONS(4527), - [sym__superscript_open] = ACTIONS(4527), - [sym__subscript_open] = ACTIONS(4527), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), - [sym__cite_author_in_text] = ACTIONS(4527), - [sym__cite_suppress_author] = ACTIONS(4527), - [sym__shortcode_open_escaped] = ACTIONS(4527), - [sym__shortcode_open] = ACTIONS(4527), - [sym__unclosed_span] = ACTIONS(4527), - [sym__strong_emphasis_open_star] = ACTIONS(4527), - [sym__strong_emphasis_open_underscore] = ACTIONS(4527), + [STATE(1330)] = { + [sym__backslash_escape] = ACTIONS(4535), + [sym_entity_reference] = ACTIONS(4535), + [sym_numeric_character_reference] = ACTIONS(4535), + [anon_sym_LT] = ACTIONS(4537), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_BANG] = ACTIONS(4535), + [anon_sym_DQUOTE] = ACTIONS(4535), + [anon_sym_POUND] = ACTIONS(4535), + [anon_sym_DOLLAR] = ACTIONS(4535), + [anon_sym_PERCENT] = ACTIONS(4535), + [anon_sym_AMP] = ACTIONS(4537), + [anon_sym_SQUOTE] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_COMMA] = ACTIONS(4535), + [anon_sym_DASH] = ACTIONS(4537), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_COLON] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(4535), + [anon_sym_QMARK] = ACTIONS(4535), + [anon_sym_LBRACK] = ACTIONS(4537), + [anon_sym_BSLASH] = ACTIONS(4537), + [anon_sym_CARET] = ACTIONS(4537), + [anon_sym_BQUOTE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4535), + [anon_sym_PIPE] = ACTIONS(4535), + [anon_sym_TILDE] = ACTIONS(4535), + [anon_sym_LPAREN] = ACTIONS(4535), + [anon_sym_RPAREN] = ACTIONS(4535), + [sym__newline_token] = ACTIONS(4535), + [aux_sym_insert_token1] = ACTIONS(4535), + [aux_sym_delete_token1] = ACTIONS(4535), + [aux_sym_highlight_token1] = ACTIONS(4535), + [aux_sym_edit_comment_token1] = ACTIONS(4535), + [anon_sym_CARET_LBRACK] = ACTIONS(4535), + [anon_sym_LBRACK_CARET] = ACTIONS(4535), + [sym_uri_autolink] = ACTIONS(4535), + [sym_email_autolink] = ACTIONS(4535), + [sym__whitespace_ge_2] = ACTIONS(4535), + [aux_sym__whitespace_token1] = ACTIONS(4537), + [sym__word_no_digit] = ACTIONS(4535), + [sym__digits] = ACTIONS(4535), + [anon_sym_DASH_DASH] = ACTIONS(4537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4535), + [sym__code_span_start] = ACTIONS(4535), + [sym__emphasis_open_star] = ACTIONS(4535), + [sym__emphasis_open_underscore] = ACTIONS(4535), + [sym__emphasis_close_star] = ACTIONS(4535), + [sym__strikeout_open] = ACTIONS(4535), + [sym__latex_span_start] = ACTIONS(4535), + [sym__single_quote_open] = ACTIONS(4535), + [sym__double_quote_open] = ACTIONS(4535), + [sym__superscript_open] = ACTIONS(4535), + [sym__subscript_open] = ACTIONS(4535), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4535), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4535), + [sym__cite_author_in_text] = ACTIONS(4535), + [sym__cite_suppress_author] = ACTIONS(4535), + [sym__shortcode_open_escaped] = ACTIONS(4535), + [sym__shortcode_open] = ACTIONS(4535), + [sym__unclosed_span] = ACTIONS(4535), + [sym__strong_emphasis_open_star] = ACTIONS(4535), + [sym__strong_emphasis_open_underscore] = ACTIONS(4535), }, - [STATE(1329)] = { + [STATE(1331)] = { [sym__backslash_escape] = ACTIONS(4715), [sym_entity_reference] = ACTIONS(4715), [sym_numeric_character_reference] = ACTIONS(4715), @@ -137626,74 +137759,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4715), [sym__strong_emphasis_open_underscore] = ACTIONS(4715), }, - [STATE(1330)] = { - [sym__backslash_escape] = ACTIONS(4531), - [sym_entity_reference] = ACTIONS(4531), - [sym_numeric_character_reference] = ACTIONS(4531), - [anon_sym_LT] = ACTIONS(4533), - [anon_sym_GT] = ACTIONS(4531), - [anon_sym_BANG] = ACTIONS(4531), - [anon_sym_DQUOTE] = ACTIONS(4531), - [anon_sym_POUND] = ACTIONS(4531), - [anon_sym_DOLLAR] = ACTIONS(4531), - [anon_sym_PERCENT] = ACTIONS(4531), - [anon_sym_AMP] = ACTIONS(4533), - [anon_sym_SQUOTE] = ACTIONS(4531), - [anon_sym_PLUS] = ACTIONS(4531), - [anon_sym_COMMA] = ACTIONS(4531), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4533), - [anon_sym_SLASH] = ACTIONS(4531), - [anon_sym_COLON] = ACTIONS(4531), - [anon_sym_SEMI] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4531), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_BSLASH] = ACTIONS(4533), - [anon_sym_CARET] = ACTIONS(4533), - [anon_sym_BQUOTE] = ACTIONS(4531), - [anon_sym_LBRACE] = ACTIONS(4531), - [anon_sym_PIPE] = ACTIONS(4531), - [anon_sym_TILDE] = ACTIONS(4531), - [anon_sym_LPAREN] = ACTIONS(4531), - [anon_sym_RPAREN] = ACTIONS(4531), - [sym__newline_token] = ACTIONS(4531), - [aux_sym_insert_token1] = ACTIONS(4531), - [aux_sym_delete_token1] = ACTIONS(4531), - [aux_sym_highlight_token1] = ACTIONS(4531), - [aux_sym_edit_comment_token1] = ACTIONS(4531), - [anon_sym_CARET_LBRACK] = ACTIONS(4531), - [anon_sym_LBRACK_CARET] = ACTIONS(4531), - [sym_uri_autolink] = ACTIONS(4531), - [sym_email_autolink] = ACTIONS(4531), - [sym__whitespace_ge_2] = ACTIONS(4531), - [aux_sym__whitespace_token1] = ACTIONS(4533), - [sym__word_no_digit] = ACTIONS(4531), - [sym__digits] = ACTIONS(4531), - [anon_sym_DASH_DASH] = ACTIONS(4533), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), - [sym__code_span_start] = ACTIONS(4531), - [sym__emphasis_open_star] = ACTIONS(4531), - [sym__emphasis_open_underscore] = ACTIONS(4531), - [sym__emphasis_close_star] = ACTIONS(4531), - [sym__strikeout_open] = ACTIONS(4531), - [sym__latex_span_start] = ACTIONS(4531), - [sym__single_quote_open] = ACTIONS(4531), - [sym__double_quote_open] = ACTIONS(4531), - [sym__superscript_open] = ACTIONS(4531), - [sym__subscript_open] = ACTIONS(4531), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), - [sym__cite_author_in_text] = ACTIONS(4531), - [sym__cite_suppress_author] = ACTIONS(4531), - [sym__shortcode_open_escaped] = ACTIONS(4531), - [sym__shortcode_open] = ACTIONS(4531), - [sym__unclosed_span] = ACTIONS(4531), - [sym__strong_emphasis_open_star] = ACTIONS(4531), - [sym__strong_emphasis_open_underscore] = ACTIONS(4531), + [STATE(1332)] = { + [sym__backslash_escape] = ACTIONS(4539), + [sym_entity_reference] = ACTIONS(4539), + [sym_numeric_character_reference] = ACTIONS(4539), + [anon_sym_LT] = ACTIONS(4541), + [anon_sym_GT] = ACTIONS(4539), + [anon_sym_BANG] = ACTIONS(4539), + [anon_sym_DQUOTE] = ACTIONS(4539), + [anon_sym_POUND] = ACTIONS(4539), + [anon_sym_DOLLAR] = ACTIONS(4539), + [anon_sym_PERCENT] = ACTIONS(4539), + [anon_sym_AMP] = ACTIONS(4541), + [anon_sym_SQUOTE] = ACTIONS(4539), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_COMMA] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_SLASH] = ACTIONS(4539), + [anon_sym_COLON] = ACTIONS(4539), + [anon_sym_SEMI] = ACTIONS(4539), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4541), + [anon_sym_BSLASH] = ACTIONS(4541), + [anon_sym_CARET] = ACTIONS(4541), + [anon_sym_BQUOTE] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4539), + [anon_sym_PIPE] = ACTIONS(4539), + [anon_sym_TILDE] = ACTIONS(4539), + [anon_sym_LPAREN] = ACTIONS(4539), + [anon_sym_RPAREN] = ACTIONS(4539), + [sym__newline_token] = ACTIONS(4539), + [aux_sym_insert_token1] = ACTIONS(4539), + [aux_sym_delete_token1] = ACTIONS(4539), + [aux_sym_highlight_token1] = ACTIONS(4539), + [aux_sym_edit_comment_token1] = ACTIONS(4539), + [anon_sym_CARET_LBRACK] = ACTIONS(4539), + [anon_sym_LBRACK_CARET] = ACTIONS(4539), + [sym_uri_autolink] = ACTIONS(4539), + [sym_email_autolink] = ACTIONS(4539), + [sym__whitespace_ge_2] = ACTIONS(4539), + [aux_sym__whitespace_token1] = ACTIONS(4541), + [sym__word_no_digit] = ACTIONS(4539), + [sym__digits] = ACTIONS(4539), + [anon_sym_DASH_DASH] = ACTIONS(4541), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4539), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4539), + [sym__code_span_start] = ACTIONS(4539), + [sym__emphasis_open_star] = ACTIONS(4539), + [sym__emphasis_open_underscore] = ACTIONS(4539), + [sym__emphasis_close_star] = ACTIONS(4539), + [sym__strikeout_open] = ACTIONS(4539), + [sym__latex_span_start] = ACTIONS(4539), + [sym__single_quote_open] = ACTIONS(4539), + [sym__double_quote_open] = ACTIONS(4539), + [sym__superscript_open] = ACTIONS(4539), + [sym__subscript_open] = ACTIONS(4539), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4539), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4539), + [sym__cite_author_in_text] = ACTIONS(4539), + [sym__cite_suppress_author] = ACTIONS(4539), + [sym__shortcode_open_escaped] = ACTIONS(4539), + [sym__shortcode_open] = ACTIONS(4539), + [sym__unclosed_span] = ACTIONS(4539), + [sym__strong_emphasis_open_star] = ACTIONS(4539), + [sym__strong_emphasis_open_underscore] = ACTIONS(4539), }, - [STATE(1331)] = { + [STATE(1333)] = { + [sym__backslash_escape] = ACTIONS(4543), + [sym_entity_reference] = ACTIONS(4543), + [sym_numeric_character_reference] = ACTIONS(4543), + [anon_sym_LT] = ACTIONS(4545), + [anon_sym_GT] = ACTIONS(4543), + [anon_sym_BANG] = ACTIONS(4543), + [anon_sym_DQUOTE] = ACTIONS(4543), + [anon_sym_POUND] = ACTIONS(4543), + [anon_sym_DOLLAR] = ACTIONS(4543), + [anon_sym_PERCENT] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_SQUOTE] = ACTIONS(4543), + [anon_sym_PLUS] = ACTIONS(4543), + [anon_sym_COMMA] = ACTIONS(4543), + [anon_sym_DASH] = ACTIONS(4545), + [anon_sym_DOT] = ACTIONS(4545), + [anon_sym_SLASH] = ACTIONS(4543), + [anon_sym_COLON] = ACTIONS(4543), + [anon_sym_SEMI] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_QMARK] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4545), + [anon_sym_BSLASH] = ACTIONS(4545), + [anon_sym_CARET] = ACTIONS(4545), + [anon_sym_BQUOTE] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4543), + [anon_sym_PIPE] = ACTIONS(4543), + [anon_sym_TILDE] = ACTIONS(4543), + [anon_sym_LPAREN] = ACTIONS(4543), + [anon_sym_RPAREN] = ACTIONS(4543), + [sym__newline_token] = ACTIONS(4543), + [aux_sym_insert_token1] = ACTIONS(4543), + [aux_sym_delete_token1] = ACTIONS(4543), + [aux_sym_highlight_token1] = ACTIONS(4543), + [aux_sym_edit_comment_token1] = ACTIONS(4543), + [anon_sym_CARET_LBRACK] = ACTIONS(4543), + [anon_sym_LBRACK_CARET] = ACTIONS(4543), + [sym_uri_autolink] = ACTIONS(4543), + [sym_email_autolink] = ACTIONS(4543), + [sym__whitespace_ge_2] = ACTIONS(4543), + [aux_sym__whitespace_token1] = ACTIONS(4545), + [sym__word_no_digit] = ACTIONS(4543), + [sym__digits] = ACTIONS(4543), + [anon_sym_DASH_DASH] = ACTIONS(4545), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4543), + [sym__code_span_start] = ACTIONS(4543), + [sym__emphasis_open_star] = ACTIONS(4543), + [sym__emphasis_open_underscore] = ACTIONS(4543), + [sym__emphasis_close_star] = ACTIONS(4543), + [sym__strikeout_open] = ACTIONS(4543), + [sym__latex_span_start] = ACTIONS(4543), + [sym__single_quote_open] = ACTIONS(4543), + [sym__double_quote_open] = ACTIONS(4543), + [sym__superscript_open] = ACTIONS(4543), + [sym__subscript_open] = ACTIONS(4543), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4543), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4543), + [sym__cite_author_in_text] = ACTIONS(4543), + [sym__cite_suppress_author] = ACTIONS(4543), + [sym__shortcode_open_escaped] = ACTIONS(4543), + [sym__shortcode_open] = ACTIONS(4543), + [sym__unclosed_span] = ACTIONS(4543), + [sym__strong_emphasis_open_star] = ACTIONS(4543), + [sym__strong_emphasis_open_underscore] = ACTIONS(4543), + }, + [STATE(1334)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_RBRACK] = ACTIONS(4391), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), + }, + [STATE(1335)] = { + [sym__backslash_escape] = ACTIONS(4547), + [sym_entity_reference] = ACTIONS(4547), + [sym_numeric_character_reference] = ACTIONS(4547), + [anon_sym_LT] = ACTIONS(4549), + [anon_sym_GT] = ACTIONS(4547), + [anon_sym_BANG] = ACTIONS(4547), + [anon_sym_DQUOTE] = ACTIONS(4547), + [anon_sym_POUND] = ACTIONS(4547), + [anon_sym_DOLLAR] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_AMP] = ACTIONS(4549), + [anon_sym_SQUOTE] = ACTIONS(4547), + [anon_sym_PLUS] = ACTIONS(4547), + [anon_sym_COMMA] = ACTIONS(4547), + [anon_sym_DASH] = ACTIONS(4549), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_SLASH] = ACTIONS(4547), + [anon_sym_COLON] = ACTIONS(4547), + [anon_sym_SEMI] = ACTIONS(4547), + [anon_sym_EQ] = ACTIONS(4547), + [anon_sym_QMARK] = ACTIONS(4547), + [anon_sym_LBRACK] = ACTIONS(4549), + [anon_sym_BSLASH] = ACTIONS(4549), + [anon_sym_CARET] = ACTIONS(4549), + [anon_sym_BQUOTE] = ACTIONS(4547), + [anon_sym_LBRACE] = ACTIONS(4547), + [anon_sym_PIPE] = ACTIONS(4547), + [anon_sym_TILDE] = ACTIONS(4547), + [anon_sym_LPAREN] = ACTIONS(4547), + [anon_sym_RPAREN] = ACTIONS(4547), + [sym__newline_token] = ACTIONS(4547), + [aux_sym_insert_token1] = ACTIONS(4547), + [aux_sym_delete_token1] = ACTIONS(4547), + [aux_sym_highlight_token1] = ACTIONS(4547), + [aux_sym_edit_comment_token1] = ACTIONS(4547), + [anon_sym_CARET_LBRACK] = ACTIONS(4547), + [anon_sym_LBRACK_CARET] = ACTIONS(4547), + [sym_uri_autolink] = ACTIONS(4547), + [sym_email_autolink] = ACTIONS(4547), + [sym__whitespace_ge_2] = ACTIONS(4547), + [aux_sym__whitespace_token1] = ACTIONS(4549), + [sym__word_no_digit] = ACTIONS(4547), + [sym__digits] = ACTIONS(4547), + [anon_sym_DASH_DASH] = ACTIONS(4549), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4547), + [sym__code_span_start] = ACTIONS(4547), + [sym__emphasis_open_star] = ACTIONS(4547), + [sym__emphasis_open_underscore] = ACTIONS(4547), + [sym__emphasis_close_star] = ACTIONS(4547), + [sym__strikeout_open] = ACTIONS(4547), + [sym__latex_span_start] = ACTIONS(4547), + [sym__single_quote_open] = ACTIONS(4547), + [sym__double_quote_open] = ACTIONS(4547), + [sym__superscript_open] = ACTIONS(4547), + [sym__subscript_open] = ACTIONS(4547), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4547), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4547), + [sym__cite_author_in_text] = ACTIONS(4547), + [sym__cite_suppress_author] = ACTIONS(4547), + [sym__shortcode_open_escaped] = ACTIONS(4547), + [sym__shortcode_open] = ACTIONS(4547), + [sym__unclosed_span] = ACTIONS(4547), + [sym__strong_emphasis_open_star] = ACTIONS(4547), + [sym__strong_emphasis_open_underscore] = ACTIONS(4547), + }, + [STATE(1336)] = { [sym__backslash_escape] = ACTIONS(4719), [sym_entity_reference] = ACTIONS(4719), [sym_numeric_character_reference] = ACTIONS(4719), @@ -137760,275 +138094,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4719), [sym__strong_emphasis_open_underscore] = ACTIONS(4719), }, - [STATE(1332)] = { - [sym__backslash_escape] = ACTIONS(4209), - [sym_entity_reference] = ACTIONS(4209), - [sym_numeric_character_reference] = ACTIONS(4209), - [anon_sym_LT] = ACTIONS(4211), - [anon_sym_GT] = ACTIONS(4209), - [anon_sym_BANG] = ACTIONS(4209), - [anon_sym_DQUOTE] = ACTIONS(4209), - [anon_sym_POUND] = ACTIONS(4209), - [anon_sym_DOLLAR] = ACTIONS(4209), - [anon_sym_PERCENT] = ACTIONS(4209), - [anon_sym_AMP] = ACTIONS(4211), - [anon_sym_SQUOTE] = ACTIONS(4209), - [anon_sym_PLUS] = ACTIONS(4209), - [anon_sym_COMMA] = ACTIONS(4209), - [anon_sym_DASH] = ACTIONS(4211), - [anon_sym_DOT] = ACTIONS(4211), - [anon_sym_SLASH] = ACTIONS(4209), - [anon_sym_COLON] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4209), - [anon_sym_EQ] = ACTIONS(4209), - [anon_sym_QMARK] = ACTIONS(4209), - [anon_sym_LBRACK] = ACTIONS(4211), - [anon_sym_BSLASH] = ACTIONS(4211), - [anon_sym_CARET] = ACTIONS(4211), - [anon_sym_BQUOTE] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(4209), - [anon_sym_PIPE] = ACTIONS(4209), - [anon_sym_TILDE] = ACTIONS(4209), - [anon_sym_LPAREN] = ACTIONS(4209), - [anon_sym_RPAREN] = ACTIONS(4209), - [sym__newline_token] = ACTIONS(4209), - [aux_sym_insert_token1] = ACTIONS(4209), - [aux_sym_delete_token1] = ACTIONS(4209), - [aux_sym_highlight_token1] = ACTIONS(4209), - [aux_sym_edit_comment_token1] = ACTIONS(4209), - [anon_sym_CARET_LBRACK] = ACTIONS(4209), - [anon_sym_LBRACK_CARET] = ACTIONS(4209), - [sym_uri_autolink] = ACTIONS(4209), - [sym_email_autolink] = ACTIONS(4209), - [sym__whitespace_ge_2] = ACTIONS(4209), - [aux_sym__whitespace_token1] = ACTIONS(4211), - [sym__word_no_digit] = ACTIONS(4209), - [sym__digits] = ACTIONS(4209), - [anon_sym_DASH_DASH] = ACTIONS(4211), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4209), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4209), - [sym__code_span_start] = ACTIONS(4209), - [sym__emphasis_open_star] = ACTIONS(4209), - [sym__emphasis_open_underscore] = ACTIONS(4209), - [sym__emphasis_close_star] = ACTIONS(4209), - [sym__strikeout_open] = ACTIONS(4209), - [sym__latex_span_start] = ACTIONS(4209), - [sym__single_quote_open] = ACTIONS(4209), - [sym__double_quote_open] = ACTIONS(4209), - [sym__superscript_open] = ACTIONS(4209), - [sym__subscript_open] = ACTIONS(4209), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4209), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4209), - [sym__cite_author_in_text] = ACTIONS(4209), - [sym__cite_suppress_author] = ACTIONS(4209), - [sym__shortcode_open_escaped] = ACTIONS(4209), - [sym__shortcode_open] = ACTIONS(4209), - [sym__unclosed_span] = ACTIONS(4209), - [sym__strong_emphasis_open_star] = ACTIONS(4209), - [sym__strong_emphasis_open_underscore] = ACTIONS(4209), - }, - [STATE(1333)] = { - [ts_builtin_sym_end] = ACTIONS(4607), - [sym__backslash_escape] = ACTIONS(4607), - [sym_entity_reference] = ACTIONS(4607), - [sym_numeric_character_reference] = ACTIONS(4607), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(4607), - [anon_sym_DQUOTE] = ACTIONS(4607), - [anon_sym_POUND] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4607), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_AMP] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4607), - [anon_sym_COLON] = ACTIONS(4607), - [anon_sym_SEMI] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_QMARK] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4609), - [anon_sym_BSLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym_BQUOTE] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [anon_sym_PIPE] = ACTIONS(4607), - [anon_sym_TILDE] = ACTIONS(4607), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [sym__newline_token] = ACTIONS(4607), - [aux_sym_insert_token1] = ACTIONS(4607), - [aux_sym_delete_token1] = ACTIONS(4607), - [aux_sym_highlight_token1] = ACTIONS(4607), - [aux_sym_edit_comment_token1] = ACTIONS(4607), - [anon_sym_CARET_LBRACK] = ACTIONS(4607), - [anon_sym_LBRACK_CARET] = ACTIONS(4607), - [sym_uri_autolink] = ACTIONS(4607), - [sym_email_autolink] = ACTIONS(4607), - [sym__whitespace_ge_2] = ACTIONS(4607), - [aux_sym__whitespace_token1] = ACTIONS(4609), - [sym__word_no_digit] = ACTIONS(4607), - [sym__digits] = ACTIONS(4607), - [anon_sym_DASH_DASH] = ACTIONS(4609), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4607), - [sym__code_span_start] = ACTIONS(4607), - [sym__emphasis_open_star] = ACTIONS(4607), - [sym__emphasis_open_underscore] = ACTIONS(4607), - [sym__strikeout_open] = ACTIONS(4607), - [sym__latex_span_start] = ACTIONS(4607), - [sym__single_quote_open] = ACTIONS(4607), - [sym__double_quote_open] = ACTIONS(4607), - [sym__superscript_open] = ACTIONS(4607), - [sym__subscript_open] = ACTIONS(4607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4607), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4607), - [sym__cite_author_in_text] = ACTIONS(4607), - [sym__cite_suppress_author] = ACTIONS(4607), - [sym__shortcode_open_escaped] = ACTIONS(4607), - [sym__shortcode_open] = ACTIONS(4607), - [sym__unclosed_span] = ACTIONS(4607), - [sym__strong_emphasis_open_star] = ACTIONS(4607), - [sym__strong_emphasis_open_underscore] = ACTIONS(4607), + [STATE(1337)] = { + [sym__backslash_escape] = ACTIONS(4217), + [sym_entity_reference] = ACTIONS(4217), + [sym_numeric_character_reference] = ACTIONS(4217), + [anon_sym_LT] = ACTIONS(4219), + [anon_sym_GT] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4217), + [anon_sym_DQUOTE] = ACTIONS(4217), + [anon_sym_POUND] = ACTIONS(4217), + [anon_sym_DOLLAR] = ACTIONS(4217), + [anon_sym_PERCENT] = ACTIONS(4217), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_SQUOTE] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4217), + [anon_sym_COMMA] = ACTIONS(4217), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_DOT] = ACTIONS(4219), + [anon_sym_SLASH] = ACTIONS(4217), + [anon_sym_COLON] = ACTIONS(4217), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_EQ] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_BSLASH] = ACTIONS(4219), + [anon_sym_CARET] = ACTIONS(4219), + [anon_sym_BQUOTE] = ACTIONS(4217), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_PIPE] = ACTIONS(4217), + [anon_sym_TILDE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_RPAREN] = ACTIONS(4217), + [sym__newline_token] = ACTIONS(4217), + [aux_sym_insert_token1] = ACTIONS(4217), + [aux_sym_delete_token1] = ACTIONS(4217), + [aux_sym_highlight_token1] = ACTIONS(4217), + [aux_sym_edit_comment_token1] = ACTIONS(4217), + [anon_sym_CARET_LBRACK] = ACTIONS(4217), + [anon_sym_LBRACK_CARET] = ACTIONS(4217), + [sym_uri_autolink] = ACTIONS(4217), + [sym_email_autolink] = ACTIONS(4217), + [sym__whitespace_ge_2] = ACTIONS(4217), + [aux_sym__whitespace_token1] = ACTIONS(4219), + [sym__word_no_digit] = ACTIONS(4217), + [sym__digits] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4219), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4217), + [sym__code_span_start] = ACTIONS(4217), + [sym__emphasis_open_star] = ACTIONS(4217), + [sym__emphasis_open_underscore] = ACTIONS(4217), + [sym__emphasis_close_star] = ACTIONS(4217), + [sym__strikeout_open] = ACTIONS(4217), + [sym__latex_span_start] = ACTIONS(4217), + [sym__single_quote_open] = ACTIONS(4217), + [sym__double_quote_open] = ACTIONS(4217), + [sym__superscript_open] = ACTIONS(4217), + [sym__subscript_open] = ACTIONS(4217), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4217), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4217), + [sym__cite_author_in_text] = ACTIONS(4217), + [sym__cite_suppress_author] = ACTIONS(4217), + [sym__shortcode_open_escaped] = ACTIONS(4217), + [sym__shortcode_open] = ACTIONS(4217), + [sym__unclosed_span] = ACTIONS(4217), + [sym__strong_emphasis_open_star] = ACTIONS(4217), + [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, - [STATE(1334)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_RBRACK] = ACTIONS(4413), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), + [STATE(1338)] = { + [ts_builtin_sym_end] = ACTIONS(4603), + [sym__backslash_escape] = ACTIONS(4603), + [sym_entity_reference] = ACTIONS(4603), + [sym_numeric_character_reference] = ACTIONS(4603), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_GT] = ACTIONS(4603), + [anon_sym_BANG] = ACTIONS(4603), + [anon_sym_DQUOTE] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4603), + [anon_sym_DOLLAR] = ACTIONS(4603), + [anon_sym_PERCENT] = ACTIONS(4603), + [anon_sym_AMP] = ACTIONS(4605), + [anon_sym_SQUOTE] = ACTIONS(4603), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_COMMA] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [anon_sym_LBRACK] = ACTIONS(4605), + [anon_sym_BSLASH] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4605), + [anon_sym_BQUOTE] = ACTIONS(4603), + [anon_sym_LBRACE] = ACTIONS(4603), + [anon_sym_PIPE] = ACTIONS(4603), + [anon_sym_TILDE] = ACTIONS(4603), + [anon_sym_LPAREN] = ACTIONS(4603), + [anon_sym_RPAREN] = ACTIONS(4603), + [sym__newline_token] = ACTIONS(4603), + [aux_sym_insert_token1] = ACTIONS(4603), + [aux_sym_delete_token1] = ACTIONS(4603), + [aux_sym_highlight_token1] = ACTIONS(4603), + [aux_sym_edit_comment_token1] = ACTIONS(4603), + [anon_sym_CARET_LBRACK] = ACTIONS(4603), + [anon_sym_LBRACK_CARET] = ACTIONS(4603), + [sym_uri_autolink] = ACTIONS(4603), + [sym_email_autolink] = ACTIONS(4603), + [sym__whitespace_ge_2] = ACTIONS(4603), + [aux_sym__whitespace_token1] = ACTIONS(4605), + [sym__word_no_digit] = ACTIONS(4603), + [sym__digits] = ACTIONS(4603), + [anon_sym_DASH_DASH] = ACTIONS(4605), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4603), + [sym__code_span_start] = ACTIONS(4603), + [sym__emphasis_open_star] = ACTIONS(4603), + [sym__emphasis_open_underscore] = ACTIONS(4603), + [sym__strikeout_open] = ACTIONS(4603), + [sym__latex_span_start] = ACTIONS(4603), + [sym__single_quote_open] = ACTIONS(4603), + [sym__double_quote_open] = ACTIONS(4603), + [sym__superscript_open] = ACTIONS(4603), + [sym__subscript_open] = ACTIONS(4603), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4603), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4603), + [sym__cite_author_in_text] = ACTIONS(4603), + [sym__cite_suppress_author] = ACTIONS(4603), + [sym__shortcode_open_escaped] = ACTIONS(4603), + [sym__shortcode_open] = ACTIONS(4603), + [sym__unclosed_span] = ACTIONS(4603), + [sym__strong_emphasis_open_star] = ACTIONS(4603), + [sym__strong_emphasis_open_underscore] = ACTIONS(4603), }, - [STATE(1335)] = { - [sym__backslash_escape] = ACTIONS(4213), - [sym_entity_reference] = ACTIONS(4213), - [sym_numeric_character_reference] = ACTIONS(4213), - [anon_sym_LT] = ACTIONS(4215), - [anon_sym_GT] = ACTIONS(4213), - [anon_sym_BANG] = ACTIONS(4213), - [anon_sym_DQUOTE] = ACTIONS(4213), - [anon_sym_POUND] = ACTIONS(4213), - [anon_sym_DOLLAR] = ACTIONS(4213), - [anon_sym_PERCENT] = ACTIONS(4213), - [anon_sym_AMP] = ACTIONS(4215), - [anon_sym_SQUOTE] = ACTIONS(4213), - [anon_sym_PLUS] = ACTIONS(4213), - [anon_sym_COMMA] = ACTIONS(4213), - [anon_sym_DASH] = ACTIONS(4215), - [anon_sym_DOT] = ACTIONS(4215), - [anon_sym_SLASH] = ACTIONS(4213), - [anon_sym_COLON] = ACTIONS(4213), - [anon_sym_SEMI] = ACTIONS(4213), - [anon_sym_EQ] = ACTIONS(4213), - [anon_sym_QMARK] = ACTIONS(4213), - [anon_sym_LBRACK] = ACTIONS(4215), - [anon_sym_BSLASH] = ACTIONS(4215), - [anon_sym_CARET] = ACTIONS(4215), - [anon_sym_BQUOTE] = ACTIONS(4213), - [anon_sym_LBRACE] = ACTIONS(4213), - [anon_sym_PIPE] = ACTIONS(4213), - [anon_sym_TILDE] = ACTIONS(4213), - [anon_sym_LPAREN] = ACTIONS(4213), - [anon_sym_RPAREN] = ACTIONS(4213), - [sym__newline_token] = ACTIONS(4213), - [aux_sym_insert_token1] = ACTIONS(4213), - [aux_sym_delete_token1] = ACTIONS(4213), - [aux_sym_highlight_token1] = ACTIONS(4213), - [aux_sym_edit_comment_token1] = ACTIONS(4213), - [anon_sym_CARET_LBRACK] = ACTIONS(4213), - [anon_sym_LBRACK_CARET] = ACTIONS(4213), - [sym_uri_autolink] = ACTIONS(4213), - [sym_email_autolink] = ACTIONS(4213), - [sym__whitespace_ge_2] = ACTIONS(4213), - [aux_sym__whitespace_token1] = ACTIONS(4215), - [sym__word_no_digit] = ACTIONS(4213), - [sym__digits] = ACTIONS(4213), - [anon_sym_DASH_DASH] = ACTIONS(4215), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4213), - [sym__code_span_start] = ACTIONS(4213), - [sym__emphasis_open_star] = ACTIONS(4213), - [sym__emphasis_open_underscore] = ACTIONS(4213), - [sym__emphasis_close_star] = ACTIONS(4213), - [sym__strikeout_open] = ACTIONS(4213), - [sym__latex_span_start] = ACTIONS(4213), - [sym__single_quote_open] = ACTIONS(4213), - [sym__double_quote_open] = ACTIONS(4213), - [sym__superscript_open] = ACTIONS(4213), - [sym__subscript_open] = ACTIONS(4213), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4213), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4213), - [sym__cite_author_in_text] = ACTIONS(4213), - [sym__cite_suppress_author] = ACTIONS(4213), - [sym__shortcode_open_escaped] = ACTIONS(4213), - [sym__shortcode_open] = ACTIONS(4213), - [sym__unclosed_span] = ACTIONS(4213), - [sym__strong_emphasis_open_star] = ACTIONS(4213), - [sym__strong_emphasis_open_underscore] = ACTIONS(4213), - }, - [STATE(1336)] = { + [STATE(1339)] = { [sym__backslash_escape] = ACTIONS(4723), [sym_entity_reference] = ACTIONS(4723), [sym_numeric_character_reference] = ACTIONS(4723), @@ -138095,141 +138295,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4723), [sym__strong_emphasis_open_underscore] = ACTIONS(4723), }, - [STATE(1337)] = { - [ts_builtin_sym_end] = ACTIONS(4655), - [sym__backslash_escape] = ACTIONS(4655), - [sym_entity_reference] = ACTIONS(4655), - [sym_numeric_character_reference] = ACTIONS(4655), - [anon_sym_LT] = ACTIONS(4657), - [anon_sym_GT] = ACTIONS(4655), - [anon_sym_BANG] = ACTIONS(4655), - [anon_sym_DQUOTE] = ACTIONS(4655), - [anon_sym_POUND] = ACTIONS(4655), - [anon_sym_DOLLAR] = ACTIONS(4655), - [anon_sym_PERCENT] = ACTIONS(4655), - [anon_sym_AMP] = ACTIONS(4657), - [anon_sym_SQUOTE] = ACTIONS(4655), - [anon_sym_PLUS] = ACTIONS(4655), - [anon_sym_COMMA] = ACTIONS(4655), - [anon_sym_DASH] = ACTIONS(4657), - [anon_sym_DOT] = ACTIONS(4657), - [anon_sym_SLASH] = ACTIONS(4655), - [anon_sym_COLON] = ACTIONS(4655), - [anon_sym_SEMI] = ACTIONS(4655), - [anon_sym_EQ] = ACTIONS(4655), - [anon_sym_QMARK] = ACTIONS(4655), - [anon_sym_LBRACK] = ACTIONS(4657), - [anon_sym_BSLASH] = ACTIONS(4657), - [anon_sym_CARET] = ACTIONS(4657), - [anon_sym_BQUOTE] = ACTIONS(4655), - [anon_sym_LBRACE] = ACTIONS(4655), - [anon_sym_PIPE] = ACTIONS(4655), - [anon_sym_TILDE] = ACTIONS(4655), - [anon_sym_LPAREN] = ACTIONS(4655), - [anon_sym_RPAREN] = ACTIONS(4655), - [sym__newline_token] = ACTIONS(4655), - [aux_sym_insert_token1] = ACTIONS(4655), - [aux_sym_delete_token1] = ACTIONS(4655), - [aux_sym_highlight_token1] = ACTIONS(4655), - [aux_sym_edit_comment_token1] = ACTIONS(4655), - [anon_sym_CARET_LBRACK] = ACTIONS(4655), - [anon_sym_LBRACK_CARET] = ACTIONS(4655), - [sym_uri_autolink] = ACTIONS(4655), - [sym_email_autolink] = ACTIONS(4655), - [sym__whitespace_ge_2] = ACTIONS(4655), - [aux_sym__whitespace_token1] = ACTIONS(4657), - [sym__word_no_digit] = ACTIONS(4655), - [sym__digits] = ACTIONS(4655), - [anon_sym_DASH_DASH] = ACTIONS(4657), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4655), - [sym__code_span_start] = ACTIONS(4655), - [sym__emphasis_open_star] = ACTIONS(4655), - [sym__emphasis_open_underscore] = ACTIONS(4655), - [sym__strikeout_open] = ACTIONS(4655), - [sym__latex_span_start] = ACTIONS(4655), - [sym__single_quote_open] = ACTIONS(4655), - [sym__double_quote_open] = ACTIONS(4655), - [sym__superscript_open] = ACTIONS(4655), - [sym__subscript_open] = ACTIONS(4655), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4655), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4655), - [sym__cite_author_in_text] = ACTIONS(4655), - [sym__cite_suppress_author] = ACTIONS(4655), - [sym__shortcode_open_escaped] = ACTIONS(4655), - [sym__shortcode_open] = ACTIONS(4655), - [sym__unclosed_span] = ACTIONS(4655), - [sym__strong_emphasis_open_star] = ACTIONS(4655), - [sym__strong_emphasis_open_underscore] = ACTIONS(4655), - }, - [STATE(1338)] = { - [sym__backslash_escape] = ACTIONS(4535), - [sym_entity_reference] = ACTIONS(4535), - [sym_numeric_character_reference] = ACTIONS(4535), - [anon_sym_LT] = ACTIONS(4537), - [anon_sym_GT] = ACTIONS(4535), - [anon_sym_BANG] = ACTIONS(4535), - [anon_sym_DQUOTE] = ACTIONS(4535), - [anon_sym_POUND] = ACTIONS(4535), - [anon_sym_DOLLAR] = ACTIONS(4535), - [anon_sym_PERCENT] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_SQUOTE] = ACTIONS(4535), - [anon_sym_PLUS] = ACTIONS(4535), - [anon_sym_COMMA] = ACTIONS(4535), - [anon_sym_DASH] = ACTIONS(4537), - [anon_sym_DOT] = ACTIONS(4537), - [anon_sym_SLASH] = ACTIONS(4535), - [anon_sym_COLON] = ACTIONS(4535), - [anon_sym_SEMI] = ACTIONS(4535), - [anon_sym_EQ] = ACTIONS(4535), - [anon_sym_QMARK] = ACTIONS(4535), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_BSLASH] = ACTIONS(4537), - [anon_sym_CARET] = ACTIONS(4537), - [anon_sym_BQUOTE] = ACTIONS(4535), - [anon_sym_LBRACE] = ACTIONS(4535), - [anon_sym_PIPE] = ACTIONS(4535), - [anon_sym_TILDE] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4535), - [anon_sym_RPAREN] = ACTIONS(4535), - [sym__newline_token] = ACTIONS(4535), - [aux_sym_insert_token1] = ACTIONS(4535), - [aux_sym_delete_token1] = ACTIONS(4535), - [aux_sym_highlight_token1] = ACTIONS(4535), - [aux_sym_edit_comment_token1] = ACTIONS(4535), - [anon_sym_CARET_LBRACK] = ACTIONS(4535), - [anon_sym_LBRACK_CARET] = ACTIONS(4535), - [sym_uri_autolink] = ACTIONS(4535), - [sym_email_autolink] = ACTIONS(4535), - [sym__whitespace_ge_2] = ACTIONS(4535), - [aux_sym__whitespace_token1] = ACTIONS(4537), - [sym__word_no_digit] = ACTIONS(4535), - [sym__digits] = ACTIONS(4535), - [anon_sym_DASH_DASH] = ACTIONS(4537), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4535), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4535), - [sym__code_span_start] = ACTIONS(4535), - [sym__emphasis_open_star] = ACTIONS(4535), - [sym__emphasis_open_underscore] = ACTIONS(4535), - [sym__emphasis_close_star] = ACTIONS(4535), - [sym__strikeout_open] = ACTIONS(4535), - [sym__latex_span_start] = ACTIONS(4535), - [sym__single_quote_open] = ACTIONS(4535), - [sym__double_quote_open] = ACTIONS(4535), - [sym__superscript_open] = ACTIONS(4535), - [sym__subscript_open] = ACTIONS(4535), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4535), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4535), - [sym__cite_author_in_text] = ACTIONS(4535), - [sym__cite_suppress_author] = ACTIONS(4535), - [sym__shortcode_open_escaped] = ACTIONS(4535), - [sym__shortcode_open] = ACTIONS(4535), - [sym__unclosed_span] = ACTIONS(4535), - [sym__strong_emphasis_open_star] = ACTIONS(4535), - [sym__strong_emphasis_open_underscore] = ACTIONS(4535), + [STATE(1340)] = { + [sym__backslash_escape] = ACTIONS(4527), + [sym_entity_reference] = ACTIONS(4527), + [sym_numeric_character_reference] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_POUND] = ACTIONS(4527), + [anon_sym_DOLLAR] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_BSLASH] = ACTIONS(4529), + [anon_sym_RBRACK] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(4529), + [anon_sym_BQUOTE] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_RPAREN] = ACTIONS(4527), + [sym__newline_token] = ACTIONS(4527), + [aux_sym_insert_token1] = ACTIONS(4527), + [aux_sym_delete_token1] = ACTIONS(4527), + [aux_sym_highlight_token1] = ACTIONS(4527), + [aux_sym_edit_comment_token1] = ACTIONS(4527), + [anon_sym_CARET_LBRACK] = ACTIONS(4527), + [anon_sym_LBRACK_CARET] = ACTIONS(4527), + [sym_uri_autolink] = ACTIONS(4527), + [sym_email_autolink] = ACTIONS(4527), + [sym__whitespace_ge_2] = ACTIONS(4527), + [aux_sym__whitespace_token1] = ACTIONS(4529), + [sym__word_no_digit] = ACTIONS(4527), + [sym__digits] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), + [sym__code_span_start] = ACTIONS(4527), + [sym__emphasis_open_star] = ACTIONS(4527), + [sym__emphasis_open_underscore] = ACTIONS(4527), + [sym__strikeout_open] = ACTIONS(4527), + [sym__latex_span_start] = ACTIONS(4527), + [sym__single_quote_open] = ACTIONS(4527), + [sym__double_quote_open] = ACTIONS(4527), + [sym__superscript_open] = ACTIONS(4527), + [sym__subscript_open] = ACTIONS(4527), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), + [sym__cite_author_in_text] = ACTIONS(4527), + [sym__cite_suppress_author] = ACTIONS(4527), + [sym__shortcode_open_escaped] = ACTIONS(4527), + [sym__shortcode_open] = ACTIONS(4527), + [sym__unclosed_span] = ACTIONS(4527), + [sym__strong_emphasis_open_star] = ACTIONS(4527), + [sym__strong_emphasis_open_underscore] = ACTIONS(4527), }, - [STATE(1339)] = { + [STATE(1341)] = { [sym__backslash_escape] = ACTIONS(4727), [sym_entity_reference] = ACTIONS(4727), [sym_numeric_character_reference] = ACTIONS(4727), @@ -138296,7 +138429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4727), [sym__strong_emphasis_open_underscore] = ACTIONS(4727), }, - [STATE(1340)] = { + [STATE(1342)] = { [sym__backslash_escape] = ACTIONS(4731), [sym_entity_reference] = ACTIONS(4731), [sym_numeric_character_reference] = ACTIONS(4731), @@ -138363,7 +138496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4731), [sym__strong_emphasis_open_underscore] = ACTIONS(4731), }, - [STATE(1341)] = { + [STATE(1343)] = { [sym__backslash_escape] = ACTIONS(4735), [sym_entity_reference] = ACTIONS(4735), [sym_numeric_character_reference] = ACTIONS(4735), @@ -138430,7 +138563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4735), [sym__strong_emphasis_open_underscore] = ACTIONS(4735), }, - [STATE(1342)] = { + [STATE(1344)] = { [sym__backslash_escape] = ACTIONS(4739), [sym_entity_reference] = ACTIONS(4739), [sym_numeric_character_reference] = ACTIONS(4739), @@ -138497,7 +138630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4739), [sym__strong_emphasis_open_underscore] = ACTIONS(4739), }, - [STATE(1343)] = { + [STATE(1345)] = { [sym__backslash_escape] = ACTIONS(4743), [sym_entity_reference] = ACTIONS(4743), [sym_numeric_character_reference] = ACTIONS(4743), @@ -138564,7 +138697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4743), [sym__strong_emphasis_open_underscore] = ACTIONS(4743), }, - [STATE(1344)] = { + [STATE(1346)] = { [sym__backslash_escape] = ACTIONS(4747), [sym_entity_reference] = ACTIONS(4747), [sym_numeric_character_reference] = ACTIONS(4747), @@ -138631,7 +138764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4747), [sym__strong_emphasis_open_underscore] = ACTIONS(4747), }, - [STATE(1345)] = { + [STATE(1347)] = { [sym__backslash_escape] = ACTIONS(4751), [sym_entity_reference] = ACTIONS(4751), [sym_numeric_character_reference] = ACTIONS(4751), @@ -138698,7 +138831,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4751), [sym__strong_emphasis_open_underscore] = ACTIONS(4751), }, - [STATE(1346)] = { + [STATE(1348)] = { + [sym__backslash_escape] = ACTIONS(4221), + [sym_entity_reference] = ACTIONS(4221), + [sym_numeric_character_reference] = ACTIONS(4221), + [anon_sym_LT] = ACTIONS(4223), + [anon_sym_GT] = ACTIONS(4221), + [anon_sym_BANG] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4221), + [anon_sym_POUND] = ACTIONS(4221), + [anon_sym_DOLLAR] = ACTIONS(4221), + [anon_sym_PERCENT] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_SQUOTE] = ACTIONS(4221), + [anon_sym_PLUS] = ACTIONS(4221), + [anon_sym_COMMA] = ACTIONS(4221), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_DOT] = ACTIONS(4223), + [anon_sym_SLASH] = ACTIONS(4221), + [anon_sym_COLON] = ACTIONS(4221), + [anon_sym_SEMI] = ACTIONS(4221), + [anon_sym_EQ] = ACTIONS(4221), + [anon_sym_QMARK] = ACTIONS(4221), + [anon_sym_LBRACK] = ACTIONS(4223), + [anon_sym_BSLASH] = ACTIONS(4223), + [anon_sym_CARET] = ACTIONS(4223), + [anon_sym_BQUOTE] = ACTIONS(4221), + [anon_sym_LBRACE] = ACTIONS(4221), + [anon_sym_PIPE] = ACTIONS(4221), + [anon_sym_TILDE] = ACTIONS(4221), + [anon_sym_LPAREN] = ACTIONS(4221), + [anon_sym_RPAREN] = ACTIONS(4221), + [sym__newline_token] = ACTIONS(4221), + [aux_sym_insert_token1] = ACTIONS(4221), + [aux_sym_delete_token1] = ACTIONS(4221), + [aux_sym_highlight_token1] = ACTIONS(4221), + [aux_sym_edit_comment_token1] = ACTIONS(4221), + [anon_sym_CARET_LBRACK] = ACTIONS(4221), + [anon_sym_LBRACK_CARET] = ACTIONS(4221), + [sym_uri_autolink] = ACTIONS(4221), + [sym_email_autolink] = ACTIONS(4221), + [sym__whitespace_ge_2] = ACTIONS(4221), + [aux_sym__whitespace_token1] = ACTIONS(4223), + [sym__word_no_digit] = ACTIONS(4221), + [sym__digits] = ACTIONS(4221), + [anon_sym_DASH_DASH] = ACTIONS(4223), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4221), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4221), + [sym__code_span_start] = ACTIONS(4221), + [sym__emphasis_open_star] = ACTIONS(4221), + [sym__emphasis_open_underscore] = ACTIONS(4221), + [sym__emphasis_close_star] = ACTIONS(4221), + [sym__strikeout_open] = ACTIONS(4221), + [sym__latex_span_start] = ACTIONS(4221), + [sym__single_quote_open] = ACTIONS(4221), + [sym__double_quote_open] = ACTIONS(4221), + [sym__superscript_open] = ACTIONS(4221), + [sym__subscript_open] = ACTIONS(4221), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4221), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4221), + [sym__cite_author_in_text] = ACTIONS(4221), + [sym__cite_suppress_author] = ACTIONS(4221), + [sym__shortcode_open_escaped] = ACTIONS(4221), + [sym__shortcode_open] = ACTIONS(4221), + [sym__unclosed_span] = ACTIONS(4221), + [sym__strong_emphasis_open_star] = ACTIONS(4221), + [sym__strong_emphasis_open_underscore] = ACTIONS(4221), + }, + [STATE(1349)] = { [sym__backslash_escape] = ACTIONS(4755), [sym_entity_reference] = ACTIONS(4755), [sym_numeric_character_reference] = ACTIONS(4755), @@ -138765,7 +138965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4755), [sym__strong_emphasis_open_underscore] = ACTIONS(4755), }, - [STATE(1347)] = { + [STATE(1350)] = { [sym__backslash_escape] = ACTIONS(4759), [sym_entity_reference] = ACTIONS(4759), [sym_numeric_character_reference] = ACTIONS(4759), @@ -138832,74 +139032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4759), [sym__strong_emphasis_open_underscore] = ACTIONS(4759), }, - [STATE(1348)] = { - [sym__backslash_escape] = ACTIONS(4539), - [sym_entity_reference] = ACTIONS(4539), - [sym_numeric_character_reference] = ACTIONS(4539), - [anon_sym_LT] = ACTIONS(4541), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_BANG] = ACTIONS(4539), - [anon_sym_DQUOTE] = ACTIONS(4539), - [anon_sym_POUND] = ACTIONS(4539), - [anon_sym_DOLLAR] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4539), - [anon_sym_AMP] = ACTIONS(4541), - [anon_sym_SQUOTE] = ACTIONS(4539), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_COMMA] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4541), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_COLON] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4539), - [anon_sym_EQ] = ACTIONS(4539), - [anon_sym_QMARK] = ACTIONS(4539), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_BSLASH] = ACTIONS(4541), - [anon_sym_CARET] = ACTIONS(4541), - [anon_sym_BQUOTE] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_PIPE] = ACTIONS(4539), - [anon_sym_TILDE] = ACTIONS(4539), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_RPAREN] = ACTIONS(4539), - [sym__newline_token] = ACTIONS(4539), - [aux_sym_insert_token1] = ACTIONS(4539), - [aux_sym_delete_token1] = ACTIONS(4539), - [aux_sym_highlight_token1] = ACTIONS(4539), - [aux_sym_edit_comment_token1] = ACTIONS(4539), - [anon_sym_CARET_LBRACK] = ACTIONS(4539), - [anon_sym_LBRACK_CARET] = ACTIONS(4539), - [sym_uri_autolink] = ACTIONS(4539), - [sym_email_autolink] = ACTIONS(4539), - [sym__whitespace_ge_2] = ACTIONS(4539), - [aux_sym__whitespace_token1] = ACTIONS(4541), - [sym__word_no_digit] = ACTIONS(4539), - [sym__digits] = ACTIONS(4539), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4539), - [sym__code_span_start] = ACTIONS(4539), - [sym__emphasis_open_star] = ACTIONS(4539), - [sym__emphasis_open_underscore] = ACTIONS(4539), - [sym__emphasis_close_star] = ACTIONS(4539), - [sym__strikeout_open] = ACTIONS(4539), - [sym__latex_span_start] = ACTIONS(4539), - [sym__single_quote_open] = ACTIONS(4539), - [sym__double_quote_open] = ACTIONS(4539), - [sym__superscript_open] = ACTIONS(4539), - [sym__subscript_open] = ACTIONS(4539), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4539), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4539), - [sym__cite_author_in_text] = ACTIONS(4539), - [sym__cite_suppress_author] = ACTIONS(4539), - [sym__shortcode_open_escaped] = ACTIONS(4539), - [sym__shortcode_open] = ACTIONS(4539), - [sym__unclosed_span] = ACTIONS(4539), - [sym__strong_emphasis_open_star] = ACTIONS(4539), - [sym__strong_emphasis_open_underscore] = ACTIONS(4539), - }, - [STATE(1349)] = { + [STATE(1351)] = { [sym__backslash_escape] = ACTIONS(4763), [sym_entity_reference] = ACTIONS(4763), [sym_numeric_character_reference] = ACTIONS(4763), @@ -138966,140 +139099,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4763), [sym__strong_emphasis_open_underscore] = ACTIONS(4763), }, - [STATE(1350)] = { - [sym__backslash_escape] = ACTIONS(4527), - [sym_entity_reference] = ACTIONS(4527), - [sym_numeric_character_reference] = ACTIONS(4527), - [anon_sym_LT] = ACTIONS(4529), - [anon_sym_GT] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(4527), - [anon_sym_DQUOTE] = ACTIONS(4527), - [anon_sym_POUND] = ACTIONS(4527), - [anon_sym_DOLLAR] = ACTIONS(4527), - [anon_sym_PERCENT] = ACTIONS(4527), - [anon_sym_AMP] = ACTIONS(4529), - [anon_sym_SQUOTE] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(4527), - [anon_sym_COMMA] = ACTIONS(4527), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_DOT] = ACTIONS(4529), - [anon_sym_SLASH] = ACTIONS(4527), - [anon_sym_COLON] = ACTIONS(4527), - [anon_sym_SEMI] = ACTIONS(4527), - [anon_sym_EQ] = ACTIONS(4527), - [anon_sym_QMARK] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4529), - [anon_sym_BSLASH] = ACTIONS(4529), - [anon_sym_RBRACK] = ACTIONS(4527), - [anon_sym_CARET] = ACTIONS(4529), - [anon_sym_BQUOTE] = ACTIONS(4527), - [anon_sym_LBRACE] = ACTIONS(4527), - [anon_sym_PIPE] = ACTIONS(4527), - [anon_sym_TILDE] = ACTIONS(4527), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym_RPAREN] = ACTIONS(4527), - [sym__newline_token] = ACTIONS(4527), - [aux_sym_insert_token1] = ACTIONS(4527), - [aux_sym_delete_token1] = ACTIONS(4527), - [aux_sym_highlight_token1] = ACTIONS(4527), - [aux_sym_edit_comment_token1] = ACTIONS(4527), - [anon_sym_CARET_LBRACK] = ACTIONS(4527), - [anon_sym_LBRACK_CARET] = ACTIONS(4527), - [sym_uri_autolink] = ACTIONS(4527), - [sym_email_autolink] = ACTIONS(4527), - [sym__whitespace_ge_2] = ACTIONS(4527), - [aux_sym__whitespace_token1] = ACTIONS(4529), - [sym__word_no_digit] = ACTIONS(4527), - [sym__digits] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), - [sym__code_span_start] = ACTIONS(4527), - [sym__emphasis_open_star] = ACTIONS(4527), - [sym__emphasis_open_underscore] = ACTIONS(4527), - [sym__strikeout_open] = ACTIONS(4527), - [sym__latex_span_start] = ACTIONS(4527), - [sym__single_quote_open] = ACTIONS(4527), - [sym__double_quote_open] = ACTIONS(4527), - [sym__superscript_open] = ACTIONS(4527), - [sym__subscript_open] = ACTIONS(4527), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), - [sym__cite_author_in_text] = ACTIONS(4527), - [sym__cite_suppress_author] = ACTIONS(4527), - [sym__shortcode_open_escaped] = ACTIONS(4527), - [sym__shortcode_open] = ACTIONS(4527), - [sym__unclosed_span] = ACTIONS(4527), - [sym__strong_emphasis_open_star] = ACTIONS(4527), - [sym__strong_emphasis_open_underscore] = ACTIONS(4527), - }, - [STATE(1351)] = { - [sym__backslash_escape] = ACTIONS(4531), - [sym_entity_reference] = ACTIONS(4531), - [sym_numeric_character_reference] = ACTIONS(4531), - [anon_sym_LT] = ACTIONS(4533), - [anon_sym_GT] = ACTIONS(4531), - [anon_sym_BANG] = ACTIONS(4531), - [anon_sym_DQUOTE] = ACTIONS(4531), - [anon_sym_POUND] = ACTIONS(4531), - [anon_sym_DOLLAR] = ACTIONS(4531), - [anon_sym_PERCENT] = ACTIONS(4531), - [anon_sym_AMP] = ACTIONS(4533), - [anon_sym_SQUOTE] = ACTIONS(4531), - [anon_sym_PLUS] = ACTIONS(4531), - [anon_sym_COMMA] = ACTIONS(4531), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4533), - [anon_sym_SLASH] = ACTIONS(4531), - [anon_sym_COLON] = ACTIONS(4531), - [anon_sym_SEMI] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4531), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_BSLASH] = ACTIONS(4533), - [anon_sym_RBRACK] = ACTIONS(4531), - [anon_sym_CARET] = ACTIONS(4533), - [anon_sym_BQUOTE] = ACTIONS(4531), - [anon_sym_LBRACE] = ACTIONS(4531), - [anon_sym_PIPE] = ACTIONS(4531), - [anon_sym_TILDE] = ACTIONS(4531), - [anon_sym_LPAREN] = ACTIONS(4531), - [anon_sym_RPAREN] = ACTIONS(4531), - [sym__newline_token] = ACTIONS(4531), - [aux_sym_insert_token1] = ACTIONS(4531), - [aux_sym_delete_token1] = ACTIONS(4531), - [aux_sym_highlight_token1] = ACTIONS(4531), - [aux_sym_edit_comment_token1] = ACTIONS(4531), - [anon_sym_CARET_LBRACK] = ACTIONS(4531), - [anon_sym_LBRACK_CARET] = ACTIONS(4531), - [sym_uri_autolink] = ACTIONS(4531), - [sym_email_autolink] = ACTIONS(4531), - [sym__whitespace_ge_2] = ACTIONS(4531), - [aux_sym__whitespace_token1] = ACTIONS(4533), - [sym__word_no_digit] = ACTIONS(4531), - [sym__digits] = ACTIONS(4531), - [anon_sym_DASH_DASH] = ACTIONS(4533), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), - [sym__code_span_start] = ACTIONS(4531), - [sym__emphasis_open_star] = ACTIONS(4531), - [sym__emphasis_open_underscore] = ACTIONS(4531), - [sym__strikeout_open] = ACTIONS(4531), - [sym__latex_span_start] = ACTIONS(4531), - [sym__single_quote_open] = ACTIONS(4531), - [sym__double_quote_open] = ACTIONS(4531), - [sym__superscript_open] = ACTIONS(4531), - [sym__subscript_open] = ACTIONS(4531), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), - [sym__cite_author_in_text] = ACTIONS(4531), - [sym__cite_suppress_author] = ACTIONS(4531), - [sym__shortcode_open_escaped] = ACTIONS(4531), - [sym__shortcode_open] = ACTIONS(4531), - [sym__unclosed_span] = ACTIONS(4531), - [sym__strong_emphasis_open_star] = ACTIONS(4531), - [sym__strong_emphasis_open_underscore] = ACTIONS(4531), - }, [STATE(1352)] = { [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), @@ -139168,71 +139167,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, [STATE(1353)] = { - [sym__backslash_escape] = ACTIONS(4543), - [sym_entity_reference] = ACTIONS(4543), - [sym_numeric_character_reference] = ACTIONS(4543), - [anon_sym_LT] = ACTIONS(4545), - [anon_sym_GT] = ACTIONS(4543), - [anon_sym_BANG] = ACTIONS(4543), - [anon_sym_DQUOTE] = ACTIONS(4543), - [anon_sym_POUND] = ACTIONS(4543), - [anon_sym_DOLLAR] = ACTIONS(4543), - [anon_sym_PERCENT] = ACTIONS(4543), - [anon_sym_AMP] = ACTIONS(4545), - [anon_sym_SQUOTE] = ACTIONS(4543), - [anon_sym_PLUS] = ACTIONS(4543), - [anon_sym_COMMA] = ACTIONS(4543), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_DOT] = ACTIONS(4545), - [anon_sym_SLASH] = ACTIONS(4543), - [anon_sym_COLON] = ACTIONS(4543), - [anon_sym_SEMI] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4543), - [anon_sym_LBRACK] = ACTIONS(4545), - [anon_sym_BSLASH] = ACTIONS(4545), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_BQUOTE] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4543), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_TILDE] = ACTIONS(4543), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_RPAREN] = ACTIONS(4543), - [sym__newline_token] = ACTIONS(4543), - [aux_sym_insert_token1] = ACTIONS(4543), - [aux_sym_delete_token1] = ACTIONS(4543), - [aux_sym_highlight_token1] = ACTIONS(4543), - [aux_sym_edit_comment_token1] = ACTIONS(4543), - [anon_sym_CARET_LBRACK] = ACTIONS(4543), - [anon_sym_LBRACK_CARET] = ACTIONS(4543), - [sym_uri_autolink] = ACTIONS(4543), - [sym_email_autolink] = ACTIONS(4543), - [sym__whitespace_ge_2] = ACTIONS(4543), - [aux_sym__whitespace_token1] = ACTIONS(4545), - [sym__word_no_digit] = ACTIONS(4543), - [sym__digits] = ACTIONS(4543), - [anon_sym_DASH_DASH] = ACTIONS(4545), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4543), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4543), - [sym__code_span_start] = ACTIONS(4543), - [sym__emphasis_open_star] = ACTIONS(4543), - [sym__emphasis_open_underscore] = ACTIONS(4543), - [sym__emphasis_close_star] = ACTIONS(4543), - [sym__strikeout_open] = ACTIONS(4543), - [sym__latex_span_start] = ACTIONS(4543), - [sym__single_quote_open] = ACTIONS(4543), - [sym__double_quote_open] = ACTIONS(4543), - [sym__superscript_open] = ACTIONS(4543), - [sym__subscript_open] = ACTIONS(4543), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4543), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4543), - [sym__cite_author_in_text] = ACTIONS(4543), - [sym__cite_suppress_author] = ACTIONS(4543), - [sym__shortcode_open_escaped] = ACTIONS(4543), - [sym__shortcode_open] = ACTIONS(4543), - [sym__unclosed_span] = ACTIONS(4543), - [sym__strong_emphasis_open_star] = ACTIONS(4543), - [sym__strong_emphasis_open_underscore] = ACTIONS(4543), + [ts_builtin_sym_end] = ACTIONS(4329), + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, [STATE(1354)] = { [sym__backslash_escape] = ACTIONS(4213), @@ -139302,73 +139301,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, [STATE(1355)] = { - [sym__backslash_escape] = ACTIONS(4547), - [sym_entity_reference] = ACTIONS(4547), - [sym_numeric_character_reference] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4547), - [anon_sym_BANG] = ACTIONS(4547), - [anon_sym_DQUOTE] = ACTIONS(4547), - [anon_sym_POUND] = ACTIONS(4547), - [anon_sym_DOLLAR] = ACTIONS(4547), - [anon_sym_PERCENT] = ACTIONS(4547), - [anon_sym_AMP] = ACTIONS(4549), - [anon_sym_SQUOTE] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4547), - [anon_sym_COMMA] = ACTIONS(4547), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_SLASH] = ACTIONS(4547), - [anon_sym_COLON] = ACTIONS(4547), - [anon_sym_SEMI] = ACTIONS(4547), - [anon_sym_EQ] = ACTIONS(4547), - [anon_sym_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_BSLASH] = ACTIONS(4549), - [anon_sym_CARET] = ACTIONS(4549), - [anon_sym_BQUOTE] = ACTIONS(4547), - [anon_sym_LBRACE] = ACTIONS(4547), - [anon_sym_PIPE] = ACTIONS(4547), - [anon_sym_TILDE] = ACTIONS(4547), - [anon_sym_LPAREN] = ACTIONS(4547), - [anon_sym_RPAREN] = ACTIONS(4547), - [sym__newline_token] = ACTIONS(4547), - [aux_sym_insert_token1] = ACTIONS(4547), - [aux_sym_delete_token1] = ACTIONS(4547), - [aux_sym_highlight_token1] = ACTIONS(4547), - [aux_sym_edit_comment_token1] = ACTIONS(4547), - [anon_sym_CARET_LBRACK] = ACTIONS(4547), - [anon_sym_LBRACK_CARET] = ACTIONS(4547), - [sym_uri_autolink] = ACTIONS(4547), - [sym_email_autolink] = ACTIONS(4547), - [sym__whitespace_ge_2] = ACTIONS(4547), - [aux_sym__whitespace_token1] = ACTIONS(4549), - [sym__word_no_digit] = ACTIONS(4547), - [sym__digits] = ACTIONS(4547), - [anon_sym_DASH_DASH] = ACTIONS(4549), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4547), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4547), - [sym__code_span_start] = ACTIONS(4547), - [sym__emphasis_open_star] = ACTIONS(4547), - [sym__emphasis_open_underscore] = ACTIONS(4547), - [sym__emphasis_close_star] = ACTIONS(4547), - [sym__strikeout_open] = ACTIONS(4547), - [sym__latex_span_start] = ACTIONS(4547), - [sym__single_quote_open] = ACTIONS(4547), - [sym__double_quote_open] = ACTIONS(4547), - [sym__superscript_open] = ACTIONS(4547), - [sym__subscript_open] = ACTIONS(4547), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4547), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4547), - [sym__cite_author_in_text] = ACTIONS(4547), - [sym__cite_suppress_author] = ACTIONS(4547), - [sym__shortcode_open_escaped] = ACTIONS(4547), - [sym__shortcode_open] = ACTIONS(4547), - [sym__unclosed_span] = ACTIONS(4547), - [sym__strong_emphasis_open_star] = ACTIONS(4547), - [sym__strong_emphasis_open_underscore] = ACTIONS(4547), + [sym__backslash_escape] = ACTIONS(4551), + [sym_entity_reference] = ACTIONS(4551), + [sym_numeric_character_reference] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_POUND] = ACTIONS(4551), + [anon_sym_DOLLAR] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4553), + [anon_sym_SQUOTE] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_BSLASH] = ACTIONS(4553), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_BQUOTE] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_RPAREN] = ACTIONS(4551), + [sym__newline_token] = ACTIONS(4551), + [aux_sym_insert_token1] = ACTIONS(4551), + [aux_sym_delete_token1] = ACTIONS(4551), + [aux_sym_highlight_token1] = ACTIONS(4551), + [aux_sym_edit_comment_token1] = ACTIONS(4551), + [anon_sym_CARET_LBRACK] = ACTIONS(4551), + [anon_sym_LBRACK_CARET] = ACTIONS(4551), + [sym_uri_autolink] = ACTIONS(4551), + [sym_email_autolink] = ACTIONS(4551), + [sym__whitespace_ge_2] = ACTIONS(4551), + [aux_sym__whitespace_token1] = ACTIONS(4553), + [sym__word_no_digit] = ACTIONS(4551), + [sym__digits] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), + [sym__code_span_start] = ACTIONS(4551), + [sym__emphasis_open_star] = ACTIONS(4551), + [sym__emphasis_open_underscore] = ACTIONS(4551), + [sym__emphasis_close_star] = ACTIONS(4551), + [sym__strikeout_open] = ACTIONS(4551), + [sym__latex_span_start] = ACTIONS(4551), + [sym__single_quote_open] = ACTIONS(4551), + [sym__double_quote_open] = ACTIONS(4551), + [sym__superscript_open] = ACTIONS(4551), + [sym__subscript_open] = ACTIONS(4551), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), + [sym__cite_author_in_text] = ACTIONS(4551), + [sym__cite_suppress_author] = ACTIONS(4551), + [sym__shortcode_open_escaped] = ACTIONS(4551), + [sym__shortcode_open] = ACTIONS(4551), + [sym__unclosed_span] = ACTIONS(4551), + [sym__strong_emphasis_open_star] = ACTIONS(4551), + [sym__strong_emphasis_open_underscore] = ACTIONS(4551), }, [STATE(1356)] = { + [sym__backslash_escape] = ACTIONS(4531), + [sym_entity_reference] = ACTIONS(4531), + [sym_numeric_character_reference] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_DQUOTE] = ACTIONS(4531), + [anon_sym_POUND] = ACTIONS(4531), + [anon_sym_DOLLAR] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4533), + [anon_sym_SQUOTE] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_DASH] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4533), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_BSLASH] = ACTIONS(4533), + [anon_sym_RBRACK] = ACTIONS(4531), + [anon_sym_CARET] = ACTIONS(4533), + [anon_sym_BQUOTE] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_TILDE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_RPAREN] = ACTIONS(4531), + [sym__newline_token] = ACTIONS(4531), + [aux_sym_insert_token1] = ACTIONS(4531), + [aux_sym_delete_token1] = ACTIONS(4531), + [aux_sym_highlight_token1] = ACTIONS(4531), + [aux_sym_edit_comment_token1] = ACTIONS(4531), + [anon_sym_CARET_LBRACK] = ACTIONS(4531), + [anon_sym_LBRACK_CARET] = ACTIONS(4531), + [sym_uri_autolink] = ACTIONS(4531), + [sym_email_autolink] = ACTIONS(4531), + [sym__whitespace_ge_2] = ACTIONS(4531), + [aux_sym__whitespace_token1] = ACTIONS(4533), + [sym__word_no_digit] = ACTIONS(4531), + [sym__digits] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), + [sym__code_span_start] = ACTIONS(4531), + [sym__emphasis_open_star] = ACTIONS(4531), + [sym__emphasis_open_underscore] = ACTIONS(4531), + [sym__strikeout_open] = ACTIONS(4531), + [sym__latex_span_start] = ACTIONS(4531), + [sym__single_quote_open] = ACTIONS(4531), + [sym__double_quote_open] = ACTIONS(4531), + [sym__superscript_open] = ACTIONS(4531), + [sym__subscript_open] = ACTIONS(4531), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), + [sym__cite_author_in_text] = ACTIONS(4531), + [sym__cite_suppress_author] = ACTIONS(4531), + [sym__shortcode_open_escaped] = ACTIONS(4531), + [sym__shortcode_open] = ACTIONS(4531), + [sym__unclosed_span] = ACTIONS(4531), + [sym__strong_emphasis_open_star] = ACTIONS(4531), + [sym__strong_emphasis_open_underscore] = ACTIONS(4531), + }, + [STATE(1357)] = { [sym__backslash_escape] = ACTIONS(4535), [sym_entity_reference] = ACTIONS(4535), [sym_numeric_character_reference] = ACTIONS(4535), @@ -139435,7 +139501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4535), [sym__strong_emphasis_open_underscore] = ACTIONS(4535), }, - [STATE(1357)] = { + [STATE(1358)] = { [sym__backslash_escape] = ACTIONS(4539), [sym_entity_reference] = ACTIONS(4539), [sym_numeric_character_reference] = ACTIONS(4539), @@ -139502,7 +139568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4539), [sym__strong_emphasis_open_underscore] = ACTIONS(4539), }, - [STATE(1358)] = { + [STATE(1359)] = { [sym__backslash_escape] = ACTIONS(4543), [sym_entity_reference] = ACTIONS(4543), [sym_numeric_character_reference] = ACTIONS(4543), @@ -139569,7 +139635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4543), [sym__strong_emphasis_open_underscore] = ACTIONS(4543), }, - [STATE(1359)] = { + [STATE(1360)] = { [sym__backslash_escape] = ACTIONS(4547), [sym_entity_reference] = ACTIONS(4547), [sym_numeric_character_reference] = ACTIONS(4547), @@ -139636,73 +139702,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4547), [sym__strong_emphasis_open_underscore] = ACTIONS(4547), }, - [STATE(1360)] = { - [sym__backslash_escape] = ACTIONS(4551), - [sym_entity_reference] = ACTIONS(4551), - [sym_numeric_character_reference] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(4553), - [anon_sym_GT] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4551), - [anon_sym_DQUOTE] = ACTIONS(4551), - [anon_sym_POUND] = ACTIONS(4551), - [anon_sym_DOLLAR] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_AMP] = ACTIONS(4553), - [anon_sym_SQUOTE] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_COLON] = ACTIONS(4551), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_EQ] = ACTIONS(4551), - [anon_sym_QMARK] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_BSLASH] = ACTIONS(4553), - [anon_sym_RBRACK] = ACTIONS(4551), - [anon_sym_CARET] = ACTIONS(4553), - [anon_sym_BQUOTE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_PIPE] = ACTIONS(4551), - [anon_sym_TILDE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_RPAREN] = ACTIONS(4551), - [sym__newline_token] = ACTIONS(4551), - [aux_sym_insert_token1] = ACTIONS(4551), - [aux_sym_delete_token1] = ACTIONS(4551), - [aux_sym_highlight_token1] = ACTIONS(4551), - [aux_sym_edit_comment_token1] = ACTIONS(4551), - [anon_sym_CARET_LBRACK] = ACTIONS(4551), - [anon_sym_LBRACK_CARET] = ACTIONS(4551), - [sym_uri_autolink] = ACTIONS(4551), - [sym_email_autolink] = ACTIONS(4551), - [sym__whitespace_ge_2] = ACTIONS(4551), - [aux_sym__whitespace_token1] = ACTIONS(4553), - [sym__word_no_digit] = ACTIONS(4551), - [sym__digits] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4553), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), - [sym__code_span_start] = ACTIONS(4551), - [sym__emphasis_open_star] = ACTIONS(4551), - [sym__emphasis_open_underscore] = ACTIONS(4551), - [sym__strikeout_open] = ACTIONS(4551), - [sym__latex_span_start] = ACTIONS(4551), - [sym__single_quote_open] = ACTIONS(4551), - [sym__double_quote_open] = ACTIONS(4551), - [sym__superscript_open] = ACTIONS(4551), - [sym__subscript_open] = ACTIONS(4551), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), - [sym__cite_author_in_text] = ACTIONS(4551), - [sym__cite_suppress_author] = ACTIONS(4551), - [sym__shortcode_open_escaped] = ACTIONS(4551), - [sym__shortcode_open] = ACTIONS(4551), - [sym__unclosed_span] = ACTIONS(4551), - [sym__strong_emphasis_open_star] = ACTIONS(4551), - [sym__strong_emphasis_open_underscore] = ACTIONS(4551), - }, [STATE(1361)] = { [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), @@ -139771,71 +139770,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, [STATE(1362)] = { - [sym__backslash_escape] = ACTIONS(4551), - [sym_entity_reference] = ACTIONS(4551), - [sym_numeric_character_reference] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(4553), - [anon_sym_GT] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4551), - [anon_sym_DQUOTE] = ACTIONS(4551), - [anon_sym_POUND] = ACTIONS(4551), - [anon_sym_DOLLAR] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_AMP] = ACTIONS(4553), - [anon_sym_SQUOTE] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_COLON] = ACTIONS(4551), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_EQ] = ACTIONS(4551), - [anon_sym_QMARK] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_BSLASH] = ACTIONS(4553), - [anon_sym_CARET] = ACTIONS(4553), - [anon_sym_BQUOTE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_PIPE] = ACTIONS(4551), - [anon_sym_TILDE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_RPAREN] = ACTIONS(4551), - [sym__newline_token] = ACTIONS(4551), - [aux_sym_insert_token1] = ACTIONS(4551), - [aux_sym_delete_token1] = ACTIONS(4551), - [aux_sym_highlight_token1] = ACTIONS(4551), - [aux_sym_edit_comment_token1] = ACTIONS(4551), - [anon_sym_CARET_LBRACK] = ACTIONS(4551), - [anon_sym_LBRACK_CARET] = ACTIONS(4551), - [sym_uri_autolink] = ACTIONS(4551), - [sym_email_autolink] = ACTIONS(4551), - [sym__whitespace_ge_2] = ACTIONS(4551), - [aux_sym__whitespace_token1] = ACTIONS(4553), - [sym__word_no_digit] = ACTIONS(4551), - [sym__digits] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4553), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), - [sym__code_span_start] = ACTIONS(4551), - [sym__emphasis_open_star] = ACTIONS(4551), - [sym__emphasis_open_underscore] = ACTIONS(4551), - [sym__emphasis_close_star] = ACTIONS(4551), - [sym__strikeout_open] = ACTIONS(4551), - [sym__latex_span_start] = ACTIONS(4551), - [sym__single_quote_open] = ACTIONS(4551), - [sym__double_quote_open] = ACTIONS(4551), - [sym__superscript_open] = ACTIONS(4551), - [sym__subscript_open] = ACTIONS(4551), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), - [sym__cite_author_in_text] = ACTIONS(4551), - [sym__cite_suppress_author] = ACTIONS(4551), - [sym__shortcode_open_escaped] = ACTIONS(4551), - [sym__shortcode_open] = ACTIONS(4551), - [sym__unclosed_span] = ACTIONS(4551), - [sym__strong_emphasis_open_star] = ACTIONS(4551), - [sym__strong_emphasis_open_underscore] = ACTIONS(4551), + [sym__backslash_escape] = ACTIONS(4555), + [sym_entity_reference] = ACTIONS(4555), + [sym_numeric_character_reference] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_DQUOTE] = ACTIONS(4555), + [anon_sym_POUND] = ACTIONS(4555), + [anon_sym_DOLLAR] = ACTIONS(4555), + [anon_sym_PERCENT] = ACTIONS(4555), + [anon_sym_AMP] = ACTIONS(4557), + [anon_sym_SQUOTE] = ACTIONS(4555), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_COMMA] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_SEMI] = ACTIONS(4555), + [anon_sym_EQ] = ACTIONS(4555), + [anon_sym_QMARK] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4557), + [anon_sym_BSLASH] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_BQUOTE] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_TILDE] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4555), + [anon_sym_RPAREN] = ACTIONS(4555), + [sym__newline_token] = ACTIONS(4555), + [aux_sym_insert_token1] = ACTIONS(4555), + [aux_sym_delete_token1] = ACTIONS(4555), + [aux_sym_highlight_token1] = ACTIONS(4555), + [aux_sym_edit_comment_token1] = ACTIONS(4555), + [anon_sym_CARET_LBRACK] = ACTIONS(4555), + [anon_sym_LBRACK_CARET] = ACTIONS(4555), + [sym_uri_autolink] = ACTIONS(4555), + [sym_email_autolink] = ACTIONS(4555), + [sym__whitespace_ge_2] = ACTIONS(4555), + [aux_sym__whitespace_token1] = ACTIONS(4557), + [sym__word_no_digit] = ACTIONS(4555), + [sym__digits] = ACTIONS(4555), + [anon_sym_DASH_DASH] = ACTIONS(4557), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4555), + [sym__code_span_start] = ACTIONS(4555), + [sym__emphasis_open_star] = ACTIONS(4555), + [sym__emphasis_open_underscore] = ACTIONS(4555), + [sym__emphasis_close_star] = ACTIONS(4555), + [sym__strikeout_open] = ACTIONS(4555), + [sym__latex_span_start] = ACTIONS(4555), + [sym__single_quote_open] = ACTIONS(4555), + [sym__double_quote_open] = ACTIONS(4555), + [sym__superscript_open] = ACTIONS(4555), + [sym__subscript_open] = ACTIONS(4555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4555), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4555), + [sym__cite_author_in_text] = ACTIONS(4555), + [sym__cite_suppress_author] = ACTIONS(4555), + [sym__shortcode_open_escaped] = ACTIONS(4555), + [sym__shortcode_open] = ACTIONS(4555), + [sym__unclosed_span] = ACTIONS(4555), + [sym__strong_emphasis_open_star] = ACTIONS(4555), + [sym__strong_emphasis_open_underscore] = ACTIONS(4555), }, [STATE(1363)] = { [sym__backslash_escape] = ACTIONS(4221), @@ -139905,73 +139904,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, [STATE(1364)] = { - [sym__backslash_escape] = ACTIONS(4217), - [sym_entity_reference] = ACTIONS(4217), - [sym_numeric_character_reference] = ACTIONS(4217), - [anon_sym_LT] = ACTIONS(4219), - [anon_sym_GT] = ACTIONS(4217), - [anon_sym_BANG] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(4217), - [anon_sym_POUND] = ACTIONS(4217), - [anon_sym_DOLLAR] = ACTIONS(4217), - [anon_sym_PERCENT] = ACTIONS(4217), - [anon_sym_AMP] = ACTIONS(4219), - [anon_sym_SQUOTE] = ACTIONS(4217), - [anon_sym_PLUS] = ACTIONS(4217), - [anon_sym_COMMA] = ACTIONS(4217), - [anon_sym_DASH] = ACTIONS(4219), - [anon_sym_DOT] = ACTIONS(4219), - [anon_sym_SLASH] = ACTIONS(4217), - [anon_sym_COLON] = ACTIONS(4217), - [anon_sym_SEMI] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4217), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_LBRACK] = ACTIONS(4219), - [anon_sym_BSLASH] = ACTIONS(4219), - [anon_sym_CARET] = ACTIONS(4219), - [anon_sym_BQUOTE] = ACTIONS(4217), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_PIPE] = ACTIONS(4217), - [anon_sym_TILDE] = ACTIONS(4217), - [anon_sym_LPAREN] = ACTIONS(4217), - [anon_sym_RPAREN] = ACTIONS(4217), - [sym__newline_token] = ACTIONS(4217), - [aux_sym_insert_token1] = ACTIONS(4217), - [aux_sym_delete_token1] = ACTIONS(4217), - [aux_sym_highlight_token1] = ACTIONS(4217), - [aux_sym_edit_comment_token1] = ACTIONS(4217), - [anon_sym_CARET_LBRACK] = ACTIONS(4217), - [anon_sym_LBRACK_CARET] = ACTIONS(4217), - [sym_uri_autolink] = ACTIONS(4217), - [sym_email_autolink] = ACTIONS(4217), - [sym__whitespace_ge_2] = ACTIONS(4217), - [aux_sym__whitespace_token1] = ACTIONS(4219), - [sym__word_no_digit] = ACTIONS(4217), - [sym__digits] = ACTIONS(4217), - [anon_sym_DASH_DASH] = ACTIONS(4219), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4217), - [sym__code_span_start] = ACTIONS(4217), - [sym__emphasis_open_star] = ACTIONS(4217), - [sym__emphasis_open_underscore] = ACTIONS(4217), - [sym__emphasis_close_star] = ACTIONS(4217), - [sym__strikeout_open] = ACTIONS(4217), - [sym__latex_span_start] = ACTIONS(4217), - [sym__single_quote_open] = ACTIONS(4217), - [sym__double_quote_open] = ACTIONS(4217), - [sym__superscript_open] = ACTIONS(4217), - [sym__subscript_open] = ACTIONS(4217), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4217), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4217), - [sym__cite_author_in_text] = ACTIONS(4217), - [sym__cite_suppress_author] = ACTIONS(4217), - [sym__shortcode_open_escaped] = ACTIONS(4217), - [sym__shortcode_open] = ACTIONS(4217), - [sym__unclosed_span] = ACTIONS(4217), - [sym__strong_emphasis_open_star] = ACTIONS(4217), - [sym__strong_emphasis_open_underscore] = ACTIONS(4217), + [sym__backslash_escape] = ACTIONS(4559), + [sym_entity_reference] = ACTIONS(4559), + [sym_numeric_character_reference] = ACTIONS(4559), + [anon_sym_LT] = ACTIONS(4561), + [anon_sym_GT] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4559), + [anon_sym_DQUOTE] = ACTIONS(4559), + [anon_sym_POUND] = ACTIONS(4559), + [anon_sym_DOLLAR] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4559), + [anon_sym_AMP] = ACTIONS(4561), + [anon_sym_SQUOTE] = ACTIONS(4559), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_COMMA] = ACTIONS(4559), + [anon_sym_DASH] = ACTIONS(4561), + [anon_sym_DOT] = ACTIONS(4561), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_COLON] = ACTIONS(4559), + [anon_sym_SEMI] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4559), + [anon_sym_QMARK] = ACTIONS(4559), + [anon_sym_LBRACK] = ACTIONS(4561), + [anon_sym_BSLASH] = ACTIONS(4561), + [anon_sym_CARET] = ACTIONS(4561), + [anon_sym_BQUOTE] = ACTIONS(4559), + [anon_sym_LBRACE] = ACTIONS(4559), + [anon_sym_PIPE] = ACTIONS(4559), + [anon_sym_TILDE] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_RPAREN] = ACTIONS(4559), + [sym__newline_token] = ACTIONS(4559), + [aux_sym_insert_token1] = ACTIONS(4559), + [aux_sym_delete_token1] = ACTIONS(4559), + [aux_sym_highlight_token1] = ACTIONS(4559), + [aux_sym_edit_comment_token1] = ACTIONS(4559), + [anon_sym_CARET_LBRACK] = ACTIONS(4559), + [anon_sym_LBRACK_CARET] = ACTIONS(4559), + [sym_uri_autolink] = ACTIONS(4559), + [sym_email_autolink] = ACTIONS(4559), + [sym__whitespace_ge_2] = ACTIONS(4559), + [aux_sym__whitespace_token1] = ACTIONS(4561), + [sym__word_no_digit] = ACTIONS(4559), + [sym__digits] = ACTIONS(4559), + [anon_sym_DASH_DASH] = ACTIONS(4561), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4559), + [sym__code_span_start] = ACTIONS(4559), + [sym__emphasis_open_star] = ACTIONS(4559), + [sym__emphasis_open_underscore] = ACTIONS(4559), + [sym__emphasis_close_star] = ACTIONS(4559), + [sym__strikeout_open] = ACTIONS(4559), + [sym__latex_span_start] = ACTIONS(4559), + [sym__single_quote_open] = ACTIONS(4559), + [sym__double_quote_open] = ACTIONS(4559), + [sym__superscript_open] = ACTIONS(4559), + [sym__subscript_open] = ACTIONS(4559), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4559), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4559), + [sym__cite_author_in_text] = ACTIONS(4559), + [sym__cite_suppress_author] = ACTIONS(4559), + [sym__shortcode_open_escaped] = ACTIONS(4559), + [sym__shortcode_open] = ACTIONS(4559), + [sym__unclosed_span] = ACTIONS(4559), + [sym__strong_emphasis_open_star] = ACTIONS(4559), + [sym__strong_emphasis_open_underscore] = ACTIONS(4559), }, [STATE(1365)] = { + [sym__backslash_escape] = ACTIONS(4551), + [sym_entity_reference] = ACTIONS(4551), + [sym_numeric_character_reference] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_POUND] = ACTIONS(4551), + [anon_sym_DOLLAR] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4553), + [anon_sym_SQUOTE] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_BSLASH] = ACTIONS(4553), + [anon_sym_RBRACK] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_BQUOTE] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_RPAREN] = ACTIONS(4551), + [sym__newline_token] = ACTIONS(4551), + [aux_sym_insert_token1] = ACTIONS(4551), + [aux_sym_delete_token1] = ACTIONS(4551), + [aux_sym_highlight_token1] = ACTIONS(4551), + [aux_sym_edit_comment_token1] = ACTIONS(4551), + [anon_sym_CARET_LBRACK] = ACTIONS(4551), + [anon_sym_LBRACK_CARET] = ACTIONS(4551), + [sym_uri_autolink] = ACTIONS(4551), + [sym_email_autolink] = ACTIONS(4551), + [sym__whitespace_ge_2] = ACTIONS(4551), + [aux_sym__whitespace_token1] = ACTIONS(4553), + [sym__word_no_digit] = ACTIONS(4551), + [sym__digits] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), + [sym__code_span_start] = ACTIONS(4551), + [sym__emphasis_open_star] = ACTIONS(4551), + [sym__emphasis_open_underscore] = ACTIONS(4551), + [sym__strikeout_open] = ACTIONS(4551), + [sym__latex_span_start] = ACTIONS(4551), + [sym__single_quote_open] = ACTIONS(4551), + [sym__double_quote_open] = ACTIONS(4551), + [sym__superscript_open] = ACTIONS(4551), + [sym__subscript_open] = ACTIONS(4551), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), + [sym__cite_author_in_text] = ACTIONS(4551), + [sym__cite_suppress_author] = ACTIONS(4551), + [sym__shortcode_open_escaped] = ACTIONS(4551), + [sym__shortcode_open] = ACTIONS(4551), + [sym__unclosed_span] = ACTIONS(4551), + [sym__strong_emphasis_open_star] = ACTIONS(4551), + [sym__strong_emphasis_open_underscore] = ACTIONS(4551), + }, + [STATE(1366)] = { [sym__backslash_escape] = ACTIONS(4555), [sym_entity_reference] = ACTIONS(4555), [sym_numeric_character_reference] = ACTIONS(4555), @@ -140038,7 +140104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4555), [sym__strong_emphasis_open_underscore] = ACTIONS(4555), }, - [STATE(1366)] = { + [STATE(1367)] = { [sym__backslash_escape] = ACTIONS(4559), [sym_entity_reference] = ACTIONS(4559), [sym_numeric_character_reference] = ACTIONS(4559), @@ -140105,7 +140171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4559), [sym__strong_emphasis_open_underscore] = ACTIONS(4559), }, - [STATE(1367)] = { + [STATE(1368)] = { [sym__backslash_escape] = ACTIONS(4563), [sym_entity_reference] = ACTIONS(4563), [sym_numeric_character_reference] = ACTIONS(4563), @@ -140172,73 +140238,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4563), [sym__strong_emphasis_open_underscore] = ACTIONS(4563), }, - [STATE(1368)] = { - [sym__backslash_escape] = ACTIONS(4567), - [sym_entity_reference] = ACTIONS(4567), - [sym_numeric_character_reference] = ACTIONS(4567), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4567), - [anon_sym_BANG] = ACTIONS(4567), - [anon_sym_DQUOTE] = ACTIONS(4567), - [anon_sym_POUND] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_COLON] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_QMARK] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4569), - [anon_sym_BSLASH] = ACTIONS(4569), - [anon_sym_RBRACK] = ACTIONS(4567), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym_BQUOTE] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_PIPE] = ACTIONS(4567), - [anon_sym_TILDE] = ACTIONS(4567), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [sym__newline_token] = ACTIONS(4567), - [aux_sym_insert_token1] = ACTIONS(4567), - [aux_sym_delete_token1] = ACTIONS(4567), - [aux_sym_highlight_token1] = ACTIONS(4567), - [aux_sym_edit_comment_token1] = ACTIONS(4567), - [anon_sym_CARET_LBRACK] = ACTIONS(4567), - [anon_sym_LBRACK_CARET] = ACTIONS(4567), - [sym_uri_autolink] = ACTIONS(4567), - [sym_email_autolink] = ACTIONS(4567), - [sym__whitespace_ge_2] = ACTIONS(4567), - [aux_sym__whitespace_token1] = ACTIONS(4569), - [sym__word_no_digit] = ACTIONS(4567), - [sym__digits] = ACTIONS(4567), - [anon_sym_DASH_DASH] = ACTIONS(4569), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), - [sym__code_span_start] = ACTIONS(4567), - [sym__emphasis_open_star] = ACTIONS(4567), - [sym__emphasis_open_underscore] = ACTIONS(4567), - [sym__strikeout_open] = ACTIONS(4567), - [sym__latex_span_start] = ACTIONS(4567), - [sym__single_quote_open] = ACTIONS(4567), - [sym__double_quote_open] = ACTIONS(4567), - [sym__superscript_open] = ACTIONS(4567), - [sym__subscript_open] = ACTIONS(4567), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), - [sym__cite_author_in_text] = ACTIONS(4567), - [sym__cite_suppress_author] = ACTIONS(4567), - [sym__shortcode_open_escaped] = ACTIONS(4567), - [sym__shortcode_open] = ACTIONS(4567), - [sym__unclosed_span] = ACTIONS(4567), - [sym__strong_emphasis_open_star] = ACTIONS(4567), - [sym__strong_emphasis_open_underscore] = ACTIONS(4567), - }, [STATE(1369)] = { [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), @@ -140307,6 +140306,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, [STATE(1370)] = { + [sym__backslash_escape] = ACTIONS(4563), + [sym_entity_reference] = ACTIONS(4563), + [sym_numeric_character_reference] = ACTIONS(4563), + [anon_sym_LT] = ACTIONS(4565), + [anon_sym_GT] = ACTIONS(4563), + [anon_sym_BANG] = ACTIONS(4563), + [anon_sym_DQUOTE] = ACTIONS(4563), + [anon_sym_POUND] = ACTIONS(4563), + [anon_sym_DOLLAR] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_AMP] = ACTIONS(4565), + [anon_sym_SQUOTE] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_COMMA] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4565), + [anon_sym_DOT] = ACTIONS(4565), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_COLON] = ACTIONS(4563), + [anon_sym_SEMI] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_BSLASH] = ACTIONS(4565), + [anon_sym_CARET] = ACTIONS(4565), + [anon_sym_BQUOTE] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4563), + [anon_sym_PIPE] = ACTIONS(4563), + [anon_sym_TILDE] = ACTIONS(4563), + [anon_sym_LPAREN] = ACTIONS(4563), + [anon_sym_RPAREN] = ACTIONS(4563), + [sym__newline_token] = ACTIONS(4563), + [aux_sym_insert_token1] = ACTIONS(4563), + [aux_sym_delete_token1] = ACTIONS(4563), + [aux_sym_highlight_token1] = ACTIONS(4563), + [aux_sym_edit_comment_token1] = ACTIONS(4563), + [anon_sym_CARET_LBRACK] = ACTIONS(4563), + [anon_sym_LBRACK_CARET] = ACTIONS(4563), + [sym_uri_autolink] = ACTIONS(4563), + [sym_email_autolink] = ACTIONS(4563), + [sym__whitespace_ge_2] = ACTIONS(4563), + [aux_sym__whitespace_token1] = ACTIONS(4565), + [sym__word_no_digit] = ACTIONS(4563), + [sym__digits] = ACTIONS(4563), + [anon_sym_DASH_DASH] = ACTIONS(4565), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4563), + [sym__code_span_start] = ACTIONS(4563), + [sym__emphasis_open_star] = ACTIONS(4563), + [sym__emphasis_open_underscore] = ACTIONS(4563), + [sym__emphasis_close_star] = ACTIONS(4563), + [sym__strikeout_open] = ACTIONS(4563), + [sym__latex_span_start] = ACTIONS(4563), + [sym__single_quote_open] = ACTIONS(4563), + [sym__double_quote_open] = ACTIONS(4563), + [sym__superscript_open] = ACTIONS(4563), + [sym__subscript_open] = ACTIONS(4563), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4563), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4563), + [sym__cite_author_in_text] = ACTIONS(4563), + [sym__cite_suppress_author] = ACTIONS(4563), + [sym__shortcode_open_escaped] = ACTIONS(4563), + [sym__shortcode_open] = ACTIONS(4563), + [sym__unclosed_span] = ACTIONS(4563), + [sym__strong_emphasis_open_star] = ACTIONS(4563), + [sym__strong_emphasis_open_underscore] = ACTIONS(4563), + }, + [STATE(1371)] = { [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -140373,74 +140439,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4229), [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, - [STATE(1371)] = { - [sym__backslash_escape] = ACTIONS(4221), - [sym_entity_reference] = ACTIONS(4221), - [sym_numeric_character_reference] = ACTIONS(4221), - [anon_sym_LT] = ACTIONS(4223), - [anon_sym_GT] = ACTIONS(4221), - [anon_sym_BANG] = ACTIONS(4221), - [anon_sym_DQUOTE] = ACTIONS(4221), - [anon_sym_POUND] = ACTIONS(4221), - [anon_sym_DOLLAR] = ACTIONS(4221), - [anon_sym_PERCENT] = ACTIONS(4221), - [anon_sym_AMP] = ACTIONS(4223), - [anon_sym_SQUOTE] = ACTIONS(4221), - [anon_sym_PLUS] = ACTIONS(4221), - [anon_sym_COMMA] = ACTIONS(4221), - [anon_sym_DASH] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4223), - [anon_sym_SLASH] = ACTIONS(4221), - [anon_sym_COLON] = ACTIONS(4221), - [anon_sym_SEMI] = ACTIONS(4221), - [anon_sym_EQ] = ACTIONS(4221), - [anon_sym_QMARK] = ACTIONS(4221), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_BSLASH] = ACTIONS(4223), - [anon_sym_CARET] = ACTIONS(4223), - [anon_sym_BQUOTE] = ACTIONS(4221), - [anon_sym_LBRACE] = ACTIONS(4221), - [anon_sym_PIPE] = ACTIONS(4221), - [anon_sym_TILDE] = ACTIONS(4221), - [anon_sym_LPAREN] = ACTIONS(4221), - [anon_sym_RPAREN] = ACTIONS(4221), - [sym__newline_token] = ACTIONS(4221), - [aux_sym_insert_token1] = ACTIONS(4221), - [aux_sym_delete_token1] = ACTIONS(4221), - [aux_sym_highlight_token1] = ACTIONS(4221), - [aux_sym_edit_comment_token1] = ACTIONS(4221), - [anon_sym_CARET_LBRACK] = ACTIONS(4221), - [anon_sym_LBRACK_CARET] = ACTIONS(4221), - [sym_uri_autolink] = ACTIONS(4221), - [sym_email_autolink] = ACTIONS(4221), - [sym__whitespace_ge_2] = ACTIONS(4221), - [aux_sym__whitespace_token1] = ACTIONS(4223), - [sym__word_no_digit] = ACTIONS(4221), - [sym__digits] = ACTIONS(4221), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4221), - [sym__code_span_start] = ACTIONS(4221), - [sym__emphasis_open_star] = ACTIONS(4221), - [sym__emphasis_open_underscore] = ACTIONS(4221), - [sym__emphasis_close_star] = ACTIONS(4221), - [sym__strikeout_open] = ACTIONS(4221), - [sym__latex_span_start] = ACTIONS(4221), - [sym__single_quote_open] = ACTIONS(4221), - [sym__double_quote_open] = ACTIONS(4221), - [sym__superscript_open] = ACTIONS(4221), - [sym__subscript_open] = ACTIONS(4221), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4221), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4221), - [sym__cite_author_in_text] = ACTIONS(4221), - [sym__cite_suppress_author] = ACTIONS(4221), - [sym__shortcode_open_escaped] = ACTIONS(4221), - [sym__shortcode_open] = ACTIONS(4221), - [sym__unclosed_span] = ACTIONS(4221), - [sym__strong_emphasis_open_star] = ACTIONS(4221), - [sym__strong_emphasis_open_underscore] = ACTIONS(4221), - }, [STATE(1372)] = { + [sym__backslash_escape] = ACTIONS(4225), + [sym_entity_reference] = ACTIONS(4225), + [sym_numeric_character_reference] = ACTIONS(4225), + [anon_sym_LT] = ACTIONS(4227), + [anon_sym_GT] = ACTIONS(4225), + [anon_sym_BANG] = ACTIONS(4225), + [anon_sym_DQUOTE] = ACTIONS(4225), + [anon_sym_POUND] = ACTIONS(4225), + [anon_sym_DOLLAR] = ACTIONS(4225), + [anon_sym_PERCENT] = ACTIONS(4225), + [anon_sym_AMP] = ACTIONS(4227), + [anon_sym_SQUOTE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4225), + [anon_sym_COMMA] = ACTIONS(4225), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_DOT] = ACTIONS(4227), + [anon_sym_SLASH] = ACTIONS(4225), + [anon_sym_COLON] = ACTIONS(4225), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_EQ] = ACTIONS(4225), + [anon_sym_QMARK] = ACTIONS(4225), + [anon_sym_LBRACK] = ACTIONS(4227), + [anon_sym_BSLASH] = ACTIONS(4227), + [anon_sym_CARET] = ACTIONS(4227), + [anon_sym_BQUOTE] = ACTIONS(4225), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_TILDE] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_RPAREN] = ACTIONS(4225), + [sym__newline_token] = ACTIONS(4225), + [aux_sym_insert_token1] = ACTIONS(4225), + [aux_sym_delete_token1] = ACTIONS(4225), + [aux_sym_highlight_token1] = ACTIONS(4225), + [aux_sym_edit_comment_token1] = ACTIONS(4225), + [anon_sym_CARET_LBRACK] = ACTIONS(4225), + [anon_sym_LBRACK_CARET] = ACTIONS(4225), + [sym_uri_autolink] = ACTIONS(4225), + [sym_email_autolink] = ACTIONS(4225), + [sym__whitespace_ge_2] = ACTIONS(4225), + [aux_sym__whitespace_token1] = ACTIONS(4227), + [sym__word_no_digit] = ACTIONS(4225), + [sym__digits] = ACTIONS(4225), + [anon_sym_DASH_DASH] = ACTIONS(4227), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4225), + [sym__code_span_start] = ACTIONS(4225), + [sym__emphasis_open_star] = ACTIONS(4225), + [sym__emphasis_open_underscore] = ACTIONS(4225), + [sym__emphasis_close_star] = ACTIONS(4225), + [sym__strikeout_open] = ACTIONS(4225), + [sym__latex_span_start] = ACTIONS(4225), + [sym__single_quote_open] = ACTIONS(4225), + [sym__double_quote_open] = ACTIONS(4225), + [sym__superscript_open] = ACTIONS(4225), + [sym__subscript_open] = ACTIONS(4225), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4225), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4225), + [sym__cite_author_in_text] = ACTIONS(4225), + [sym__cite_suppress_author] = ACTIONS(4225), + [sym__shortcode_open_escaped] = ACTIONS(4225), + [sym__shortcode_open] = ACTIONS(4225), + [sym__unclosed_span] = ACTIONS(4225), + [sym__strong_emphasis_open_star] = ACTIONS(4225), + [sym__strong_emphasis_open_underscore] = ACTIONS(4225), + }, + [STATE(1373)] = { + [sym__backslash_escape] = ACTIONS(4567), + [sym_entity_reference] = ACTIONS(4567), + [sym_numeric_character_reference] = ACTIONS(4567), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_DQUOTE] = ACTIONS(4567), + [anon_sym_POUND] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_BSLASH] = ACTIONS(4569), + [anon_sym_RBRACK] = ACTIONS(4567), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym_BQUOTE] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(4567), + [anon_sym_TILDE] = ACTIONS(4567), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [sym__newline_token] = ACTIONS(4567), + [aux_sym_insert_token1] = ACTIONS(4567), + [aux_sym_delete_token1] = ACTIONS(4567), + [aux_sym_highlight_token1] = ACTIONS(4567), + [aux_sym_edit_comment_token1] = ACTIONS(4567), + [anon_sym_CARET_LBRACK] = ACTIONS(4567), + [anon_sym_LBRACK_CARET] = ACTIONS(4567), + [sym_uri_autolink] = ACTIONS(4567), + [sym_email_autolink] = ACTIONS(4567), + [sym__whitespace_ge_2] = ACTIONS(4567), + [aux_sym__whitespace_token1] = ACTIONS(4569), + [sym__word_no_digit] = ACTIONS(4567), + [sym__digits] = ACTIONS(4567), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), + [sym__code_span_start] = ACTIONS(4567), + [sym__emphasis_open_star] = ACTIONS(4567), + [sym__emphasis_open_underscore] = ACTIONS(4567), + [sym__strikeout_open] = ACTIONS(4567), + [sym__latex_span_start] = ACTIONS(4567), + [sym__single_quote_open] = ACTIONS(4567), + [sym__double_quote_open] = ACTIONS(4567), + [sym__superscript_open] = ACTIONS(4567), + [sym__subscript_open] = ACTIONS(4567), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), + [sym__cite_author_in_text] = ACTIONS(4567), + [sym__cite_suppress_author] = ACTIONS(4567), + [sym__shortcode_open_escaped] = ACTIONS(4567), + [sym__shortcode_open] = ACTIONS(4567), + [sym__unclosed_span] = ACTIONS(4567), + [sym__strong_emphasis_open_star] = ACTIONS(4567), + [sym__strong_emphasis_open_underscore] = ACTIONS(4567), + }, + [STATE(1374)] = { [sym__backslash_escape] = ACTIONS(4571), [sym_entity_reference] = ACTIONS(4571), [sym_numeric_character_reference] = ACTIONS(4571), @@ -140507,74 +140640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4571), [sym__strong_emphasis_open_underscore] = ACTIONS(4571), }, - [STATE(1373)] = { - [sym__backslash_escape] = ACTIONS(4575), - [sym_entity_reference] = ACTIONS(4575), - [sym_numeric_character_reference] = ACTIONS(4575), - [anon_sym_LT] = ACTIONS(4577), - [anon_sym_GT] = ACTIONS(4575), - [anon_sym_BANG] = ACTIONS(4575), - [anon_sym_DQUOTE] = ACTIONS(4575), - [anon_sym_POUND] = ACTIONS(4575), - [anon_sym_DOLLAR] = ACTIONS(4575), - [anon_sym_PERCENT] = ACTIONS(4575), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_SQUOTE] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4575), - [anon_sym_COMMA] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4577), - [anon_sym_SLASH] = ACTIONS(4575), - [anon_sym_COLON] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4575), - [anon_sym_EQ] = ACTIONS(4575), - [anon_sym_QMARK] = ACTIONS(4575), - [anon_sym_LBRACK] = ACTIONS(4577), - [anon_sym_BSLASH] = ACTIONS(4577), - [anon_sym_RBRACK] = ACTIONS(4575), - [anon_sym_CARET] = ACTIONS(4577), - [anon_sym_BQUOTE] = ACTIONS(4575), - [anon_sym_LBRACE] = ACTIONS(4575), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_TILDE] = ACTIONS(4575), - [anon_sym_LPAREN] = ACTIONS(4575), - [anon_sym_RPAREN] = ACTIONS(4575), - [sym__newline_token] = ACTIONS(4575), - [aux_sym_insert_token1] = ACTIONS(4575), - [aux_sym_delete_token1] = ACTIONS(4575), - [aux_sym_highlight_token1] = ACTIONS(4575), - [aux_sym_edit_comment_token1] = ACTIONS(4575), - [anon_sym_CARET_LBRACK] = ACTIONS(4575), - [anon_sym_LBRACK_CARET] = ACTIONS(4575), - [sym_uri_autolink] = ACTIONS(4575), - [sym_email_autolink] = ACTIONS(4575), - [sym__whitespace_ge_2] = ACTIONS(4575), - [aux_sym__whitespace_token1] = ACTIONS(4577), - [sym__word_no_digit] = ACTIONS(4575), - [sym__digits] = ACTIONS(4575), - [anon_sym_DASH_DASH] = ACTIONS(4577), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), - [sym__code_span_start] = ACTIONS(4575), - [sym__emphasis_open_star] = ACTIONS(4575), - [sym__emphasis_open_underscore] = ACTIONS(4575), - [sym__strikeout_open] = ACTIONS(4575), - [sym__latex_span_start] = ACTIONS(4575), - [sym__single_quote_open] = ACTIONS(4575), - [sym__double_quote_open] = ACTIONS(4575), - [sym__superscript_open] = ACTIONS(4575), - [sym__subscript_open] = ACTIONS(4575), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), - [sym__cite_author_in_text] = ACTIONS(4575), - [sym__cite_suppress_author] = ACTIONS(4575), - [sym__shortcode_open_escaped] = ACTIONS(4575), - [sym__shortcode_open] = ACTIONS(4575), - [sym__unclosed_span] = ACTIONS(4575), - [sym__strong_emphasis_open_star] = ACTIONS(4575), - [sym__strong_emphasis_open_underscore] = ACTIONS(4575), - }, - [STATE(1374)] = { + [STATE(1375)] = { [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -140641,7 +140707,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4233), [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, - [STATE(1375)] = { + [STATE(1376)] = { + [ts_builtin_sym_end] = ACTIONS(4655), + [sym__backslash_escape] = ACTIONS(4655), + [sym_entity_reference] = ACTIONS(4655), + [sym_numeric_character_reference] = ACTIONS(4655), + [anon_sym_LT] = ACTIONS(4657), + [anon_sym_GT] = ACTIONS(4655), + [anon_sym_BANG] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4655), + [anon_sym_POUND] = ACTIONS(4655), + [anon_sym_DOLLAR] = ACTIONS(4655), + [anon_sym_PERCENT] = ACTIONS(4655), + [anon_sym_AMP] = ACTIONS(4657), + [anon_sym_SQUOTE] = ACTIONS(4655), + [anon_sym_PLUS] = ACTIONS(4655), + [anon_sym_COMMA] = ACTIONS(4655), + [anon_sym_DASH] = ACTIONS(4657), + [anon_sym_DOT] = ACTIONS(4657), + [anon_sym_SLASH] = ACTIONS(4655), + [anon_sym_COLON] = ACTIONS(4655), + [anon_sym_SEMI] = ACTIONS(4655), + [anon_sym_EQ] = ACTIONS(4655), + [anon_sym_QMARK] = ACTIONS(4655), + [anon_sym_LBRACK] = ACTIONS(4657), + [anon_sym_BSLASH] = ACTIONS(4657), + [anon_sym_CARET] = ACTIONS(4657), + [anon_sym_BQUOTE] = ACTIONS(4655), + [anon_sym_LBRACE] = ACTIONS(4655), + [anon_sym_PIPE] = ACTIONS(4655), + [anon_sym_TILDE] = ACTIONS(4655), + [anon_sym_LPAREN] = ACTIONS(4655), + [anon_sym_RPAREN] = ACTIONS(4655), + [sym__newline_token] = ACTIONS(4655), + [aux_sym_insert_token1] = ACTIONS(4655), + [aux_sym_delete_token1] = ACTIONS(4655), + [aux_sym_highlight_token1] = ACTIONS(4655), + [aux_sym_edit_comment_token1] = ACTIONS(4655), + [anon_sym_CARET_LBRACK] = ACTIONS(4655), + [anon_sym_LBRACK_CARET] = ACTIONS(4655), + [sym_uri_autolink] = ACTIONS(4655), + [sym_email_autolink] = ACTIONS(4655), + [sym__whitespace_ge_2] = ACTIONS(4655), + [aux_sym__whitespace_token1] = ACTIONS(4657), + [sym__word_no_digit] = ACTIONS(4655), + [sym__digits] = ACTIONS(4655), + [anon_sym_DASH_DASH] = ACTIONS(4657), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4655), + [sym__code_span_start] = ACTIONS(4655), + [sym__emphasis_open_star] = ACTIONS(4655), + [sym__emphasis_open_underscore] = ACTIONS(4655), + [sym__strikeout_open] = ACTIONS(4655), + [sym__latex_span_start] = ACTIONS(4655), + [sym__single_quote_open] = ACTIONS(4655), + [sym__double_quote_open] = ACTIONS(4655), + [sym__superscript_open] = ACTIONS(4655), + [sym__subscript_open] = ACTIONS(4655), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4655), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4655), + [sym__cite_author_in_text] = ACTIONS(4655), + [sym__cite_suppress_author] = ACTIONS(4655), + [sym__shortcode_open_escaped] = ACTIONS(4655), + [sym__shortcode_open] = ACTIONS(4655), + [sym__unclosed_span] = ACTIONS(4655), + [sym__strong_emphasis_open_star] = ACTIONS(4655), + [sym__strong_emphasis_open_underscore] = ACTIONS(4655), + }, + [STATE(1377)] = { [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -140708,74 +140841,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4237), [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, - [STATE(1376)] = { - [sym__backslash_escape] = ACTIONS(4555), - [sym_entity_reference] = ACTIONS(4555), - [sym_numeric_character_reference] = ACTIONS(4555), - [anon_sym_LT] = ACTIONS(4557), - [anon_sym_GT] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(4555), - [anon_sym_DQUOTE] = ACTIONS(4555), - [anon_sym_POUND] = ACTIONS(4555), - [anon_sym_DOLLAR] = ACTIONS(4555), - [anon_sym_PERCENT] = ACTIONS(4555), - [anon_sym_AMP] = ACTIONS(4557), - [anon_sym_SQUOTE] = ACTIONS(4555), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_COMMA] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4557), - [anon_sym_DOT] = ACTIONS(4557), - [anon_sym_SLASH] = ACTIONS(4555), - [anon_sym_COLON] = ACTIONS(4555), - [anon_sym_SEMI] = ACTIONS(4555), - [anon_sym_EQ] = ACTIONS(4555), - [anon_sym_QMARK] = ACTIONS(4555), - [anon_sym_LBRACK] = ACTIONS(4557), - [anon_sym_BSLASH] = ACTIONS(4557), - [anon_sym_CARET] = ACTIONS(4557), - [anon_sym_BQUOTE] = ACTIONS(4555), - [anon_sym_LBRACE] = ACTIONS(4555), - [anon_sym_PIPE] = ACTIONS(4555), - [anon_sym_TILDE] = ACTIONS(4555), - [anon_sym_LPAREN] = ACTIONS(4555), - [anon_sym_RPAREN] = ACTIONS(4555), - [sym__newline_token] = ACTIONS(4555), - [aux_sym_insert_token1] = ACTIONS(4555), - [aux_sym_delete_token1] = ACTIONS(4555), - [aux_sym_highlight_token1] = ACTIONS(4555), - [aux_sym_edit_comment_token1] = ACTIONS(4555), - [anon_sym_CARET_LBRACK] = ACTIONS(4555), - [anon_sym_LBRACK_CARET] = ACTIONS(4555), - [sym_uri_autolink] = ACTIONS(4555), - [sym_email_autolink] = ACTIONS(4555), - [sym__whitespace_ge_2] = ACTIONS(4555), - [aux_sym__whitespace_token1] = ACTIONS(4557), - [sym__word_no_digit] = ACTIONS(4555), - [sym__digits] = ACTIONS(4555), - [anon_sym_DASH_DASH] = ACTIONS(4557), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4555), - [sym__code_span_start] = ACTIONS(4555), - [sym__emphasis_open_star] = ACTIONS(4555), - [sym__emphasis_open_underscore] = ACTIONS(4555), - [sym__emphasis_close_star] = ACTIONS(4555), - [sym__strikeout_open] = ACTIONS(4555), - [sym__latex_span_start] = ACTIONS(4555), - [sym__single_quote_open] = ACTIONS(4555), - [sym__double_quote_open] = ACTIONS(4555), - [sym__superscript_open] = ACTIONS(4555), - [sym__subscript_open] = ACTIONS(4555), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4555), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4555), - [sym__cite_author_in_text] = ACTIONS(4555), - [sym__cite_suppress_author] = ACTIONS(4555), - [sym__shortcode_open_escaped] = ACTIONS(4555), - [sym__shortcode_open] = ACTIONS(4555), - [sym__unclosed_span] = ACTIONS(4555), - [sym__strong_emphasis_open_star] = ACTIONS(4555), - [sym__strong_emphasis_open_underscore] = ACTIONS(4555), + [STATE(1378)] = { + [sym__backslash_escape] = ACTIONS(4229), + [sym_entity_reference] = ACTIONS(4229), + [sym_numeric_character_reference] = ACTIONS(4229), + [anon_sym_LT] = ACTIONS(4231), + [anon_sym_GT] = ACTIONS(4229), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_DQUOTE] = ACTIONS(4229), + [anon_sym_POUND] = ACTIONS(4229), + [anon_sym_DOLLAR] = ACTIONS(4229), + [anon_sym_PERCENT] = ACTIONS(4229), + [anon_sym_AMP] = ACTIONS(4231), + [anon_sym_SQUOTE] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_COMMA] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4231), + [anon_sym_DOT] = ACTIONS(4231), + [anon_sym_SLASH] = ACTIONS(4229), + [anon_sym_COLON] = ACTIONS(4229), + [anon_sym_SEMI] = ACTIONS(4229), + [anon_sym_EQ] = ACTIONS(4229), + [anon_sym_QMARK] = ACTIONS(4229), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_BSLASH] = ACTIONS(4231), + [anon_sym_CARET] = ACTIONS(4231), + [anon_sym_BQUOTE] = ACTIONS(4229), + [anon_sym_LBRACE] = ACTIONS(4229), + [anon_sym_PIPE] = ACTIONS(4229), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_LPAREN] = ACTIONS(4229), + [anon_sym_RPAREN] = ACTIONS(4229), + [sym__newline_token] = ACTIONS(4229), + [aux_sym_insert_token1] = ACTIONS(4229), + [aux_sym_delete_token1] = ACTIONS(4229), + [aux_sym_highlight_token1] = ACTIONS(4229), + [aux_sym_edit_comment_token1] = ACTIONS(4229), + [anon_sym_CARET_LBRACK] = ACTIONS(4229), + [anon_sym_LBRACK_CARET] = ACTIONS(4229), + [sym_uri_autolink] = ACTIONS(4229), + [sym_email_autolink] = ACTIONS(4229), + [sym__whitespace_ge_2] = ACTIONS(4229), + [aux_sym__whitespace_token1] = ACTIONS(4231), + [sym__word_no_digit] = ACTIONS(4229), + [sym__digits] = ACTIONS(4229), + [anon_sym_DASH_DASH] = ACTIONS(4231), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4229), + [sym__code_span_start] = ACTIONS(4229), + [sym__emphasis_open_star] = ACTIONS(4229), + [sym__emphasis_open_underscore] = ACTIONS(4229), + [sym__emphasis_close_star] = ACTIONS(4229), + [sym__strikeout_open] = ACTIONS(4229), + [sym__latex_span_start] = ACTIONS(4229), + [sym__single_quote_open] = ACTIONS(4229), + [sym__double_quote_open] = ACTIONS(4229), + [sym__superscript_open] = ACTIONS(4229), + [sym__subscript_open] = ACTIONS(4229), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4229), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4229), + [sym__cite_author_in_text] = ACTIONS(4229), + [sym__cite_suppress_author] = ACTIONS(4229), + [sym__shortcode_open_escaped] = ACTIONS(4229), + [sym__shortcode_open] = ACTIONS(4229), + [sym__unclosed_span] = ACTIONS(4229), + [sym__strong_emphasis_open_star] = ACTIONS(4229), + [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, - [STATE(1377)] = { + [STATE(1379)] = { [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -140842,74 +140975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4241), [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, - [STATE(1378)] = { - [sym__backslash_escape] = ACTIONS(4559), - [sym_entity_reference] = ACTIONS(4559), - [sym_numeric_character_reference] = ACTIONS(4559), - [anon_sym_LT] = ACTIONS(4561), - [anon_sym_GT] = ACTIONS(4559), - [anon_sym_BANG] = ACTIONS(4559), - [anon_sym_DQUOTE] = ACTIONS(4559), - [anon_sym_POUND] = ACTIONS(4559), - [anon_sym_DOLLAR] = ACTIONS(4559), - [anon_sym_PERCENT] = ACTIONS(4559), - [anon_sym_AMP] = ACTIONS(4561), - [anon_sym_SQUOTE] = ACTIONS(4559), - [anon_sym_PLUS] = ACTIONS(4559), - [anon_sym_COMMA] = ACTIONS(4559), - [anon_sym_DASH] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4561), - [anon_sym_SLASH] = ACTIONS(4559), - [anon_sym_COLON] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4559), - [anon_sym_EQ] = ACTIONS(4559), - [anon_sym_QMARK] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(4561), - [anon_sym_BSLASH] = ACTIONS(4561), - [anon_sym_CARET] = ACTIONS(4561), - [anon_sym_BQUOTE] = ACTIONS(4559), - [anon_sym_LBRACE] = ACTIONS(4559), - [anon_sym_PIPE] = ACTIONS(4559), - [anon_sym_TILDE] = ACTIONS(4559), - [anon_sym_LPAREN] = ACTIONS(4559), - [anon_sym_RPAREN] = ACTIONS(4559), - [sym__newline_token] = ACTIONS(4559), - [aux_sym_insert_token1] = ACTIONS(4559), - [aux_sym_delete_token1] = ACTIONS(4559), - [aux_sym_highlight_token1] = ACTIONS(4559), - [aux_sym_edit_comment_token1] = ACTIONS(4559), - [anon_sym_CARET_LBRACK] = ACTIONS(4559), - [anon_sym_LBRACK_CARET] = ACTIONS(4559), - [sym_uri_autolink] = ACTIONS(4559), - [sym_email_autolink] = ACTIONS(4559), - [sym__whitespace_ge_2] = ACTIONS(4559), - [aux_sym__whitespace_token1] = ACTIONS(4561), - [sym__word_no_digit] = ACTIONS(4559), - [sym__digits] = ACTIONS(4559), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4559), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4559), - [sym__code_span_start] = ACTIONS(4559), - [sym__emphasis_open_star] = ACTIONS(4559), - [sym__emphasis_open_underscore] = ACTIONS(4559), - [sym__emphasis_close_star] = ACTIONS(4559), - [sym__strikeout_open] = ACTIONS(4559), - [sym__latex_span_start] = ACTIONS(4559), - [sym__single_quote_open] = ACTIONS(4559), - [sym__double_quote_open] = ACTIONS(4559), - [sym__superscript_open] = ACTIONS(4559), - [sym__subscript_open] = ACTIONS(4559), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4559), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4559), - [sym__cite_author_in_text] = ACTIONS(4559), - [sym__cite_suppress_author] = ACTIONS(4559), - [sym__shortcode_open_escaped] = ACTIONS(4559), - [sym__shortcode_open] = ACTIONS(4559), - [sym__unclosed_span] = ACTIONS(4559), - [sym__strong_emphasis_open_star] = ACTIONS(4559), - [sym__strong_emphasis_open_underscore] = ACTIONS(4559), - }, - [STATE(1379)] = { + [STATE(1380)] = { [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -140976,74 +141042,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4245), [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, - [STATE(1380)] = { - [sym__backslash_escape] = ACTIONS(4563), - [sym_entity_reference] = ACTIONS(4563), - [sym_numeric_character_reference] = ACTIONS(4563), - [anon_sym_LT] = ACTIONS(4565), - [anon_sym_GT] = ACTIONS(4563), - [anon_sym_BANG] = ACTIONS(4563), - [anon_sym_DQUOTE] = ACTIONS(4563), - [anon_sym_POUND] = ACTIONS(4563), - [anon_sym_DOLLAR] = ACTIONS(4563), - [anon_sym_PERCENT] = ACTIONS(4563), - [anon_sym_AMP] = ACTIONS(4565), - [anon_sym_SQUOTE] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(4563), - [anon_sym_COMMA] = ACTIONS(4563), - [anon_sym_DASH] = ACTIONS(4565), - [anon_sym_DOT] = ACTIONS(4565), - [anon_sym_SLASH] = ACTIONS(4563), - [anon_sym_COLON] = ACTIONS(4563), - [anon_sym_SEMI] = ACTIONS(4563), - [anon_sym_EQ] = ACTIONS(4563), - [anon_sym_QMARK] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(4565), - [anon_sym_BSLASH] = ACTIONS(4565), - [anon_sym_CARET] = ACTIONS(4565), - [anon_sym_BQUOTE] = ACTIONS(4563), - [anon_sym_LBRACE] = ACTIONS(4563), - [anon_sym_PIPE] = ACTIONS(4563), - [anon_sym_TILDE] = ACTIONS(4563), - [anon_sym_LPAREN] = ACTIONS(4563), - [anon_sym_RPAREN] = ACTIONS(4563), - [sym__newline_token] = ACTIONS(4563), - [aux_sym_insert_token1] = ACTIONS(4563), - [aux_sym_delete_token1] = ACTIONS(4563), - [aux_sym_highlight_token1] = ACTIONS(4563), - [aux_sym_edit_comment_token1] = ACTIONS(4563), - [anon_sym_CARET_LBRACK] = ACTIONS(4563), - [anon_sym_LBRACK_CARET] = ACTIONS(4563), - [sym_uri_autolink] = ACTIONS(4563), - [sym_email_autolink] = ACTIONS(4563), - [sym__whitespace_ge_2] = ACTIONS(4563), - [aux_sym__whitespace_token1] = ACTIONS(4565), - [sym__word_no_digit] = ACTIONS(4563), - [sym__digits] = ACTIONS(4563), - [anon_sym_DASH_DASH] = ACTIONS(4565), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4563), - [sym__code_span_start] = ACTIONS(4563), - [sym__emphasis_open_star] = ACTIONS(4563), - [sym__emphasis_open_underscore] = ACTIONS(4563), - [sym__emphasis_close_star] = ACTIONS(4563), - [sym__strikeout_open] = ACTIONS(4563), - [sym__latex_span_start] = ACTIONS(4563), - [sym__single_quote_open] = ACTIONS(4563), - [sym__double_quote_open] = ACTIONS(4563), - [sym__superscript_open] = ACTIONS(4563), - [sym__subscript_open] = ACTIONS(4563), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4563), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4563), - [sym__cite_author_in_text] = ACTIONS(4563), - [sym__cite_suppress_author] = ACTIONS(4563), - [sym__shortcode_open_escaped] = ACTIONS(4563), - [sym__shortcode_open] = ACTIONS(4563), - [sym__unclosed_span] = ACTIONS(4563), - [sym__strong_emphasis_open_star] = ACTIONS(4563), - [sym__strong_emphasis_open_underscore] = ACTIONS(4563), - }, [STATE(1381)] = { + [sym__backslash_escape] = ACTIONS(4567), + [sym_entity_reference] = ACTIONS(4567), + [sym_numeric_character_reference] = ACTIONS(4567), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_DQUOTE] = ACTIONS(4567), + [anon_sym_POUND] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_BSLASH] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym_BQUOTE] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(4567), + [anon_sym_TILDE] = ACTIONS(4567), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [sym__newline_token] = ACTIONS(4567), + [aux_sym_insert_token1] = ACTIONS(4567), + [aux_sym_delete_token1] = ACTIONS(4567), + [aux_sym_highlight_token1] = ACTIONS(4567), + [aux_sym_edit_comment_token1] = ACTIONS(4567), + [anon_sym_CARET_LBRACK] = ACTIONS(4567), + [anon_sym_LBRACK_CARET] = ACTIONS(4567), + [sym_uri_autolink] = ACTIONS(4567), + [sym_email_autolink] = ACTIONS(4567), + [sym__whitespace_ge_2] = ACTIONS(4567), + [aux_sym__whitespace_token1] = ACTIONS(4569), + [sym__word_no_digit] = ACTIONS(4567), + [sym__digits] = ACTIONS(4567), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), + [sym__code_span_start] = ACTIONS(4567), + [sym__emphasis_open_star] = ACTIONS(4567), + [sym__emphasis_open_underscore] = ACTIONS(4567), + [sym__emphasis_close_star] = ACTIONS(4567), + [sym__strikeout_open] = ACTIONS(4567), + [sym__latex_span_start] = ACTIONS(4567), + [sym__single_quote_open] = ACTIONS(4567), + [sym__double_quote_open] = ACTIONS(4567), + [sym__superscript_open] = ACTIONS(4567), + [sym__subscript_open] = ACTIONS(4567), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), + [sym__cite_author_in_text] = ACTIONS(4567), + [sym__cite_suppress_author] = ACTIONS(4567), + [sym__shortcode_open_escaped] = ACTIONS(4567), + [sym__shortcode_open] = ACTIONS(4567), + [sym__unclosed_span] = ACTIONS(4567), + [sym__strong_emphasis_open_star] = ACTIONS(4567), + [sym__strong_emphasis_open_underscore] = ACTIONS(4567), + }, + [STATE(1382)] = { + [sym__backslash_escape] = ACTIONS(4575), + [sym_entity_reference] = ACTIONS(4575), + [sym_numeric_character_reference] = ACTIONS(4575), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4575), + [anon_sym_DQUOTE] = ACTIONS(4575), + [anon_sym_POUND] = ACTIONS(4575), + [anon_sym_DOLLAR] = ACTIONS(4575), + [anon_sym_PERCENT] = ACTIONS(4575), + [anon_sym_AMP] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4575), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_EQ] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4577), + [anon_sym_BSLASH] = ACTIONS(4577), + [anon_sym_RBRACK] = ACTIONS(4575), + [anon_sym_CARET] = ACTIONS(4577), + [anon_sym_BQUOTE] = ACTIONS(4575), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_PIPE] = ACTIONS(4575), + [anon_sym_TILDE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_RPAREN] = ACTIONS(4575), + [sym__newline_token] = ACTIONS(4575), + [aux_sym_insert_token1] = ACTIONS(4575), + [aux_sym_delete_token1] = ACTIONS(4575), + [aux_sym_highlight_token1] = ACTIONS(4575), + [aux_sym_edit_comment_token1] = ACTIONS(4575), + [anon_sym_CARET_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_CARET] = ACTIONS(4575), + [sym_uri_autolink] = ACTIONS(4575), + [sym_email_autolink] = ACTIONS(4575), + [sym__whitespace_ge_2] = ACTIONS(4575), + [aux_sym__whitespace_token1] = ACTIONS(4577), + [sym__word_no_digit] = ACTIONS(4575), + [sym__digits] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4577), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), + [sym__code_span_start] = ACTIONS(4575), + [sym__emphasis_open_star] = ACTIONS(4575), + [sym__emphasis_open_underscore] = ACTIONS(4575), + [sym__strikeout_open] = ACTIONS(4575), + [sym__latex_span_start] = ACTIONS(4575), + [sym__single_quote_open] = ACTIONS(4575), + [sym__double_quote_open] = ACTIONS(4575), + [sym__superscript_open] = ACTIONS(4575), + [sym__subscript_open] = ACTIONS(4575), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), + [sym__cite_author_in_text] = ACTIONS(4575), + [sym__cite_suppress_author] = ACTIONS(4575), + [sym__shortcode_open_escaped] = ACTIONS(4575), + [sym__shortcode_open] = ACTIONS(4575), + [sym__unclosed_span] = ACTIONS(4575), + [sym__strong_emphasis_open_star] = ACTIONS(4575), + [sym__strong_emphasis_open_underscore] = ACTIONS(4575), + }, + [STATE(1383)] = { [sym__backslash_escape] = ACTIONS(4579), [sym_entity_reference] = ACTIONS(4579), [sym_numeric_character_reference] = ACTIONS(4579), @@ -141110,7 +141243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4579), [sym__strong_emphasis_open_underscore] = ACTIONS(4579), }, - [STATE(1382)] = { + [STATE(1384)] = { [sym__backslash_escape] = ACTIONS(4583), [sym_entity_reference] = ACTIONS(4583), [sym_numeric_character_reference] = ACTIONS(4583), @@ -141177,409 +141310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4583), [sym__strong_emphasis_open_underscore] = ACTIONS(4583), }, - [STATE(1383)] = { - [sym__backslash_escape] = ACTIONS(4587), - [sym_entity_reference] = ACTIONS(4587), - [sym_numeric_character_reference] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4589), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_DQUOTE] = ACTIONS(4587), - [anon_sym_POUND] = ACTIONS(4587), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_AMP] = ACTIONS(4589), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_COMMA] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_QMARK] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_BSLASH] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4587), - [anon_sym_CARET] = ACTIONS(4589), - [anon_sym_BQUOTE] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_TILDE] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4587), - [anon_sym_RPAREN] = ACTIONS(4587), - [sym__newline_token] = ACTIONS(4587), - [aux_sym_insert_token1] = ACTIONS(4587), - [aux_sym_delete_token1] = ACTIONS(4587), - [aux_sym_highlight_token1] = ACTIONS(4587), - [aux_sym_edit_comment_token1] = ACTIONS(4587), - [anon_sym_CARET_LBRACK] = ACTIONS(4587), - [anon_sym_LBRACK_CARET] = ACTIONS(4587), - [sym_uri_autolink] = ACTIONS(4587), - [sym_email_autolink] = ACTIONS(4587), - [sym__whitespace_ge_2] = ACTIONS(4587), - [aux_sym__whitespace_token1] = ACTIONS(4589), - [sym__word_no_digit] = ACTIONS(4587), - [sym__digits] = ACTIONS(4587), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), - [sym__code_span_start] = ACTIONS(4587), - [sym__emphasis_open_star] = ACTIONS(4587), - [sym__emphasis_open_underscore] = ACTIONS(4587), - [sym__strikeout_open] = ACTIONS(4587), - [sym__latex_span_start] = ACTIONS(4587), - [sym__single_quote_open] = ACTIONS(4587), - [sym__double_quote_open] = ACTIONS(4587), - [sym__superscript_open] = ACTIONS(4587), - [sym__subscript_open] = ACTIONS(4587), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), - [sym__cite_author_in_text] = ACTIONS(4587), - [sym__cite_suppress_author] = ACTIONS(4587), - [sym__shortcode_open_escaped] = ACTIONS(4587), - [sym__shortcode_open] = ACTIONS(4587), - [sym__unclosed_span] = ACTIONS(4587), - [sym__strong_emphasis_open_star] = ACTIONS(4587), - [sym__strong_emphasis_open_underscore] = ACTIONS(4587), - }, - [STATE(1384)] = { - [sym__backslash_escape] = ACTIONS(4567), - [sym_entity_reference] = ACTIONS(4567), - [sym_numeric_character_reference] = ACTIONS(4567), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4567), - [anon_sym_BANG] = ACTIONS(4567), - [anon_sym_DQUOTE] = ACTIONS(4567), - [anon_sym_POUND] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_COLON] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_QMARK] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4569), - [anon_sym_BSLASH] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym_BQUOTE] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_PIPE] = ACTIONS(4567), - [anon_sym_TILDE] = ACTIONS(4567), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [sym__newline_token] = ACTIONS(4567), - [aux_sym_insert_token1] = ACTIONS(4567), - [aux_sym_delete_token1] = ACTIONS(4567), - [aux_sym_highlight_token1] = ACTIONS(4567), - [aux_sym_edit_comment_token1] = ACTIONS(4567), - [anon_sym_CARET_LBRACK] = ACTIONS(4567), - [anon_sym_LBRACK_CARET] = ACTIONS(4567), - [sym_uri_autolink] = ACTIONS(4567), - [sym_email_autolink] = ACTIONS(4567), - [sym__whitespace_ge_2] = ACTIONS(4567), - [aux_sym__whitespace_token1] = ACTIONS(4569), - [sym__word_no_digit] = ACTIONS(4567), - [sym__digits] = ACTIONS(4567), - [anon_sym_DASH_DASH] = ACTIONS(4569), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), - [sym__code_span_start] = ACTIONS(4567), - [sym__emphasis_open_star] = ACTIONS(4567), - [sym__emphasis_open_underscore] = ACTIONS(4567), - [sym__emphasis_close_star] = ACTIONS(4567), - [sym__strikeout_open] = ACTIONS(4567), - [sym__latex_span_start] = ACTIONS(4567), - [sym__single_quote_open] = ACTIONS(4567), - [sym__double_quote_open] = ACTIONS(4567), - [sym__superscript_open] = ACTIONS(4567), - [sym__subscript_open] = ACTIONS(4567), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), - [sym__cite_author_in_text] = ACTIONS(4567), - [sym__cite_suppress_author] = ACTIONS(4567), - [sym__shortcode_open_escaped] = ACTIONS(4567), - [sym__shortcode_open] = ACTIONS(4567), - [sym__unclosed_span] = ACTIONS(4567), - [sym__strong_emphasis_open_star] = ACTIONS(4567), - [sym__strong_emphasis_open_underscore] = ACTIONS(4567), - }, [STATE(1385)] = { - [sym__backslash_escape] = ACTIONS(4225), - [sym_entity_reference] = ACTIONS(4225), - [sym_numeric_character_reference] = ACTIONS(4225), - [anon_sym_LT] = ACTIONS(4227), - [anon_sym_GT] = ACTIONS(4225), - [anon_sym_BANG] = ACTIONS(4225), - [anon_sym_DQUOTE] = ACTIONS(4225), - [anon_sym_POUND] = ACTIONS(4225), - [anon_sym_DOLLAR] = ACTIONS(4225), - [anon_sym_PERCENT] = ACTIONS(4225), - [anon_sym_AMP] = ACTIONS(4227), - [anon_sym_SQUOTE] = ACTIONS(4225), - [anon_sym_PLUS] = ACTIONS(4225), - [anon_sym_COMMA] = ACTIONS(4225), - [anon_sym_DASH] = ACTIONS(4227), - [anon_sym_DOT] = ACTIONS(4227), - [anon_sym_SLASH] = ACTIONS(4225), - [anon_sym_COLON] = ACTIONS(4225), - [anon_sym_SEMI] = ACTIONS(4225), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_QMARK] = ACTIONS(4225), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_BSLASH] = ACTIONS(4227), - [anon_sym_CARET] = ACTIONS(4227), - [anon_sym_BQUOTE] = ACTIONS(4225), - [anon_sym_LBRACE] = ACTIONS(4225), - [anon_sym_PIPE] = ACTIONS(4225), - [anon_sym_TILDE] = ACTIONS(4225), - [anon_sym_LPAREN] = ACTIONS(4225), - [anon_sym_RPAREN] = ACTIONS(4225), - [sym__newline_token] = ACTIONS(4225), - [aux_sym_insert_token1] = ACTIONS(4225), - [aux_sym_delete_token1] = ACTIONS(4225), - [aux_sym_highlight_token1] = ACTIONS(4225), - [aux_sym_edit_comment_token1] = ACTIONS(4225), - [anon_sym_CARET_LBRACK] = ACTIONS(4225), - [anon_sym_LBRACK_CARET] = ACTIONS(4225), - [sym_uri_autolink] = ACTIONS(4225), - [sym_email_autolink] = ACTIONS(4225), - [sym__whitespace_ge_2] = ACTIONS(4225), - [aux_sym__whitespace_token1] = ACTIONS(4227), - [sym__word_no_digit] = ACTIONS(4225), - [sym__digits] = ACTIONS(4225), - [anon_sym_DASH_DASH] = ACTIONS(4227), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4225), - [sym__code_span_start] = ACTIONS(4225), - [sym__emphasis_open_star] = ACTIONS(4225), - [sym__emphasis_open_underscore] = ACTIONS(4225), - [sym__emphasis_close_star] = ACTIONS(4225), - [sym__strikeout_open] = ACTIONS(4225), - [sym__latex_span_start] = ACTIONS(4225), - [sym__single_quote_open] = ACTIONS(4225), - [sym__double_quote_open] = ACTIONS(4225), - [sym__superscript_open] = ACTIONS(4225), - [sym__subscript_open] = ACTIONS(4225), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4225), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4225), - [sym__cite_author_in_text] = ACTIONS(4225), - [sym__cite_suppress_author] = ACTIONS(4225), - [sym__shortcode_open_escaped] = ACTIONS(4225), - [sym__shortcode_open] = ACTIONS(4225), - [sym__unclosed_span] = ACTIONS(4225), - [sym__strong_emphasis_open_star] = ACTIONS(4225), - [sym__strong_emphasis_open_underscore] = ACTIONS(4225), - }, - [STATE(1386)] = { - [ts_builtin_sym_end] = ACTIONS(4659), - [sym__backslash_escape] = ACTIONS(4659), - [sym_entity_reference] = ACTIONS(4659), - [sym_numeric_character_reference] = ACTIONS(4659), - [anon_sym_LT] = ACTIONS(4661), - [anon_sym_GT] = ACTIONS(4659), - [anon_sym_BANG] = ACTIONS(4659), - [anon_sym_DQUOTE] = ACTIONS(4659), - [anon_sym_POUND] = ACTIONS(4659), - [anon_sym_DOLLAR] = ACTIONS(4659), - [anon_sym_PERCENT] = ACTIONS(4659), - [anon_sym_AMP] = ACTIONS(4661), - [anon_sym_SQUOTE] = ACTIONS(4659), - [anon_sym_PLUS] = ACTIONS(4659), - [anon_sym_COMMA] = ACTIONS(4659), - [anon_sym_DASH] = ACTIONS(4661), - [anon_sym_DOT] = ACTIONS(4661), - [anon_sym_SLASH] = ACTIONS(4659), - [anon_sym_COLON] = ACTIONS(4659), - [anon_sym_SEMI] = ACTIONS(4659), - [anon_sym_EQ] = ACTIONS(4659), - [anon_sym_QMARK] = ACTIONS(4659), - [anon_sym_LBRACK] = ACTIONS(4661), - [anon_sym_BSLASH] = ACTIONS(4661), - [anon_sym_CARET] = ACTIONS(4661), - [anon_sym_BQUOTE] = ACTIONS(4659), - [anon_sym_LBRACE] = ACTIONS(4659), - [anon_sym_PIPE] = ACTIONS(4659), - [anon_sym_TILDE] = ACTIONS(4659), - [anon_sym_LPAREN] = ACTIONS(4659), - [anon_sym_RPAREN] = ACTIONS(4659), - [sym__newline_token] = ACTIONS(4659), - [aux_sym_insert_token1] = ACTIONS(4659), - [aux_sym_delete_token1] = ACTIONS(4659), - [aux_sym_highlight_token1] = ACTIONS(4659), - [aux_sym_edit_comment_token1] = ACTIONS(4659), - [anon_sym_CARET_LBRACK] = ACTIONS(4659), - [anon_sym_LBRACK_CARET] = ACTIONS(4659), - [sym_uri_autolink] = ACTIONS(4659), - [sym_email_autolink] = ACTIONS(4659), - [sym__whitespace_ge_2] = ACTIONS(4659), - [aux_sym__whitespace_token1] = ACTIONS(4661), - [sym__word_no_digit] = ACTIONS(4659), - [sym__digits] = ACTIONS(4659), - [anon_sym_DASH_DASH] = ACTIONS(4661), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4659), - [sym__code_span_start] = ACTIONS(4659), - [sym__emphasis_open_star] = ACTIONS(4659), - [sym__emphasis_open_underscore] = ACTIONS(4659), - [sym__strikeout_open] = ACTIONS(4659), - [sym__latex_span_start] = ACTIONS(4659), - [sym__single_quote_open] = ACTIONS(4659), - [sym__double_quote_open] = ACTIONS(4659), - [sym__superscript_open] = ACTIONS(4659), - [sym__subscript_open] = ACTIONS(4659), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4659), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4659), - [sym__cite_author_in_text] = ACTIONS(4659), - [sym__cite_suppress_author] = ACTIONS(4659), - [sym__shortcode_open_escaped] = ACTIONS(4659), - [sym__shortcode_open] = ACTIONS(4659), - [sym__unclosed_span] = ACTIONS(4659), - [sym__strong_emphasis_open_star] = ACTIONS(4659), - [sym__strong_emphasis_open_underscore] = ACTIONS(4659), - }, - [STATE(1387)] = { - [sym__backslash_escape] = ACTIONS(4229), - [sym_entity_reference] = ACTIONS(4229), - [sym_numeric_character_reference] = ACTIONS(4229), - [anon_sym_LT] = ACTIONS(4231), - [anon_sym_GT] = ACTIONS(4229), - [anon_sym_BANG] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(4229), - [anon_sym_POUND] = ACTIONS(4229), - [anon_sym_DOLLAR] = ACTIONS(4229), - [anon_sym_PERCENT] = ACTIONS(4229), - [anon_sym_AMP] = ACTIONS(4231), - [anon_sym_SQUOTE] = ACTIONS(4229), - [anon_sym_PLUS] = ACTIONS(4229), - [anon_sym_COMMA] = ACTIONS(4229), - [anon_sym_DASH] = ACTIONS(4231), - [anon_sym_DOT] = ACTIONS(4231), - [anon_sym_SLASH] = ACTIONS(4229), - [anon_sym_COLON] = ACTIONS(4229), - [anon_sym_SEMI] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_QMARK] = ACTIONS(4229), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_BSLASH] = ACTIONS(4231), - [anon_sym_CARET] = ACTIONS(4231), - [anon_sym_BQUOTE] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(4229), - [anon_sym_PIPE] = ACTIONS(4229), - [anon_sym_TILDE] = ACTIONS(4229), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_RPAREN] = ACTIONS(4229), - [sym__newline_token] = ACTIONS(4229), - [aux_sym_insert_token1] = ACTIONS(4229), - [aux_sym_delete_token1] = ACTIONS(4229), - [aux_sym_highlight_token1] = ACTIONS(4229), - [aux_sym_edit_comment_token1] = ACTIONS(4229), - [anon_sym_CARET_LBRACK] = ACTIONS(4229), - [anon_sym_LBRACK_CARET] = ACTIONS(4229), - [sym_uri_autolink] = ACTIONS(4229), - [sym_email_autolink] = ACTIONS(4229), - [sym__whitespace_ge_2] = ACTIONS(4229), - [aux_sym__whitespace_token1] = ACTIONS(4231), - [sym__word_no_digit] = ACTIONS(4229), - [sym__digits] = ACTIONS(4229), - [anon_sym_DASH_DASH] = ACTIONS(4231), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4229), - [sym__code_span_start] = ACTIONS(4229), - [sym__emphasis_open_star] = ACTIONS(4229), - [sym__emphasis_open_underscore] = ACTIONS(4229), - [sym__emphasis_close_star] = ACTIONS(4229), - [sym__strikeout_open] = ACTIONS(4229), - [sym__latex_span_start] = ACTIONS(4229), - [sym__single_quote_open] = ACTIONS(4229), - [sym__double_quote_open] = ACTIONS(4229), - [sym__superscript_open] = ACTIONS(4229), - [sym__subscript_open] = ACTIONS(4229), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4229), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4229), - [sym__cite_author_in_text] = ACTIONS(4229), - [sym__cite_suppress_author] = ACTIONS(4229), - [sym__shortcode_open_escaped] = ACTIONS(4229), - [sym__shortcode_open] = ACTIONS(4229), - [sym__unclosed_span] = ACTIONS(4229), - [sym__strong_emphasis_open_star] = ACTIONS(4229), - [sym__strong_emphasis_open_underscore] = ACTIONS(4229), - }, - [STATE(1388)] = { - [ts_builtin_sym_end] = ACTIONS(4611), - [sym__backslash_escape] = ACTIONS(4611), - [sym_entity_reference] = ACTIONS(4611), - [sym_numeric_character_reference] = ACTIONS(4611), - [anon_sym_LT] = ACTIONS(4613), - [anon_sym_GT] = ACTIONS(4611), - [anon_sym_BANG] = ACTIONS(4611), - [anon_sym_DQUOTE] = ACTIONS(4611), - [anon_sym_POUND] = ACTIONS(4611), - [anon_sym_DOLLAR] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_AMP] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_DOT] = ACTIONS(4613), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_COLON] = ACTIONS(4611), - [anon_sym_SEMI] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_QMARK] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4613), - [anon_sym_BSLASH] = ACTIONS(4613), - [anon_sym_CARET] = ACTIONS(4613), - [anon_sym_BQUOTE] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(4611), - [anon_sym_PIPE] = ACTIONS(4611), - [anon_sym_TILDE] = ACTIONS(4611), - [anon_sym_LPAREN] = ACTIONS(4611), - [anon_sym_RPAREN] = ACTIONS(4611), - [sym__newline_token] = ACTIONS(4611), - [aux_sym_insert_token1] = ACTIONS(4611), - [aux_sym_delete_token1] = ACTIONS(4611), - [aux_sym_highlight_token1] = ACTIONS(4611), - [aux_sym_edit_comment_token1] = ACTIONS(4611), - [anon_sym_CARET_LBRACK] = ACTIONS(4611), - [anon_sym_LBRACK_CARET] = ACTIONS(4611), - [sym_uri_autolink] = ACTIONS(4611), - [sym_email_autolink] = ACTIONS(4611), - [sym__whitespace_ge_2] = ACTIONS(4611), - [aux_sym__whitespace_token1] = ACTIONS(4613), - [sym__word_no_digit] = ACTIONS(4611), - [sym__digits] = ACTIONS(4611), - [anon_sym_DASH_DASH] = ACTIONS(4613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4611), - [sym__code_span_start] = ACTIONS(4611), - [sym__emphasis_open_star] = ACTIONS(4611), - [sym__emphasis_open_underscore] = ACTIONS(4611), - [sym__strikeout_open] = ACTIONS(4611), - [sym__latex_span_start] = ACTIONS(4611), - [sym__single_quote_open] = ACTIONS(4611), - [sym__double_quote_open] = ACTIONS(4611), - [sym__superscript_open] = ACTIONS(4611), - [sym__subscript_open] = ACTIONS(4611), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4611), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4611), - [sym__cite_author_in_text] = ACTIONS(4611), - [sym__cite_suppress_author] = ACTIONS(4611), - [sym__shortcode_open_escaped] = ACTIONS(4611), - [sym__shortcode_open] = ACTIONS(4611), - [sym__unclosed_span] = ACTIONS(4611), - [sym__strong_emphasis_open_star] = ACTIONS(4611), - [sym__strong_emphasis_open_underscore] = ACTIONS(4611), - }, - [STATE(1389)] = { [sym__backslash_escape] = ACTIONS(4571), [sym_entity_reference] = ACTIONS(4571), [sym_numeric_character_reference] = ACTIONS(4571), @@ -141646,141 +141377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4571), [sym__strong_emphasis_open_underscore] = ACTIONS(4571), }, - [STATE(1390)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_insert_token2] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4337), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(1391)] = { - [sym__backslash_escape] = ACTIONS(4575), - [sym_entity_reference] = ACTIONS(4575), - [sym_numeric_character_reference] = ACTIONS(4575), - [anon_sym_LT] = ACTIONS(4577), - [anon_sym_GT] = ACTIONS(4575), - [anon_sym_BANG] = ACTIONS(4575), - [anon_sym_DQUOTE] = ACTIONS(4575), - [anon_sym_POUND] = ACTIONS(4575), - [anon_sym_DOLLAR] = ACTIONS(4575), - [anon_sym_PERCENT] = ACTIONS(4575), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_SQUOTE] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4575), - [anon_sym_COMMA] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4577), - [anon_sym_SLASH] = ACTIONS(4575), - [anon_sym_COLON] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4575), - [anon_sym_EQ] = ACTIONS(4575), - [anon_sym_QMARK] = ACTIONS(4575), - [anon_sym_LBRACK] = ACTIONS(4577), - [anon_sym_BSLASH] = ACTIONS(4577), - [anon_sym_CARET] = ACTIONS(4577), - [anon_sym_BQUOTE] = ACTIONS(4575), - [anon_sym_LBRACE] = ACTIONS(4575), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_TILDE] = ACTIONS(4575), - [anon_sym_LPAREN] = ACTIONS(4575), - [anon_sym_RPAREN] = ACTIONS(4575), - [sym__newline_token] = ACTIONS(4575), - [aux_sym_insert_token1] = ACTIONS(4575), - [aux_sym_delete_token1] = ACTIONS(4575), - [aux_sym_highlight_token1] = ACTIONS(4575), - [aux_sym_edit_comment_token1] = ACTIONS(4575), - [anon_sym_CARET_LBRACK] = ACTIONS(4575), - [anon_sym_LBRACK_CARET] = ACTIONS(4575), - [sym_uri_autolink] = ACTIONS(4575), - [sym_email_autolink] = ACTIONS(4575), - [sym__whitespace_ge_2] = ACTIONS(4575), - [aux_sym__whitespace_token1] = ACTIONS(4577), - [sym__word_no_digit] = ACTIONS(4575), - [sym__digits] = ACTIONS(4575), - [anon_sym_DASH_DASH] = ACTIONS(4577), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), - [sym__code_span_start] = ACTIONS(4575), - [sym__emphasis_open_star] = ACTIONS(4575), - [sym__emphasis_open_underscore] = ACTIONS(4575), - [sym__emphasis_close_star] = ACTIONS(4575), - [sym__strikeout_open] = ACTIONS(4575), - [sym__latex_span_start] = ACTIONS(4575), - [sym__single_quote_open] = ACTIONS(4575), - [sym__double_quote_open] = ACTIONS(4575), - [sym__superscript_open] = ACTIONS(4575), - [sym__subscript_open] = ACTIONS(4575), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), - [sym__cite_author_in_text] = ACTIONS(4575), - [sym__cite_suppress_author] = ACTIONS(4575), - [sym__shortcode_open_escaped] = ACTIONS(4575), - [sym__shortcode_open] = ACTIONS(4575), - [sym__unclosed_span] = ACTIONS(4575), - [sym__strong_emphasis_open_star] = ACTIONS(4575), - [sym__strong_emphasis_open_underscore] = ACTIONS(4575), - }, - [STATE(1392)] = { + [STATE(1386)] = { [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -141847,208 +141444,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4233), [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, - [STATE(1393)] = { - [sym__backslash_escape] = ACTIONS(4591), - [sym_entity_reference] = ACTIONS(4591), - [sym_numeric_character_reference] = ACTIONS(4591), - [anon_sym_LT] = ACTIONS(4593), - [anon_sym_GT] = ACTIONS(4591), - [anon_sym_BANG] = ACTIONS(4591), - [anon_sym_DQUOTE] = ACTIONS(4591), - [anon_sym_POUND] = ACTIONS(4591), - [anon_sym_DOLLAR] = ACTIONS(4591), - [anon_sym_PERCENT] = ACTIONS(4591), - [anon_sym_AMP] = ACTIONS(4593), - [anon_sym_SQUOTE] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_COMMA] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4593), - [anon_sym_SLASH] = ACTIONS(4591), - [anon_sym_COLON] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4591), - [anon_sym_EQ] = ACTIONS(4591), - [anon_sym_QMARK] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_BSLASH] = ACTIONS(4593), - [anon_sym_CARET] = ACTIONS(4593), - [anon_sym_BQUOTE] = ACTIONS(4591), - [anon_sym_LBRACE] = ACTIONS(4591), - [anon_sym_PIPE] = ACTIONS(4591), - [anon_sym_TILDE] = ACTIONS(4591), - [anon_sym_LPAREN] = ACTIONS(4591), - [anon_sym_RPAREN] = ACTIONS(4591), - [sym__newline_token] = ACTIONS(4591), - [aux_sym_insert_token1] = ACTIONS(4591), - [aux_sym_insert_token2] = ACTIONS(4591), - [aux_sym_delete_token1] = ACTIONS(4591), - [aux_sym_highlight_token1] = ACTIONS(4591), - [aux_sym_edit_comment_token1] = ACTIONS(4591), - [anon_sym_CARET_LBRACK] = ACTIONS(4591), - [anon_sym_LBRACK_CARET] = ACTIONS(4591), - [sym_uri_autolink] = ACTIONS(4591), - [sym_email_autolink] = ACTIONS(4591), - [sym__whitespace_ge_2] = ACTIONS(4593), - [aux_sym__whitespace_token1] = ACTIONS(4593), - [sym__word_no_digit] = ACTIONS(4591), - [sym__digits] = ACTIONS(4591), - [anon_sym_DASH_DASH] = ACTIONS(4593), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4591), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), - [sym__code_span_start] = ACTIONS(4591), - [sym__emphasis_open_star] = ACTIONS(4591), - [sym__emphasis_open_underscore] = ACTIONS(4591), - [sym__strikeout_open] = ACTIONS(4591), - [sym__latex_span_start] = ACTIONS(4591), - [sym__single_quote_open] = ACTIONS(4591), - [sym__double_quote_open] = ACTIONS(4591), - [sym__superscript_open] = ACTIONS(4591), - [sym__subscript_open] = ACTIONS(4591), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4591), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4591), - [sym__cite_author_in_text] = ACTIONS(4591), - [sym__cite_suppress_author] = ACTIONS(4591), - [sym__shortcode_open_escaped] = ACTIONS(4591), - [sym__shortcode_open] = ACTIONS(4591), - [sym__unclosed_span] = ACTIONS(4591), - [sym__strong_emphasis_open_star] = ACTIONS(4591), - [sym__strong_emphasis_open_underscore] = ACTIONS(4591), - }, - [STATE(1394)] = { - [sym__backslash_escape] = ACTIONS(4595), - [sym_entity_reference] = ACTIONS(4595), - [sym_numeric_character_reference] = ACTIONS(4595), - [anon_sym_LT] = ACTIONS(4597), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_DQUOTE] = ACTIONS(4595), - [anon_sym_POUND] = ACTIONS(4595), - [anon_sym_DOLLAR] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4597), - [anon_sym_SQUOTE] = ACTIONS(4595), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_COMMA] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4597), - [anon_sym_DOT] = ACTIONS(4597), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_COLON] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_QMARK] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_BSLASH] = ACTIONS(4597), - [anon_sym_CARET] = ACTIONS(4597), - [anon_sym_BQUOTE] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(4595), - [anon_sym_PIPE] = ACTIONS(4595), - [anon_sym_TILDE] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(4595), - [anon_sym_RPAREN] = ACTIONS(4595), - [sym__newline_token] = ACTIONS(4595), - [aux_sym_insert_token1] = ACTIONS(4595), - [aux_sym_insert_token2] = ACTIONS(4595), - [aux_sym_delete_token1] = ACTIONS(4595), - [aux_sym_highlight_token1] = ACTIONS(4595), - [aux_sym_edit_comment_token1] = ACTIONS(4595), - [anon_sym_CARET_LBRACK] = ACTIONS(4595), - [anon_sym_LBRACK_CARET] = ACTIONS(4595), - [sym_uri_autolink] = ACTIONS(4595), - [sym_email_autolink] = ACTIONS(4595), - [sym__whitespace_ge_2] = ACTIONS(4597), - [aux_sym__whitespace_token1] = ACTIONS(4597), - [sym__word_no_digit] = ACTIONS(4595), - [sym__digits] = ACTIONS(4595), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4595), - [sym__code_span_start] = ACTIONS(4595), - [sym__emphasis_open_star] = ACTIONS(4595), - [sym__emphasis_open_underscore] = ACTIONS(4595), - [sym__strikeout_open] = ACTIONS(4595), - [sym__latex_span_start] = ACTIONS(4595), - [sym__single_quote_open] = ACTIONS(4595), - [sym__double_quote_open] = ACTIONS(4595), - [sym__superscript_open] = ACTIONS(4595), - [sym__subscript_open] = ACTIONS(4595), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4595), - [sym__cite_author_in_text] = ACTIONS(4595), - [sym__cite_suppress_author] = ACTIONS(4595), - [sym__shortcode_open_escaped] = ACTIONS(4595), - [sym__shortcode_open] = ACTIONS(4595), - [sym__unclosed_span] = ACTIONS(4595), - [sym__strong_emphasis_open_star] = ACTIONS(4595), - [sym__strong_emphasis_open_underscore] = ACTIONS(4595), - }, - [STATE(1395)] = { - [ts_builtin_sym_end] = ACTIONS(4663), - [sym__backslash_escape] = ACTIONS(4663), - [sym_entity_reference] = ACTIONS(4663), - [sym_numeric_character_reference] = ACTIONS(4663), - [anon_sym_LT] = ACTIONS(4665), - [anon_sym_GT] = ACTIONS(4663), - [anon_sym_BANG] = ACTIONS(4663), - [anon_sym_DQUOTE] = ACTIONS(4663), - [anon_sym_POUND] = ACTIONS(4663), - [anon_sym_DOLLAR] = ACTIONS(4663), - [anon_sym_PERCENT] = ACTIONS(4663), - [anon_sym_AMP] = ACTIONS(4665), - [anon_sym_SQUOTE] = ACTIONS(4663), - [anon_sym_PLUS] = ACTIONS(4663), - [anon_sym_COMMA] = ACTIONS(4663), - [anon_sym_DASH] = ACTIONS(4665), - [anon_sym_DOT] = ACTIONS(4665), - [anon_sym_SLASH] = ACTIONS(4663), - [anon_sym_COLON] = ACTIONS(4663), - [anon_sym_SEMI] = ACTIONS(4663), - [anon_sym_EQ] = ACTIONS(4663), - [anon_sym_QMARK] = ACTIONS(4663), - [anon_sym_LBRACK] = ACTIONS(4665), - [anon_sym_BSLASH] = ACTIONS(4665), - [anon_sym_CARET] = ACTIONS(4665), - [anon_sym_BQUOTE] = ACTIONS(4663), - [anon_sym_LBRACE] = ACTIONS(4663), - [anon_sym_PIPE] = ACTIONS(4663), - [anon_sym_TILDE] = ACTIONS(4663), - [anon_sym_LPAREN] = ACTIONS(4663), - [anon_sym_RPAREN] = ACTIONS(4663), - [sym__newline_token] = ACTIONS(4663), - [aux_sym_insert_token1] = ACTIONS(4663), - [aux_sym_delete_token1] = ACTIONS(4663), - [aux_sym_highlight_token1] = ACTIONS(4663), - [aux_sym_edit_comment_token1] = ACTIONS(4663), - [anon_sym_CARET_LBRACK] = ACTIONS(4663), - [anon_sym_LBRACK_CARET] = ACTIONS(4663), - [sym_uri_autolink] = ACTIONS(4663), - [sym_email_autolink] = ACTIONS(4663), - [sym__whitespace_ge_2] = ACTIONS(4663), - [aux_sym__whitespace_token1] = ACTIONS(4665), - [sym__word_no_digit] = ACTIONS(4663), - [sym__digits] = ACTIONS(4663), - [anon_sym_DASH_DASH] = ACTIONS(4665), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4663), - [sym__code_span_start] = ACTIONS(4663), - [sym__emphasis_open_star] = ACTIONS(4663), - [sym__emphasis_open_underscore] = ACTIONS(4663), - [sym__strikeout_open] = ACTIONS(4663), - [sym__latex_span_start] = ACTIONS(4663), - [sym__single_quote_open] = ACTIONS(4663), - [sym__double_quote_open] = ACTIONS(4663), - [sym__superscript_open] = ACTIONS(4663), - [sym__subscript_open] = ACTIONS(4663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4663), - [sym__cite_author_in_text] = ACTIONS(4663), - [sym__cite_suppress_author] = ACTIONS(4663), - [sym__shortcode_open_escaped] = ACTIONS(4663), - [sym__shortcode_open] = ACTIONS(4663), - [sym__unclosed_span] = ACTIONS(4663), - [sym__strong_emphasis_open_star] = ACTIONS(4663), - [sym__strong_emphasis_open_underscore] = ACTIONS(4663), + [STATE(1387)] = { + [ts_builtin_sym_end] = ACTIONS(4659), + [sym__backslash_escape] = ACTIONS(4659), + [sym_entity_reference] = ACTIONS(4659), + [sym_numeric_character_reference] = ACTIONS(4659), + [anon_sym_LT] = ACTIONS(4661), + [anon_sym_GT] = ACTIONS(4659), + [anon_sym_BANG] = ACTIONS(4659), + [anon_sym_DQUOTE] = ACTIONS(4659), + [anon_sym_POUND] = ACTIONS(4659), + [anon_sym_DOLLAR] = ACTIONS(4659), + [anon_sym_PERCENT] = ACTIONS(4659), + [anon_sym_AMP] = ACTIONS(4661), + [anon_sym_SQUOTE] = ACTIONS(4659), + [anon_sym_PLUS] = ACTIONS(4659), + [anon_sym_COMMA] = ACTIONS(4659), + [anon_sym_DASH] = ACTIONS(4661), + [anon_sym_DOT] = ACTIONS(4661), + [anon_sym_SLASH] = ACTIONS(4659), + [anon_sym_COLON] = ACTIONS(4659), + [anon_sym_SEMI] = ACTIONS(4659), + [anon_sym_EQ] = ACTIONS(4659), + [anon_sym_QMARK] = ACTIONS(4659), + [anon_sym_LBRACK] = ACTIONS(4661), + [anon_sym_BSLASH] = ACTIONS(4661), + [anon_sym_CARET] = ACTIONS(4661), + [anon_sym_BQUOTE] = ACTIONS(4659), + [anon_sym_LBRACE] = ACTIONS(4659), + [anon_sym_PIPE] = ACTIONS(4659), + [anon_sym_TILDE] = ACTIONS(4659), + [anon_sym_LPAREN] = ACTIONS(4659), + [anon_sym_RPAREN] = ACTIONS(4659), + [sym__newline_token] = ACTIONS(4659), + [aux_sym_insert_token1] = ACTIONS(4659), + [aux_sym_delete_token1] = ACTIONS(4659), + [aux_sym_highlight_token1] = ACTIONS(4659), + [aux_sym_edit_comment_token1] = ACTIONS(4659), + [anon_sym_CARET_LBRACK] = ACTIONS(4659), + [anon_sym_LBRACK_CARET] = ACTIONS(4659), + [sym_uri_autolink] = ACTIONS(4659), + [sym_email_autolink] = ACTIONS(4659), + [sym__whitespace_ge_2] = ACTIONS(4659), + [aux_sym__whitespace_token1] = ACTIONS(4661), + [sym__word_no_digit] = ACTIONS(4659), + [sym__digits] = ACTIONS(4659), + [anon_sym_DASH_DASH] = ACTIONS(4661), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4659), + [sym__code_span_start] = ACTIONS(4659), + [sym__emphasis_open_star] = ACTIONS(4659), + [sym__emphasis_open_underscore] = ACTIONS(4659), + [sym__strikeout_open] = ACTIONS(4659), + [sym__latex_span_start] = ACTIONS(4659), + [sym__single_quote_open] = ACTIONS(4659), + [sym__double_quote_open] = ACTIONS(4659), + [sym__superscript_open] = ACTIONS(4659), + [sym__subscript_open] = ACTIONS(4659), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4659), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4659), + [sym__cite_author_in_text] = ACTIONS(4659), + [sym__cite_suppress_author] = ACTIONS(4659), + [sym__shortcode_open_escaped] = ACTIONS(4659), + [sym__shortcode_open] = ACTIONS(4659), + [sym__unclosed_span] = ACTIONS(4659), + [sym__strong_emphasis_open_star] = ACTIONS(4659), + [sym__strong_emphasis_open_underscore] = ACTIONS(4659), }, - [STATE(1396)] = { + [STATE(1388)] = { [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -142115,141 +141578,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4237), [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, - [STATE(1397)] = { - [sym__backslash_escape] = ACTIONS(4599), - [sym_entity_reference] = ACTIONS(4599), - [sym_numeric_character_reference] = ACTIONS(4599), - [anon_sym_LT] = ACTIONS(4601), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_BANG] = ACTIONS(4599), - [anon_sym_DQUOTE] = ACTIONS(4599), - [anon_sym_POUND] = ACTIONS(4599), - [anon_sym_DOLLAR] = ACTIONS(4599), - [anon_sym_PERCENT] = ACTIONS(4599), - [anon_sym_AMP] = ACTIONS(4601), - [anon_sym_SQUOTE] = ACTIONS(4599), - [anon_sym_PLUS] = ACTIONS(4599), - [anon_sym_COMMA] = ACTIONS(4599), - [anon_sym_DASH] = ACTIONS(4601), - [anon_sym_DOT] = ACTIONS(4601), - [anon_sym_SLASH] = ACTIONS(4599), - [anon_sym_COLON] = ACTIONS(4599), - [anon_sym_SEMI] = ACTIONS(4599), - [anon_sym_EQ] = ACTIONS(4599), - [anon_sym_QMARK] = ACTIONS(4599), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_BSLASH] = ACTIONS(4601), - [anon_sym_CARET] = ACTIONS(4601), - [anon_sym_BQUOTE] = ACTIONS(4599), - [anon_sym_LBRACE] = ACTIONS(4599), - [anon_sym_PIPE] = ACTIONS(4599), - [anon_sym_TILDE] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4599), - [anon_sym_RPAREN] = ACTIONS(4599), - [sym__newline_token] = ACTIONS(4599), - [aux_sym_insert_token1] = ACTIONS(4599), - [aux_sym_insert_token2] = ACTIONS(4599), - [aux_sym_delete_token1] = ACTIONS(4599), - [aux_sym_highlight_token1] = ACTIONS(4599), - [aux_sym_edit_comment_token1] = ACTIONS(4599), - [anon_sym_CARET_LBRACK] = ACTIONS(4599), - [anon_sym_LBRACK_CARET] = ACTIONS(4599), - [sym_uri_autolink] = ACTIONS(4599), - [sym_email_autolink] = ACTIONS(4599), - [sym__whitespace_ge_2] = ACTIONS(4601), - [aux_sym__whitespace_token1] = ACTIONS(4601), - [sym__word_no_digit] = ACTIONS(4599), - [sym__digits] = ACTIONS(4599), - [anon_sym_DASH_DASH] = ACTIONS(4601), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4599), - [sym__code_span_start] = ACTIONS(4599), - [sym__emphasis_open_star] = ACTIONS(4599), - [sym__emphasis_open_underscore] = ACTIONS(4599), - [sym__strikeout_open] = ACTIONS(4599), - [sym__latex_span_start] = ACTIONS(4599), - [sym__single_quote_open] = ACTIONS(4599), - [sym__double_quote_open] = ACTIONS(4599), - [sym__superscript_open] = ACTIONS(4599), - [sym__subscript_open] = ACTIONS(4599), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4599), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4599), - [sym__cite_author_in_text] = ACTIONS(4599), - [sym__cite_suppress_author] = ACTIONS(4599), - [sym__shortcode_open_escaped] = ACTIONS(4599), - [sym__shortcode_open] = ACTIONS(4599), - [sym__unclosed_span] = ACTIONS(4599), - [sym__strong_emphasis_open_star] = ACTIONS(4599), - [sym__strong_emphasis_open_underscore] = ACTIONS(4599), - }, - [STATE(1398)] = { - [sym__backslash_escape] = ACTIONS(4603), - [sym_entity_reference] = ACTIONS(4603), - [sym_numeric_character_reference] = ACTIONS(4603), - [anon_sym_LT] = ACTIONS(4605), - [anon_sym_GT] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(4603), - [anon_sym_DQUOTE] = ACTIONS(4603), - [anon_sym_POUND] = ACTIONS(4603), - [anon_sym_DOLLAR] = ACTIONS(4603), - [anon_sym_PERCENT] = ACTIONS(4603), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_SQUOTE] = ACTIONS(4603), - [anon_sym_PLUS] = ACTIONS(4603), - [anon_sym_COMMA] = ACTIONS(4603), - [anon_sym_DASH] = ACTIONS(4605), - [anon_sym_DOT] = ACTIONS(4605), - [anon_sym_SLASH] = ACTIONS(4603), - [anon_sym_COLON] = ACTIONS(4603), - [anon_sym_SEMI] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(4603), - [anon_sym_QMARK] = ACTIONS(4603), - [anon_sym_LBRACK] = ACTIONS(4605), - [anon_sym_BSLASH] = ACTIONS(4605), - [anon_sym_CARET] = ACTIONS(4605), - [anon_sym_BQUOTE] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(4603), - [anon_sym_PIPE] = ACTIONS(4603), - [anon_sym_TILDE] = ACTIONS(4603), - [anon_sym_LPAREN] = ACTIONS(4603), - [anon_sym_RPAREN] = ACTIONS(4603), - [sym__newline_token] = ACTIONS(4603), - [aux_sym_insert_token1] = ACTIONS(4603), - [aux_sym_insert_token2] = ACTIONS(4603), - [aux_sym_delete_token1] = ACTIONS(4603), - [aux_sym_highlight_token1] = ACTIONS(4603), - [aux_sym_edit_comment_token1] = ACTIONS(4603), - [anon_sym_CARET_LBRACK] = ACTIONS(4603), - [anon_sym_LBRACK_CARET] = ACTIONS(4603), - [sym_uri_autolink] = ACTIONS(4603), - [sym_email_autolink] = ACTIONS(4603), - [sym__whitespace_ge_2] = ACTIONS(4605), - [aux_sym__whitespace_token1] = ACTIONS(4605), - [sym__word_no_digit] = ACTIONS(4603), - [sym__digits] = ACTIONS(4603), - [anon_sym_DASH_DASH] = ACTIONS(4605), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4603), - [sym__code_span_start] = ACTIONS(4603), - [sym__emphasis_open_star] = ACTIONS(4603), - [sym__emphasis_open_underscore] = ACTIONS(4603), - [sym__strikeout_open] = ACTIONS(4603), - [sym__latex_span_start] = ACTIONS(4603), - [sym__single_quote_open] = ACTIONS(4603), - [sym__double_quote_open] = ACTIONS(4603), - [sym__superscript_open] = ACTIONS(4603), - [sym__subscript_open] = ACTIONS(4603), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4603), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4603), - [sym__cite_author_in_text] = ACTIONS(4603), - [sym__cite_suppress_author] = ACTIONS(4603), - [sym__shortcode_open_escaped] = ACTIONS(4603), - [sym__shortcode_open] = ACTIONS(4603), - [sym__unclosed_span] = ACTIONS(4603), - [sym__strong_emphasis_open_star] = ACTIONS(4603), - [sym__strong_emphasis_open_underscore] = ACTIONS(4603), - }, - [STATE(1399)] = { + [STATE(1389)] = { + [ts_builtin_sym_end] = ACTIONS(4607), [sym__backslash_escape] = ACTIONS(4607), [sym_entity_reference] = ACTIONS(4607), [sym_numeric_character_reference] = ACTIONS(4607), @@ -142282,7 +141612,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(4607), [sym__newline_token] = ACTIONS(4607), [aux_sym_insert_token1] = ACTIONS(4607), - [aux_sym_insert_token2] = ACTIONS(4607), [aux_sym_delete_token1] = ACTIONS(4607), [aux_sym_highlight_token1] = ACTIONS(4607), [aux_sym_edit_comment_token1] = ACTIONS(4607), @@ -142290,7 +141619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_CARET] = ACTIONS(4607), [sym_uri_autolink] = ACTIONS(4607), [sym_email_autolink] = ACTIONS(4607), - [sym__whitespace_ge_2] = ACTIONS(4609), + [sym__whitespace_ge_2] = ACTIONS(4607), [aux_sym__whitespace_token1] = ACTIONS(4609), [sym__word_no_digit] = ACTIONS(4607), [sym__digits] = ACTIONS(4607), @@ -142316,180 +141645,917 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4607), [sym__strong_emphasis_open_underscore] = ACTIONS(4607), }, - [STATE(1400)] = { - [sym__backslash_escape] = ACTIONS(4611), - [sym_entity_reference] = ACTIONS(4611), - [sym_numeric_character_reference] = ACTIONS(4611), - [anon_sym_LT] = ACTIONS(4613), - [anon_sym_GT] = ACTIONS(4611), - [anon_sym_BANG] = ACTIONS(4611), - [anon_sym_DQUOTE] = ACTIONS(4611), - [anon_sym_POUND] = ACTIONS(4611), - [anon_sym_DOLLAR] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_AMP] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_DOT] = ACTIONS(4613), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_COLON] = ACTIONS(4611), - [anon_sym_SEMI] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_QMARK] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4613), - [anon_sym_BSLASH] = ACTIONS(4613), - [anon_sym_CARET] = ACTIONS(4613), - [anon_sym_BQUOTE] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(4611), - [anon_sym_PIPE] = ACTIONS(4611), - [anon_sym_TILDE] = ACTIONS(4611), - [anon_sym_LPAREN] = ACTIONS(4611), - [anon_sym_RPAREN] = ACTIONS(4611), - [sym__newline_token] = ACTIONS(4611), - [aux_sym_insert_token1] = ACTIONS(4611), - [aux_sym_insert_token2] = ACTIONS(4611), - [aux_sym_delete_token1] = ACTIONS(4611), - [aux_sym_highlight_token1] = ACTIONS(4611), - [aux_sym_edit_comment_token1] = ACTIONS(4611), - [anon_sym_CARET_LBRACK] = ACTIONS(4611), - [anon_sym_LBRACK_CARET] = ACTIONS(4611), - [sym_uri_autolink] = ACTIONS(4611), - [sym_email_autolink] = ACTIONS(4611), - [sym__whitespace_ge_2] = ACTIONS(4613), - [aux_sym__whitespace_token1] = ACTIONS(4613), - [sym__word_no_digit] = ACTIONS(4611), - [sym__digits] = ACTIONS(4611), - [anon_sym_DASH_DASH] = ACTIONS(4613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4611), - [sym__code_span_start] = ACTIONS(4611), - [sym__emphasis_open_star] = ACTIONS(4611), - [sym__emphasis_open_underscore] = ACTIONS(4611), - [sym__strikeout_open] = ACTIONS(4611), - [sym__latex_span_start] = ACTIONS(4611), - [sym__single_quote_open] = ACTIONS(4611), - [sym__double_quote_open] = ACTIONS(4611), - [sym__superscript_open] = ACTIONS(4611), - [sym__subscript_open] = ACTIONS(4611), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4611), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4611), - [sym__cite_author_in_text] = ACTIONS(4611), - [sym__cite_suppress_author] = ACTIONS(4611), - [sym__shortcode_open_escaped] = ACTIONS(4611), - [sym__shortcode_open] = ACTIONS(4611), - [sym__unclosed_span] = ACTIONS(4611), - [sym__strong_emphasis_open_star] = ACTIONS(4611), - [sym__strong_emphasis_open_underscore] = ACTIONS(4611), + [STATE(1390)] = { + [sym__backslash_escape] = ACTIONS(4241), + [sym_entity_reference] = ACTIONS(4241), + [sym_numeric_character_reference] = ACTIONS(4241), + [anon_sym_LT] = ACTIONS(4243), + [anon_sym_GT] = ACTIONS(4241), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_DQUOTE] = ACTIONS(4241), + [anon_sym_POUND] = ACTIONS(4241), + [anon_sym_DOLLAR] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4243), + [anon_sym_SQUOTE] = ACTIONS(4241), + [anon_sym_PLUS] = ACTIONS(4241), + [anon_sym_COMMA] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4243), + [anon_sym_DOT] = ACTIONS(4243), + [anon_sym_SLASH] = ACTIONS(4241), + [anon_sym_COLON] = ACTIONS(4241), + [anon_sym_SEMI] = ACTIONS(4241), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_QMARK] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_BSLASH] = ACTIONS(4243), + [anon_sym_CARET] = ACTIONS(4243), + [anon_sym_BQUOTE] = ACTIONS(4241), + [anon_sym_LBRACE] = ACTIONS(4241), + [anon_sym_PIPE] = ACTIONS(4241), + [anon_sym_TILDE] = ACTIONS(4241), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_RPAREN] = ACTIONS(4241), + [sym__newline_token] = ACTIONS(4241), + [aux_sym_insert_token1] = ACTIONS(4241), + [aux_sym_delete_token1] = ACTIONS(4241), + [aux_sym_highlight_token1] = ACTIONS(4241), + [aux_sym_edit_comment_token1] = ACTIONS(4241), + [anon_sym_CARET_LBRACK] = ACTIONS(4241), + [anon_sym_LBRACK_CARET] = ACTIONS(4241), + [sym_uri_autolink] = ACTIONS(4241), + [sym_email_autolink] = ACTIONS(4241), + [sym__whitespace_ge_2] = ACTIONS(4241), + [aux_sym__whitespace_token1] = ACTIONS(4243), + [sym__word_no_digit] = ACTIONS(4241), + [sym__digits] = ACTIONS(4241), + [anon_sym_DASH_DASH] = ACTIONS(4243), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4241), + [sym__code_span_start] = ACTIONS(4241), + [sym__emphasis_open_star] = ACTIONS(4241), + [sym__emphasis_open_underscore] = ACTIONS(4241), + [sym__emphasis_close_star] = ACTIONS(4241), + [sym__strikeout_open] = ACTIONS(4241), + [sym__latex_span_start] = ACTIONS(4241), + [sym__single_quote_open] = ACTIONS(4241), + [sym__double_quote_open] = ACTIONS(4241), + [sym__superscript_open] = ACTIONS(4241), + [sym__subscript_open] = ACTIONS(4241), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4241), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4241), + [sym__cite_author_in_text] = ACTIONS(4241), + [sym__cite_suppress_author] = ACTIONS(4241), + [sym__shortcode_open_escaped] = ACTIONS(4241), + [sym__shortcode_open] = ACTIONS(4241), + [sym__unclosed_span] = ACTIONS(4241), + [sym__strong_emphasis_open_star] = ACTIONS(4241), + [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, - [STATE(1401)] = { - [sym__backslash_escape] = ACTIONS(4615), - [sym_entity_reference] = ACTIONS(4615), - [sym_numeric_character_reference] = ACTIONS(4615), - [anon_sym_LT] = ACTIONS(4617), - [anon_sym_GT] = ACTIONS(4615), - [anon_sym_BANG] = ACTIONS(4615), - [anon_sym_DQUOTE] = ACTIONS(4615), - [anon_sym_POUND] = ACTIONS(4615), - [anon_sym_DOLLAR] = ACTIONS(4615), - [anon_sym_PERCENT] = ACTIONS(4615), - [anon_sym_AMP] = ACTIONS(4617), - [anon_sym_SQUOTE] = ACTIONS(4615), - [anon_sym_PLUS] = ACTIONS(4615), - [anon_sym_COMMA] = ACTIONS(4615), - [anon_sym_DASH] = ACTIONS(4617), - [anon_sym_DOT] = ACTIONS(4617), - [anon_sym_SLASH] = ACTIONS(4615), - [anon_sym_COLON] = ACTIONS(4615), - [anon_sym_SEMI] = ACTIONS(4615), - [anon_sym_EQ] = ACTIONS(4615), - [anon_sym_QMARK] = ACTIONS(4615), - [anon_sym_LBRACK] = ACTIONS(4617), - [anon_sym_BSLASH] = ACTIONS(4617), - [anon_sym_CARET] = ACTIONS(4617), - [anon_sym_BQUOTE] = ACTIONS(4615), - [anon_sym_LBRACE] = ACTIONS(4615), - [anon_sym_PIPE] = ACTIONS(4615), - [anon_sym_TILDE] = ACTIONS(4615), - [anon_sym_LPAREN] = ACTIONS(4615), - [anon_sym_RPAREN] = ACTIONS(4615), - [sym__newline_token] = ACTIONS(4615), - [aux_sym_insert_token1] = ACTIONS(4615), - [aux_sym_insert_token2] = ACTIONS(4615), - [aux_sym_delete_token1] = ACTIONS(4615), - [aux_sym_highlight_token1] = ACTIONS(4615), - [aux_sym_edit_comment_token1] = ACTIONS(4615), - [anon_sym_CARET_LBRACK] = ACTIONS(4615), - [anon_sym_LBRACK_CARET] = ACTIONS(4615), - [sym_uri_autolink] = ACTIONS(4615), - [sym_email_autolink] = ACTIONS(4615), - [sym__whitespace_ge_2] = ACTIONS(4617), - [aux_sym__whitespace_token1] = ACTIONS(4617), - [sym__word_no_digit] = ACTIONS(4615), - [sym__digits] = ACTIONS(4615), - [anon_sym_DASH_DASH] = ACTIONS(4617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4615), - [sym__code_span_start] = ACTIONS(4615), - [sym__emphasis_open_star] = ACTIONS(4615), - [sym__emphasis_open_underscore] = ACTIONS(4615), - [sym__strikeout_open] = ACTIONS(4615), - [sym__latex_span_start] = ACTIONS(4615), - [sym__single_quote_open] = ACTIONS(4615), - [sym__double_quote_open] = ACTIONS(4615), - [sym__superscript_open] = ACTIONS(4615), - [sym__subscript_open] = ACTIONS(4615), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4615), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4615), - [sym__cite_author_in_text] = ACTIONS(4615), - [sym__cite_suppress_author] = ACTIONS(4615), - [sym__shortcode_open_escaped] = ACTIONS(4615), - [sym__shortcode_open] = ACTIONS(4615), - [sym__unclosed_span] = ACTIONS(4615), - [sym__strong_emphasis_open_star] = ACTIONS(4615), - [sym__strong_emphasis_open_underscore] = ACTIONS(4615), + [STATE(1391)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_insert_token2] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4331), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(1402)] = { - [sym__backslash_escape] = ACTIONS(4619), - [sym_entity_reference] = ACTIONS(4619), - [sym_numeric_character_reference] = ACTIONS(4619), - [anon_sym_LT] = ACTIONS(4621), - [anon_sym_GT] = ACTIONS(4619), - [anon_sym_BANG] = ACTIONS(4619), - [anon_sym_DQUOTE] = ACTIONS(4619), - [anon_sym_POUND] = ACTIONS(4619), - [anon_sym_DOLLAR] = ACTIONS(4619), - [anon_sym_PERCENT] = ACTIONS(4619), - [anon_sym_AMP] = ACTIONS(4621), - [anon_sym_SQUOTE] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4619), - [anon_sym_COMMA] = ACTIONS(4619), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_DOT] = ACTIONS(4621), - [anon_sym_SLASH] = ACTIONS(4619), - [anon_sym_COLON] = ACTIONS(4619), - [anon_sym_SEMI] = ACTIONS(4619), - [anon_sym_EQ] = ACTIONS(4619), - [anon_sym_QMARK] = ACTIONS(4619), - [anon_sym_LBRACK] = ACTIONS(4621), - [anon_sym_BSLASH] = ACTIONS(4621), - [anon_sym_CARET] = ACTIONS(4621), - [anon_sym_BQUOTE] = ACTIONS(4619), - [anon_sym_LBRACE] = ACTIONS(4619), - [anon_sym_PIPE] = ACTIONS(4619), - [anon_sym_TILDE] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(4619), - [anon_sym_RPAREN] = ACTIONS(4619), - [sym__newline_token] = ACTIONS(4619), - [aux_sym_insert_token1] = ACTIONS(4619), - [aux_sym_insert_token2] = ACTIONS(4619), - [aux_sym_delete_token1] = ACTIONS(4619), - [aux_sym_highlight_token1] = ACTIONS(4619), - [aux_sym_edit_comment_token1] = ACTIONS(4619), - [anon_sym_CARET_LBRACK] = ACTIONS(4619), - [anon_sym_LBRACK_CARET] = ACTIONS(4619), - [sym_uri_autolink] = ACTIONS(4619), + [STATE(1392)] = { + [ts_builtin_sym_end] = ACTIONS(4663), + [sym__backslash_escape] = ACTIONS(4663), + [sym_entity_reference] = ACTIONS(4663), + [sym_numeric_character_reference] = ACTIONS(4663), + [anon_sym_LT] = ACTIONS(4665), + [anon_sym_GT] = ACTIONS(4663), + [anon_sym_BANG] = ACTIONS(4663), + [anon_sym_DQUOTE] = ACTIONS(4663), + [anon_sym_POUND] = ACTIONS(4663), + [anon_sym_DOLLAR] = ACTIONS(4663), + [anon_sym_PERCENT] = ACTIONS(4663), + [anon_sym_AMP] = ACTIONS(4665), + [anon_sym_SQUOTE] = ACTIONS(4663), + [anon_sym_PLUS] = ACTIONS(4663), + [anon_sym_COMMA] = ACTIONS(4663), + [anon_sym_DASH] = ACTIONS(4665), + [anon_sym_DOT] = ACTIONS(4665), + [anon_sym_SLASH] = ACTIONS(4663), + [anon_sym_COLON] = ACTIONS(4663), + [anon_sym_SEMI] = ACTIONS(4663), + [anon_sym_EQ] = ACTIONS(4663), + [anon_sym_QMARK] = ACTIONS(4663), + [anon_sym_LBRACK] = ACTIONS(4665), + [anon_sym_BSLASH] = ACTIONS(4665), + [anon_sym_CARET] = ACTIONS(4665), + [anon_sym_BQUOTE] = ACTIONS(4663), + [anon_sym_LBRACE] = ACTIONS(4663), + [anon_sym_PIPE] = ACTIONS(4663), + [anon_sym_TILDE] = ACTIONS(4663), + [anon_sym_LPAREN] = ACTIONS(4663), + [anon_sym_RPAREN] = ACTIONS(4663), + [sym__newline_token] = ACTIONS(4663), + [aux_sym_insert_token1] = ACTIONS(4663), + [aux_sym_delete_token1] = ACTIONS(4663), + [aux_sym_highlight_token1] = ACTIONS(4663), + [aux_sym_edit_comment_token1] = ACTIONS(4663), + [anon_sym_CARET_LBRACK] = ACTIONS(4663), + [anon_sym_LBRACK_CARET] = ACTIONS(4663), + [sym_uri_autolink] = ACTIONS(4663), + [sym_email_autolink] = ACTIONS(4663), + [sym__whitespace_ge_2] = ACTIONS(4663), + [aux_sym__whitespace_token1] = ACTIONS(4665), + [sym__word_no_digit] = ACTIONS(4663), + [sym__digits] = ACTIONS(4663), + [anon_sym_DASH_DASH] = ACTIONS(4665), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4663), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4663), + [sym__code_span_start] = ACTIONS(4663), + [sym__emphasis_open_star] = ACTIONS(4663), + [sym__emphasis_open_underscore] = ACTIONS(4663), + [sym__strikeout_open] = ACTIONS(4663), + [sym__latex_span_start] = ACTIONS(4663), + [sym__single_quote_open] = ACTIONS(4663), + [sym__double_quote_open] = ACTIONS(4663), + [sym__superscript_open] = ACTIONS(4663), + [sym__subscript_open] = ACTIONS(4663), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4663), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4663), + [sym__cite_author_in_text] = ACTIONS(4663), + [sym__cite_suppress_author] = ACTIONS(4663), + [sym__shortcode_open_escaped] = ACTIONS(4663), + [sym__shortcode_open] = ACTIONS(4663), + [sym__unclosed_span] = ACTIONS(4663), + [sym__strong_emphasis_open_star] = ACTIONS(4663), + [sym__strong_emphasis_open_underscore] = ACTIONS(4663), + }, + [STATE(1393)] = { + [sym__backslash_escape] = ACTIONS(4245), + [sym_entity_reference] = ACTIONS(4245), + [sym_numeric_character_reference] = ACTIONS(4245), + [anon_sym_LT] = ACTIONS(4247), + [anon_sym_GT] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(4245), + [anon_sym_DQUOTE] = ACTIONS(4245), + [anon_sym_POUND] = ACTIONS(4245), + [anon_sym_DOLLAR] = ACTIONS(4245), + [anon_sym_PERCENT] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_SQUOTE] = ACTIONS(4245), + [anon_sym_PLUS] = ACTIONS(4245), + [anon_sym_COMMA] = ACTIONS(4245), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_DOT] = ACTIONS(4247), + [anon_sym_SLASH] = ACTIONS(4245), + [anon_sym_COLON] = ACTIONS(4245), + [anon_sym_SEMI] = ACTIONS(4245), + [anon_sym_EQ] = ACTIONS(4245), + [anon_sym_QMARK] = ACTIONS(4245), + [anon_sym_LBRACK] = ACTIONS(4247), + [anon_sym_BSLASH] = ACTIONS(4247), + [anon_sym_CARET] = ACTIONS(4247), + [anon_sym_BQUOTE] = ACTIONS(4245), + [anon_sym_LBRACE] = ACTIONS(4245), + [anon_sym_PIPE] = ACTIONS(4245), + [anon_sym_TILDE] = ACTIONS(4245), + [anon_sym_LPAREN] = ACTIONS(4245), + [anon_sym_RPAREN] = ACTIONS(4245), + [sym__newline_token] = ACTIONS(4245), + [aux_sym_insert_token1] = ACTIONS(4245), + [aux_sym_delete_token1] = ACTIONS(4245), + [aux_sym_highlight_token1] = ACTIONS(4245), + [aux_sym_edit_comment_token1] = ACTIONS(4245), + [anon_sym_CARET_LBRACK] = ACTIONS(4245), + [anon_sym_LBRACK_CARET] = ACTIONS(4245), + [sym_uri_autolink] = ACTIONS(4245), + [sym_email_autolink] = ACTIONS(4245), + [sym__whitespace_ge_2] = ACTIONS(4245), + [aux_sym__whitespace_token1] = ACTIONS(4247), + [sym__word_no_digit] = ACTIONS(4245), + [sym__digits] = ACTIONS(4245), + [anon_sym_DASH_DASH] = ACTIONS(4247), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4245), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4245), + [sym__code_span_start] = ACTIONS(4245), + [sym__emphasis_open_star] = ACTIONS(4245), + [sym__emphasis_open_underscore] = ACTIONS(4245), + [sym__emphasis_close_star] = ACTIONS(4245), + [sym__strikeout_open] = ACTIONS(4245), + [sym__latex_span_start] = ACTIONS(4245), + [sym__single_quote_open] = ACTIONS(4245), + [sym__double_quote_open] = ACTIONS(4245), + [sym__superscript_open] = ACTIONS(4245), + [sym__subscript_open] = ACTIONS(4245), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4245), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4245), + [sym__cite_author_in_text] = ACTIONS(4245), + [sym__cite_suppress_author] = ACTIONS(4245), + [sym__shortcode_open_escaped] = ACTIONS(4245), + [sym__shortcode_open] = ACTIONS(4245), + [sym__unclosed_span] = ACTIONS(4245), + [sym__strong_emphasis_open_star] = ACTIONS(4245), + [sym__strong_emphasis_open_underscore] = ACTIONS(4245), + }, + [STATE(1394)] = { + [sym__backslash_escape] = ACTIONS(4587), + [sym_entity_reference] = ACTIONS(4587), + [sym_numeric_character_reference] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4587), + [anon_sym_DQUOTE] = ACTIONS(4587), + [anon_sym_POUND] = ACTIONS(4587), + [anon_sym_DOLLAR] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4587), + [anon_sym_AMP] = ACTIONS(4589), + [anon_sym_SQUOTE] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_BSLASH] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4589), + [anon_sym_BQUOTE] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_PIPE] = ACTIONS(4587), + [anon_sym_TILDE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4587), + [sym__newline_token] = ACTIONS(4587), + [aux_sym_insert_token1] = ACTIONS(4587), + [aux_sym_insert_token2] = ACTIONS(4587), + [aux_sym_delete_token1] = ACTIONS(4587), + [aux_sym_highlight_token1] = ACTIONS(4587), + [aux_sym_edit_comment_token1] = ACTIONS(4587), + [anon_sym_CARET_LBRACK] = ACTIONS(4587), + [anon_sym_LBRACK_CARET] = ACTIONS(4587), + [sym_uri_autolink] = ACTIONS(4587), + [sym_email_autolink] = ACTIONS(4587), + [sym__whitespace_ge_2] = ACTIONS(4589), + [aux_sym__whitespace_token1] = ACTIONS(4589), + [sym__word_no_digit] = ACTIONS(4587), + [sym__digits] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), + [sym__code_span_start] = ACTIONS(4587), + [sym__emphasis_open_star] = ACTIONS(4587), + [sym__emphasis_open_underscore] = ACTIONS(4587), + [sym__strikeout_open] = ACTIONS(4587), + [sym__latex_span_start] = ACTIONS(4587), + [sym__single_quote_open] = ACTIONS(4587), + [sym__double_quote_open] = ACTIONS(4587), + [sym__superscript_open] = ACTIONS(4587), + [sym__subscript_open] = ACTIONS(4587), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), + [sym__cite_author_in_text] = ACTIONS(4587), + [sym__cite_suppress_author] = ACTIONS(4587), + [sym__shortcode_open_escaped] = ACTIONS(4587), + [sym__shortcode_open] = ACTIONS(4587), + [sym__unclosed_span] = ACTIONS(4587), + [sym__strong_emphasis_open_star] = ACTIONS(4587), + [sym__strong_emphasis_open_underscore] = ACTIONS(4587), + }, + [STATE(1395)] = { + [sym__backslash_escape] = ACTIONS(4591), + [sym_entity_reference] = ACTIONS(4591), + [sym_numeric_character_reference] = ACTIONS(4591), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_GT] = ACTIONS(4591), + [anon_sym_BANG] = ACTIONS(4591), + [anon_sym_DQUOTE] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4591), + [anon_sym_DOLLAR] = ACTIONS(4591), + [anon_sym_PERCENT] = ACTIONS(4591), + [anon_sym_AMP] = ACTIONS(4593), + [anon_sym_SQUOTE] = ACTIONS(4591), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [anon_sym_LBRACK] = ACTIONS(4593), + [anon_sym_BSLASH] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4593), + [anon_sym_BQUOTE] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4591), + [anon_sym_LPAREN] = ACTIONS(4591), + [anon_sym_RPAREN] = ACTIONS(4591), + [sym__newline_token] = ACTIONS(4591), + [aux_sym_insert_token1] = ACTIONS(4591), + [aux_sym_insert_token2] = ACTIONS(4591), + [aux_sym_delete_token1] = ACTIONS(4591), + [aux_sym_highlight_token1] = ACTIONS(4591), + [aux_sym_edit_comment_token1] = ACTIONS(4591), + [anon_sym_CARET_LBRACK] = ACTIONS(4591), + [anon_sym_LBRACK_CARET] = ACTIONS(4591), + [sym_uri_autolink] = ACTIONS(4591), + [sym_email_autolink] = ACTIONS(4591), + [sym__whitespace_ge_2] = ACTIONS(4593), + [aux_sym__whitespace_token1] = ACTIONS(4593), + [sym__word_no_digit] = ACTIONS(4591), + [sym__digits] = ACTIONS(4591), + [anon_sym_DASH_DASH] = ACTIONS(4593), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4591), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), + [sym__code_span_start] = ACTIONS(4591), + [sym__emphasis_open_star] = ACTIONS(4591), + [sym__emphasis_open_underscore] = ACTIONS(4591), + [sym__strikeout_open] = ACTIONS(4591), + [sym__latex_span_start] = ACTIONS(4591), + [sym__single_quote_open] = ACTIONS(4591), + [sym__double_quote_open] = ACTIONS(4591), + [sym__superscript_open] = ACTIONS(4591), + [sym__subscript_open] = ACTIONS(4591), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4591), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4591), + [sym__cite_author_in_text] = ACTIONS(4591), + [sym__cite_suppress_author] = ACTIONS(4591), + [sym__shortcode_open_escaped] = ACTIONS(4591), + [sym__shortcode_open] = ACTIONS(4591), + [sym__unclosed_span] = ACTIONS(4591), + [sym__strong_emphasis_open_star] = ACTIONS(4591), + [sym__strong_emphasis_open_underscore] = ACTIONS(4591), + }, + [STATE(1396)] = { + [sym__backslash_escape] = ACTIONS(4575), + [sym_entity_reference] = ACTIONS(4575), + [sym_numeric_character_reference] = ACTIONS(4575), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4575), + [anon_sym_DQUOTE] = ACTIONS(4575), + [anon_sym_POUND] = ACTIONS(4575), + [anon_sym_DOLLAR] = ACTIONS(4575), + [anon_sym_PERCENT] = ACTIONS(4575), + [anon_sym_AMP] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4575), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_EQ] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4577), + [anon_sym_BSLASH] = ACTIONS(4577), + [anon_sym_CARET] = ACTIONS(4577), + [anon_sym_BQUOTE] = ACTIONS(4575), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_PIPE] = ACTIONS(4575), + [anon_sym_TILDE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_RPAREN] = ACTIONS(4575), + [sym__newline_token] = ACTIONS(4575), + [aux_sym_insert_token1] = ACTIONS(4575), + [aux_sym_delete_token1] = ACTIONS(4575), + [aux_sym_highlight_token1] = ACTIONS(4575), + [aux_sym_edit_comment_token1] = ACTIONS(4575), + [anon_sym_CARET_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_CARET] = ACTIONS(4575), + [sym_uri_autolink] = ACTIONS(4575), + [sym_email_autolink] = ACTIONS(4575), + [sym__whitespace_ge_2] = ACTIONS(4575), + [aux_sym__whitespace_token1] = ACTIONS(4577), + [sym__word_no_digit] = ACTIONS(4575), + [sym__digits] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4577), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), + [sym__code_span_start] = ACTIONS(4575), + [sym__emphasis_open_star] = ACTIONS(4575), + [sym__emphasis_open_underscore] = ACTIONS(4575), + [sym__emphasis_close_star] = ACTIONS(4575), + [sym__strikeout_open] = ACTIONS(4575), + [sym__latex_span_start] = ACTIONS(4575), + [sym__single_quote_open] = ACTIONS(4575), + [sym__double_quote_open] = ACTIONS(4575), + [sym__superscript_open] = ACTIONS(4575), + [sym__subscript_open] = ACTIONS(4575), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), + [sym__cite_author_in_text] = ACTIONS(4575), + [sym__cite_suppress_author] = ACTIONS(4575), + [sym__shortcode_open_escaped] = ACTIONS(4575), + [sym__shortcode_open] = ACTIONS(4575), + [sym__unclosed_span] = ACTIONS(4575), + [sym__strong_emphasis_open_star] = ACTIONS(4575), + [sym__strong_emphasis_open_underscore] = ACTIONS(4575), + }, + [STATE(1397)] = { + [sym__backslash_escape] = ACTIONS(4595), + [sym_entity_reference] = ACTIONS(4595), + [sym_numeric_character_reference] = ACTIONS(4595), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_BANG] = ACTIONS(4595), + [anon_sym_DQUOTE] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4595), + [anon_sym_DOLLAR] = ACTIONS(4595), + [anon_sym_PERCENT] = ACTIONS(4595), + [anon_sym_AMP] = ACTIONS(4597), + [anon_sym_SQUOTE] = ACTIONS(4595), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_COMMA] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [anon_sym_LBRACK] = ACTIONS(4597), + [anon_sym_BSLASH] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4597), + [anon_sym_BQUOTE] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4595), + [anon_sym_PIPE] = ACTIONS(4595), + [anon_sym_TILDE] = ACTIONS(4595), + [anon_sym_LPAREN] = ACTIONS(4595), + [anon_sym_RPAREN] = ACTIONS(4595), + [sym__newline_token] = ACTIONS(4595), + [aux_sym_insert_token1] = ACTIONS(4595), + [aux_sym_insert_token2] = ACTIONS(4595), + [aux_sym_delete_token1] = ACTIONS(4595), + [aux_sym_highlight_token1] = ACTIONS(4595), + [aux_sym_edit_comment_token1] = ACTIONS(4595), + [anon_sym_CARET_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACK_CARET] = ACTIONS(4595), + [sym_uri_autolink] = ACTIONS(4595), + [sym_email_autolink] = ACTIONS(4595), + [sym__whitespace_ge_2] = ACTIONS(4597), + [aux_sym__whitespace_token1] = ACTIONS(4597), + [sym__word_no_digit] = ACTIONS(4595), + [sym__digits] = ACTIONS(4595), + [anon_sym_DASH_DASH] = ACTIONS(4597), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4595), + [sym__code_span_start] = ACTIONS(4595), + [sym__emphasis_open_star] = ACTIONS(4595), + [sym__emphasis_open_underscore] = ACTIONS(4595), + [sym__strikeout_open] = ACTIONS(4595), + [sym__latex_span_start] = ACTIONS(4595), + [sym__single_quote_open] = ACTIONS(4595), + [sym__double_quote_open] = ACTIONS(4595), + [sym__superscript_open] = ACTIONS(4595), + [sym__subscript_open] = ACTIONS(4595), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4595), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4595), + [sym__cite_author_in_text] = ACTIONS(4595), + [sym__cite_suppress_author] = ACTIONS(4595), + [sym__shortcode_open_escaped] = ACTIONS(4595), + [sym__shortcode_open] = ACTIONS(4595), + [sym__unclosed_span] = ACTIONS(4595), + [sym__strong_emphasis_open_star] = ACTIONS(4595), + [sym__strong_emphasis_open_underscore] = ACTIONS(4595), + }, + [STATE(1398)] = { + [sym__backslash_escape] = ACTIONS(4599), + [sym_entity_reference] = ACTIONS(4599), + [sym_numeric_character_reference] = ACTIONS(4599), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_GT] = ACTIONS(4599), + [anon_sym_BANG] = ACTIONS(4599), + [anon_sym_DQUOTE] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4599), + [anon_sym_DOLLAR] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_AMP] = ACTIONS(4601), + [anon_sym_SQUOTE] = ACTIONS(4599), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_COMMA] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(4601), + [anon_sym_BSLASH] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4601), + [anon_sym_BQUOTE] = ACTIONS(4599), + [anon_sym_LBRACE] = ACTIONS(4599), + [anon_sym_PIPE] = ACTIONS(4599), + [anon_sym_TILDE] = ACTIONS(4599), + [anon_sym_LPAREN] = ACTIONS(4599), + [anon_sym_RPAREN] = ACTIONS(4599), + [sym__newline_token] = ACTIONS(4599), + [aux_sym_insert_token1] = ACTIONS(4599), + [aux_sym_insert_token2] = ACTIONS(4599), + [aux_sym_delete_token1] = ACTIONS(4599), + [aux_sym_highlight_token1] = ACTIONS(4599), + [aux_sym_edit_comment_token1] = ACTIONS(4599), + [anon_sym_CARET_LBRACK] = ACTIONS(4599), + [anon_sym_LBRACK_CARET] = ACTIONS(4599), + [sym_uri_autolink] = ACTIONS(4599), + [sym_email_autolink] = ACTIONS(4599), + [sym__whitespace_ge_2] = ACTIONS(4601), + [aux_sym__whitespace_token1] = ACTIONS(4601), + [sym__word_no_digit] = ACTIONS(4599), + [sym__digits] = ACTIONS(4599), + [anon_sym_DASH_DASH] = ACTIONS(4601), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4599), + [sym__code_span_start] = ACTIONS(4599), + [sym__emphasis_open_star] = ACTIONS(4599), + [sym__emphasis_open_underscore] = ACTIONS(4599), + [sym__strikeout_open] = ACTIONS(4599), + [sym__latex_span_start] = ACTIONS(4599), + [sym__single_quote_open] = ACTIONS(4599), + [sym__double_quote_open] = ACTIONS(4599), + [sym__superscript_open] = ACTIONS(4599), + [sym__subscript_open] = ACTIONS(4599), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4599), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4599), + [sym__cite_author_in_text] = ACTIONS(4599), + [sym__cite_suppress_author] = ACTIONS(4599), + [sym__shortcode_open_escaped] = ACTIONS(4599), + [sym__shortcode_open] = ACTIONS(4599), + [sym__unclosed_span] = ACTIONS(4599), + [sym__strong_emphasis_open_star] = ACTIONS(4599), + [sym__strong_emphasis_open_underscore] = ACTIONS(4599), + }, + [STATE(1399)] = { + [sym__backslash_escape] = ACTIONS(4603), + [sym_entity_reference] = ACTIONS(4603), + [sym_numeric_character_reference] = ACTIONS(4603), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_GT] = ACTIONS(4603), + [anon_sym_BANG] = ACTIONS(4603), + [anon_sym_DQUOTE] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4603), + [anon_sym_DOLLAR] = ACTIONS(4603), + [anon_sym_PERCENT] = ACTIONS(4603), + [anon_sym_AMP] = ACTIONS(4605), + [anon_sym_SQUOTE] = ACTIONS(4603), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_COMMA] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [anon_sym_LBRACK] = ACTIONS(4605), + [anon_sym_BSLASH] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4605), + [anon_sym_BQUOTE] = ACTIONS(4603), + [anon_sym_LBRACE] = ACTIONS(4603), + [anon_sym_PIPE] = ACTIONS(4603), + [anon_sym_TILDE] = ACTIONS(4603), + [anon_sym_LPAREN] = ACTIONS(4603), + [anon_sym_RPAREN] = ACTIONS(4603), + [sym__newline_token] = ACTIONS(4603), + [aux_sym_insert_token1] = ACTIONS(4603), + [aux_sym_insert_token2] = ACTIONS(4603), + [aux_sym_delete_token1] = ACTIONS(4603), + [aux_sym_highlight_token1] = ACTIONS(4603), + [aux_sym_edit_comment_token1] = ACTIONS(4603), + [anon_sym_CARET_LBRACK] = ACTIONS(4603), + [anon_sym_LBRACK_CARET] = ACTIONS(4603), + [sym_uri_autolink] = ACTIONS(4603), + [sym_email_autolink] = ACTIONS(4603), + [sym__whitespace_ge_2] = ACTIONS(4605), + [aux_sym__whitespace_token1] = ACTIONS(4605), + [sym__word_no_digit] = ACTIONS(4603), + [sym__digits] = ACTIONS(4603), + [anon_sym_DASH_DASH] = ACTIONS(4605), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4603), + [sym__code_span_start] = ACTIONS(4603), + [sym__emphasis_open_star] = ACTIONS(4603), + [sym__emphasis_open_underscore] = ACTIONS(4603), + [sym__strikeout_open] = ACTIONS(4603), + [sym__latex_span_start] = ACTIONS(4603), + [sym__single_quote_open] = ACTIONS(4603), + [sym__double_quote_open] = ACTIONS(4603), + [sym__superscript_open] = ACTIONS(4603), + [sym__subscript_open] = ACTIONS(4603), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4603), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4603), + [sym__cite_author_in_text] = ACTIONS(4603), + [sym__cite_suppress_author] = ACTIONS(4603), + [sym__shortcode_open_escaped] = ACTIONS(4603), + [sym__shortcode_open] = ACTIONS(4603), + [sym__unclosed_span] = ACTIONS(4603), + [sym__strong_emphasis_open_star] = ACTIONS(4603), + [sym__strong_emphasis_open_underscore] = ACTIONS(4603), + }, + [STATE(1400)] = { + [sym__backslash_escape] = ACTIONS(4607), + [sym_entity_reference] = ACTIONS(4607), + [sym_numeric_character_reference] = ACTIONS(4607), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_GT] = ACTIONS(4607), + [anon_sym_BANG] = ACTIONS(4607), + [anon_sym_DQUOTE] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4607), + [anon_sym_DOLLAR] = ACTIONS(4607), + [anon_sym_PERCENT] = ACTIONS(4607), + [anon_sym_AMP] = ACTIONS(4609), + [anon_sym_SQUOTE] = ACTIONS(4607), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_COMMA] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_BSLASH] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4609), + [anon_sym_BQUOTE] = ACTIONS(4607), + [anon_sym_LBRACE] = ACTIONS(4607), + [anon_sym_PIPE] = ACTIONS(4607), + [anon_sym_TILDE] = ACTIONS(4607), + [anon_sym_LPAREN] = ACTIONS(4607), + [anon_sym_RPAREN] = ACTIONS(4607), + [sym__newline_token] = ACTIONS(4607), + [aux_sym_insert_token1] = ACTIONS(4607), + [aux_sym_insert_token2] = ACTIONS(4607), + [aux_sym_delete_token1] = ACTIONS(4607), + [aux_sym_highlight_token1] = ACTIONS(4607), + [aux_sym_edit_comment_token1] = ACTIONS(4607), + [anon_sym_CARET_LBRACK] = ACTIONS(4607), + [anon_sym_LBRACK_CARET] = ACTIONS(4607), + [sym_uri_autolink] = ACTIONS(4607), + [sym_email_autolink] = ACTIONS(4607), + [sym__whitespace_ge_2] = ACTIONS(4609), + [aux_sym__whitespace_token1] = ACTIONS(4609), + [sym__word_no_digit] = ACTIONS(4607), + [sym__digits] = ACTIONS(4607), + [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4607), + [sym__code_span_start] = ACTIONS(4607), + [sym__emphasis_open_star] = ACTIONS(4607), + [sym__emphasis_open_underscore] = ACTIONS(4607), + [sym__strikeout_open] = ACTIONS(4607), + [sym__latex_span_start] = ACTIONS(4607), + [sym__single_quote_open] = ACTIONS(4607), + [sym__double_quote_open] = ACTIONS(4607), + [sym__superscript_open] = ACTIONS(4607), + [sym__subscript_open] = ACTIONS(4607), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4607), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4607), + [sym__cite_author_in_text] = ACTIONS(4607), + [sym__cite_suppress_author] = ACTIONS(4607), + [sym__shortcode_open_escaped] = ACTIONS(4607), + [sym__shortcode_open] = ACTIONS(4607), + [sym__unclosed_span] = ACTIONS(4607), + [sym__strong_emphasis_open_star] = ACTIONS(4607), + [sym__strong_emphasis_open_underscore] = ACTIONS(4607), + }, + [STATE(1401)] = { + [sym__backslash_escape] = ACTIONS(4611), + [sym_entity_reference] = ACTIONS(4611), + [sym_numeric_character_reference] = ACTIONS(4611), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_GT] = ACTIONS(4611), + [anon_sym_BANG] = ACTIONS(4611), + [anon_sym_DQUOTE] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4611), + [anon_sym_DOLLAR] = ACTIONS(4611), + [anon_sym_PERCENT] = ACTIONS(4611), + [anon_sym_AMP] = ACTIONS(4613), + [anon_sym_SQUOTE] = ACTIONS(4611), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_COMMA] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_BSLASH] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4613), + [anon_sym_BQUOTE] = ACTIONS(4611), + [anon_sym_LBRACE] = ACTIONS(4611), + [anon_sym_PIPE] = ACTIONS(4611), + [anon_sym_TILDE] = ACTIONS(4611), + [anon_sym_LPAREN] = ACTIONS(4611), + [anon_sym_RPAREN] = ACTIONS(4611), + [sym__newline_token] = ACTIONS(4611), + [aux_sym_insert_token1] = ACTIONS(4611), + [aux_sym_insert_token2] = ACTIONS(4611), + [aux_sym_delete_token1] = ACTIONS(4611), + [aux_sym_highlight_token1] = ACTIONS(4611), + [aux_sym_edit_comment_token1] = ACTIONS(4611), + [anon_sym_CARET_LBRACK] = ACTIONS(4611), + [anon_sym_LBRACK_CARET] = ACTIONS(4611), + [sym_uri_autolink] = ACTIONS(4611), + [sym_email_autolink] = ACTIONS(4611), + [sym__whitespace_ge_2] = ACTIONS(4613), + [aux_sym__whitespace_token1] = ACTIONS(4613), + [sym__word_no_digit] = ACTIONS(4611), + [sym__digits] = ACTIONS(4611), + [anon_sym_DASH_DASH] = ACTIONS(4613), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4611), + [sym__code_span_start] = ACTIONS(4611), + [sym__emphasis_open_star] = ACTIONS(4611), + [sym__emphasis_open_underscore] = ACTIONS(4611), + [sym__strikeout_open] = ACTIONS(4611), + [sym__latex_span_start] = ACTIONS(4611), + [sym__single_quote_open] = ACTIONS(4611), + [sym__double_quote_open] = ACTIONS(4611), + [sym__superscript_open] = ACTIONS(4611), + [sym__subscript_open] = ACTIONS(4611), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4611), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4611), + [sym__cite_author_in_text] = ACTIONS(4611), + [sym__cite_suppress_author] = ACTIONS(4611), + [sym__shortcode_open_escaped] = ACTIONS(4611), + [sym__shortcode_open] = ACTIONS(4611), + [sym__unclosed_span] = ACTIONS(4611), + [sym__strong_emphasis_open_star] = ACTIONS(4611), + [sym__strong_emphasis_open_underscore] = ACTIONS(4611), + }, + [STATE(1402)] = { + [sym__backslash_escape] = ACTIONS(4615), + [sym_entity_reference] = ACTIONS(4615), + [sym_numeric_character_reference] = ACTIONS(4615), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_GT] = ACTIONS(4615), + [anon_sym_BANG] = ACTIONS(4615), + [anon_sym_DQUOTE] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4615), + [anon_sym_DOLLAR] = ACTIONS(4615), + [anon_sym_PERCENT] = ACTIONS(4615), + [anon_sym_AMP] = ACTIONS(4617), + [anon_sym_SQUOTE] = ACTIONS(4615), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_COMMA] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [anon_sym_LBRACK] = ACTIONS(4617), + [anon_sym_BSLASH] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4617), + [anon_sym_BQUOTE] = ACTIONS(4615), + [anon_sym_LBRACE] = ACTIONS(4615), + [anon_sym_PIPE] = ACTIONS(4615), + [anon_sym_TILDE] = ACTIONS(4615), + [anon_sym_LPAREN] = ACTIONS(4615), + [anon_sym_RPAREN] = ACTIONS(4615), + [sym__newline_token] = ACTIONS(4615), + [aux_sym_insert_token1] = ACTIONS(4615), + [aux_sym_insert_token2] = ACTIONS(4615), + [aux_sym_delete_token1] = ACTIONS(4615), + [aux_sym_highlight_token1] = ACTIONS(4615), + [aux_sym_edit_comment_token1] = ACTIONS(4615), + [anon_sym_CARET_LBRACK] = ACTIONS(4615), + [anon_sym_LBRACK_CARET] = ACTIONS(4615), + [sym_uri_autolink] = ACTIONS(4615), + [sym_email_autolink] = ACTIONS(4615), + [sym__whitespace_ge_2] = ACTIONS(4617), + [aux_sym__whitespace_token1] = ACTIONS(4617), + [sym__word_no_digit] = ACTIONS(4615), + [sym__digits] = ACTIONS(4615), + [anon_sym_DASH_DASH] = ACTIONS(4617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4615), + [sym__code_span_start] = ACTIONS(4615), + [sym__emphasis_open_star] = ACTIONS(4615), + [sym__emphasis_open_underscore] = ACTIONS(4615), + [sym__strikeout_open] = ACTIONS(4615), + [sym__latex_span_start] = ACTIONS(4615), + [sym__single_quote_open] = ACTIONS(4615), + [sym__double_quote_open] = ACTIONS(4615), + [sym__superscript_open] = ACTIONS(4615), + [sym__subscript_open] = ACTIONS(4615), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4615), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4615), + [sym__cite_author_in_text] = ACTIONS(4615), + [sym__cite_suppress_author] = ACTIONS(4615), + [sym__shortcode_open_escaped] = ACTIONS(4615), + [sym__shortcode_open] = ACTIONS(4615), + [sym__unclosed_span] = ACTIONS(4615), + [sym__strong_emphasis_open_star] = ACTIONS(4615), + [sym__strong_emphasis_open_underscore] = ACTIONS(4615), + }, + [STATE(1403)] = { + [sym__backslash_escape] = ACTIONS(4619), + [sym_entity_reference] = ACTIONS(4619), + [sym_numeric_character_reference] = ACTIONS(4619), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_GT] = ACTIONS(4619), + [anon_sym_BANG] = ACTIONS(4619), + [anon_sym_DQUOTE] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4619), + [anon_sym_DOLLAR] = ACTIONS(4619), + [anon_sym_PERCENT] = ACTIONS(4619), + [anon_sym_AMP] = ACTIONS(4621), + [anon_sym_SQUOTE] = ACTIONS(4619), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_COMMA] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [anon_sym_LBRACK] = ACTIONS(4621), + [anon_sym_BSLASH] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4621), + [anon_sym_BQUOTE] = ACTIONS(4619), + [anon_sym_LBRACE] = ACTIONS(4619), + [anon_sym_PIPE] = ACTIONS(4619), + [anon_sym_TILDE] = ACTIONS(4619), + [anon_sym_LPAREN] = ACTIONS(4619), + [anon_sym_RPAREN] = ACTIONS(4619), + [sym__newline_token] = ACTIONS(4619), + [aux_sym_insert_token1] = ACTIONS(4619), + [aux_sym_insert_token2] = ACTIONS(4619), + [aux_sym_delete_token1] = ACTIONS(4619), + [aux_sym_highlight_token1] = ACTIONS(4619), + [aux_sym_edit_comment_token1] = ACTIONS(4619), + [anon_sym_CARET_LBRACK] = ACTIONS(4619), + [anon_sym_LBRACK_CARET] = ACTIONS(4619), + [sym_uri_autolink] = ACTIONS(4619), [sym_email_autolink] = ACTIONS(4619), [sym__whitespace_ge_2] = ACTIONS(4621), [aux_sym__whitespace_token1] = ACTIONS(4621), @@ -142517,7 +142583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4619), [sym__strong_emphasis_open_underscore] = ACTIONS(4619), }, - [STATE(1403)] = { + [STATE(1404)] = { [sym__backslash_escape] = ACTIONS(4623), [sym_entity_reference] = ACTIONS(4623), [sym_numeric_character_reference] = ACTIONS(4623), @@ -142584,7 +142650,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4623), [sym__strong_emphasis_open_underscore] = ACTIONS(4623), }, - [STATE(1404)] = { + [STATE(1405)] = { + [sym__backslash_escape] = ACTIONS(4579), + [sym_entity_reference] = ACTIONS(4579), + [sym_numeric_character_reference] = ACTIONS(4579), + [anon_sym_LT] = ACTIONS(4581), + [anon_sym_GT] = ACTIONS(4579), + [anon_sym_BANG] = ACTIONS(4579), + [anon_sym_DQUOTE] = ACTIONS(4579), + [anon_sym_POUND] = ACTIONS(4579), + [anon_sym_DOLLAR] = ACTIONS(4579), + [anon_sym_PERCENT] = ACTIONS(4579), + [anon_sym_AMP] = ACTIONS(4581), + [anon_sym_SQUOTE] = ACTIONS(4579), + [anon_sym_PLUS] = ACTIONS(4579), + [anon_sym_COMMA] = ACTIONS(4579), + [anon_sym_DASH] = ACTIONS(4581), + [anon_sym_DOT] = ACTIONS(4581), + [anon_sym_SLASH] = ACTIONS(4579), + [anon_sym_COLON] = ACTIONS(4579), + [anon_sym_SEMI] = ACTIONS(4579), + [anon_sym_EQ] = ACTIONS(4579), + [anon_sym_QMARK] = ACTIONS(4579), + [anon_sym_LBRACK] = ACTIONS(4581), + [anon_sym_BSLASH] = ACTIONS(4581), + [anon_sym_CARET] = ACTIONS(4581), + [anon_sym_BQUOTE] = ACTIONS(4579), + [anon_sym_LBRACE] = ACTIONS(4579), + [anon_sym_PIPE] = ACTIONS(4579), + [anon_sym_TILDE] = ACTIONS(4579), + [anon_sym_LPAREN] = ACTIONS(4579), + [anon_sym_RPAREN] = ACTIONS(4579), + [sym__newline_token] = ACTIONS(4579), + [aux_sym_insert_token1] = ACTIONS(4579), + [aux_sym_delete_token1] = ACTIONS(4579), + [aux_sym_highlight_token1] = ACTIONS(4579), + [aux_sym_edit_comment_token1] = ACTIONS(4579), + [anon_sym_CARET_LBRACK] = ACTIONS(4579), + [anon_sym_LBRACK_CARET] = ACTIONS(4579), + [sym_uri_autolink] = ACTIONS(4579), + [sym_email_autolink] = ACTIONS(4579), + [sym__whitespace_ge_2] = ACTIONS(4579), + [aux_sym__whitespace_token1] = ACTIONS(4581), + [sym__word_no_digit] = ACTIONS(4579), + [sym__digits] = ACTIONS(4579), + [anon_sym_DASH_DASH] = ACTIONS(4581), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4579), + [sym__code_span_start] = ACTIONS(4579), + [sym__emphasis_open_star] = ACTIONS(4579), + [sym__emphasis_open_underscore] = ACTIONS(4579), + [sym__emphasis_close_star] = ACTIONS(4579), + [sym__strikeout_open] = ACTIONS(4579), + [sym__latex_span_start] = ACTIONS(4579), + [sym__single_quote_open] = ACTIONS(4579), + [sym__double_quote_open] = ACTIONS(4579), + [sym__superscript_open] = ACTIONS(4579), + [sym__subscript_open] = ACTIONS(4579), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4579), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4579), + [sym__cite_author_in_text] = ACTIONS(4579), + [sym__cite_suppress_author] = ACTIONS(4579), + [sym__shortcode_open_escaped] = ACTIONS(4579), + [sym__shortcode_open] = ACTIONS(4579), + [sym__unclosed_span] = ACTIONS(4579), + [sym__strong_emphasis_open_star] = ACTIONS(4579), + [sym__strong_emphasis_open_underscore] = ACTIONS(4579), + }, + [STATE(1406)] = { [sym__backslash_escape] = ACTIONS(4627), [sym_entity_reference] = ACTIONS(4627), [sym_numeric_character_reference] = ACTIONS(4627), @@ -142651,7 +142784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4627), [sym__strong_emphasis_open_underscore] = ACTIONS(4627), }, - [STATE(1405)] = { + [STATE(1407)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -142718,7 +142851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4631), [sym__strong_emphasis_open_underscore] = ACTIONS(4631), }, - [STATE(1406)] = { + [STATE(1408)] = { [sym__backslash_escape] = ACTIONS(4635), [sym_entity_reference] = ACTIONS(4635), [sym_numeric_character_reference] = ACTIONS(4635), @@ -142751,7 +142884,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(4635), [sym__newline_token] = ACTIONS(4635), [aux_sym_insert_token1] = ACTIONS(4635), - [aux_sym_insert_token2] = ACTIONS(4635), [aux_sym_delete_token1] = ACTIONS(4635), [aux_sym_highlight_token1] = ACTIONS(4635), [aux_sym_edit_comment_token1] = ACTIONS(4635), @@ -142759,7 +142891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_CARET] = ACTIONS(4635), [sym_uri_autolink] = ACTIONS(4635), [sym_email_autolink] = ACTIONS(4635), - [sym__whitespace_ge_2] = ACTIONS(4637), + [sym__whitespace_ge_2] = ACTIONS(4635), [aux_sym__whitespace_token1] = ACTIONS(4637), [sym__word_no_digit] = ACTIONS(4635), [sym__digits] = ACTIONS(4635), @@ -142784,176 +142916,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unclosed_span] = ACTIONS(4635), [sym__strong_emphasis_open_star] = ACTIONS(4635), [sym__strong_emphasis_open_underscore] = ACTIONS(4635), - }, - [STATE(1407)] = { - [sym__backslash_escape] = ACTIONS(4639), - [sym_entity_reference] = ACTIONS(4639), - [sym_numeric_character_reference] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4641), - [anon_sym_GT] = ACTIONS(4639), - [anon_sym_BANG] = ACTIONS(4639), - [anon_sym_DQUOTE] = ACTIONS(4639), - [anon_sym_POUND] = ACTIONS(4639), - [anon_sym_DOLLAR] = ACTIONS(4639), - [anon_sym_PERCENT] = ACTIONS(4639), - [anon_sym_AMP] = ACTIONS(4641), - [anon_sym_SQUOTE] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4641), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_SLASH] = ACTIONS(4639), - [anon_sym_COLON] = ACTIONS(4639), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_EQ] = ACTIONS(4639), - [anon_sym_QMARK] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4641), - [anon_sym_BSLASH] = ACTIONS(4641), - [anon_sym_CARET] = ACTIONS(4641), - [anon_sym_BQUOTE] = ACTIONS(4639), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_PIPE] = ACTIONS(4639), - [anon_sym_TILDE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_RPAREN] = ACTIONS(4639), - [sym__newline_token] = ACTIONS(4639), - [aux_sym_insert_token1] = ACTIONS(4639), - [aux_sym_delete_token1] = ACTIONS(4639), - [aux_sym_highlight_token1] = ACTIONS(4639), - [aux_sym_edit_comment_token1] = ACTIONS(4639), - [anon_sym_CARET_LBRACK] = ACTIONS(4639), - [anon_sym_LBRACK_CARET] = ACTIONS(4639), - [sym_uri_autolink] = ACTIONS(4639), - [sym_email_autolink] = ACTIONS(4639), - [sym__whitespace_ge_2] = ACTIONS(4639), - [aux_sym__whitespace_token1] = ACTIONS(4641), - [sym__word_no_digit] = ACTIONS(4639), - [sym__digits] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4641), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4639), - [sym__code_span_start] = ACTIONS(4639), - [sym__emphasis_open_star] = ACTIONS(4639), - [sym__emphasis_open_underscore] = ACTIONS(4639), - [sym__strikeout_open] = ACTIONS(4639), - [sym__latex_span_start] = ACTIONS(4639), - [sym__single_quote_open] = ACTIONS(4639), - [sym__double_quote_open] = ACTIONS(4639), - [sym__superscript_open] = ACTIONS(4639), - [sym__subscript_open] = ACTIONS(4639), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4639), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4639), - [sym__cite_author_in_text] = ACTIONS(4639), - [sym__cite_suppress_author] = ACTIONS(4639), - [sym__shortcode_open_escaped] = ACTIONS(4639), - [sym__shortcode_open] = ACTIONS(4639), - [sym__unclosed_span] = ACTIONS(4639), - [sym__strong_emphasis_open_star] = ACTIONS(4639), - [sym__strong_emphasis_open_underscore] = ACTIONS(4639), - [sym__strong_emphasis_close_underscore] = ACTIONS(4639), - }, - [STATE(1408)] = { - [sym__backslash_escape] = ACTIONS(4241), - [sym_entity_reference] = ACTIONS(4241), - [sym_numeric_character_reference] = ACTIONS(4241), - [anon_sym_LT] = ACTIONS(4243), - [anon_sym_GT] = ACTIONS(4241), - [anon_sym_BANG] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(4241), - [anon_sym_POUND] = ACTIONS(4241), - [anon_sym_DOLLAR] = ACTIONS(4241), - [anon_sym_PERCENT] = ACTIONS(4241), - [anon_sym_AMP] = ACTIONS(4243), - [anon_sym_SQUOTE] = ACTIONS(4241), - [anon_sym_PLUS] = ACTIONS(4241), - [anon_sym_COMMA] = ACTIONS(4241), - [anon_sym_DASH] = ACTIONS(4243), - [anon_sym_DOT] = ACTIONS(4243), - [anon_sym_SLASH] = ACTIONS(4241), - [anon_sym_COLON] = ACTIONS(4241), - [anon_sym_SEMI] = ACTIONS(4241), - [anon_sym_EQ] = ACTIONS(4241), - [anon_sym_QMARK] = ACTIONS(4241), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_BSLASH] = ACTIONS(4243), - [anon_sym_CARET] = ACTIONS(4243), - [anon_sym_BQUOTE] = ACTIONS(4241), - [anon_sym_LBRACE] = ACTIONS(4241), - [anon_sym_PIPE] = ACTIONS(4241), - [anon_sym_TILDE] = ACTIONS(4241), - [anon_sym_LPAREN] = ACTIONS(4241), - [anon_sym_RPAREN] = ACTIONS(4241), - [sym__newline_token] = ACTIONS(4241), - [aux_sym_insert_token1] = ACTIONS(4241), - [aux_sym_delete_token1] = ACTIONS(4241), - [aux_sym_highlight_token1] = ACTIONS(4241), - [aux_sym_edit_comment_token1] = ACTIONS(4241), - [anon_sym_CARET_LBRACK] = ACTIONS(4241), - [anon_sym_LBRACK_CARET] = ACTIONS(4241), - [sym_uri_autolink] = ACTIONS(4241), - [sym_email_autolink] = ACTIONS(4241), - [sym__whitespace_ge_2] = ACTIONS(4241), - [aux_sym__whitespace_token1] = ACTIONS(4243), - [sym__word_no_digit] = ACTIONS(4241), - [sym__digits] = ACTIONS(4241), - [anon_sym_DASH_DASH] = ACTIONS(4243), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4241), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4241), - [sym__code_span_start] = ACTIONS(4241), - [sym__emphasis_open_star] = ACTIONS(4241), - [sym__emphasis_open_underscore] = ACTIONS(4241), - [sym__emphasis_close_star] = ACTIONS(4241), - [sym__strikeout_open] = ACTIONS(4241), - [sym__latex_span_start] = ACTIONS(4241), - [sym__single_quote_open] = ACTIONS(4241), - [sym__double_quote_open] = ACTIONS(4241), - [sym__superscript_open] = ACTIONS(4241), - [sym__subscript_open] = ACTIONS(4241), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4241), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4241), - [sym__cite_author_in_text] = ACTIONS(4241), - [sym__cite_suppress_author] = ACTIONS(4241), - [sym__shortcode_open_escaped] = ACTIONS(4241), - [sym__shortcode_open] = ACTIONS(4241), - [sym__unclosed_span] = ACTIONS(4241), - [sym__strong_emphasis_open_star] = ACTIONS(4241), - [sym__strong_emphasis_open_underscore] = ACTIONS(4241), + [sym__strong_emphasis_close_underscore] = ACTIONS(4635), }, [STATE(1409)] = { - [ts_builtin_sym_end] = ACTIONS(4667), - [sym__backslash_escape] = ACTIONS(4667), - [sym_entity_reference] = ACTIONS(4667), - [sym_numeric_character_reference] = ACTIONS(4667), - [anon_sym_LT] = ACTIONS(4669), - [anon_sym_GT] = ACTIONS(4667), - [anon_sym_BANG] = ACTIONS(4667), - [anon_sym_DQUOTE] = ACTIONS(4667), - [anon_sym_POUND] = ACTIONS(4667), - [anon_sym_DOLLAR] = ACTIONS(4667), - [anon_sym_PERCENT] = ACTIONS(4667), - [anon_sym_AMP] = ACTIONS(4669), - [anon_sym_SQUOTE] = ACTIONS(4667), - [anon_sym_PLUS] = ACTIONS(4667), - [anon_sym_COMMA] = ACTIONS(4667), - [anon_sym_DASH] = ACTIONS(4669), - [anon_sym_DOT] = ACTIONS(4669), - [anon_sym_SLASH] = ACTIONS(4667), - [anon_sym_COLON] = ACTIONS(4667), - [anon_sym_SEMI] = ACTIONS(4667), - [anon_sym_EQ] = ACTIONS(4667), - [anon_sym_QMARK] = ACTIONS(4667), - [anon_sym_LBRACK] = ACTIONS(4669), - [anon_sym_BSLASH] = ACTIONS(4669), - [anon_sym_CARET] = ACTIONS(4669), - [anon_sym_BQUOTE] = ACTIONS(4667), - [anon_sym_LBRACE] = ACTIONS(4667), - [anon_sym_PIPE] = ACTIONS(4667), - [anon_sym_TILDE] = ACTIONS(4667), - [anon_sym_LPAREN] = ACTIONS(4667), - [anon_sym_RPAREN] = ACTIONS(4667), - [sym__newline_token] = ACTIONS(4667), - [aux_sym_insert_token1] = ACTIONS(4667), - [aux_sym_delete_token1] = ACTIONS(4667), + [sym__backslash_escape] = ACTIONS(4583), + [sym_entity_reference] = ACTIONS(4583), + [sym_numeric_character_reference] = ACTIONS(4583), + [anon_sym_LT] = ACTIONS(4585), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_BANG] = ACTIONS(4583), + [anon_sym_DQUOTE] = ACTIONS(4583), + [anon_sym_POUND] = ACTIONS(4583), + [anon_sym_DOLLAR] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4583), + [anon_sym_AMP] = ACTIONS(4585), + [anon_sym_SQUOTE] = ACTIONS(4583), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_COMMA] = ACTIONS(4583), + [anon_sym_DASH] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_SLASH] = ACTIONS(4583), + [anon_sym_COLON] = ACTIONS(4583), + [anon_sym_SEMI] = ACTIONS(4583), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_QMARK] = ACTIONS(4583), + [anon_sym_LBRACK] = ACTIONS(4585), + [anon_sym_BSLASH] = ACTIONS(4585), + [anon_sym_CARET] = ACTIONS(4585), + [anon_sym_BQUOTE] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4583), + [anon_sym_PIPE] = ACTIONS(4583), + [anon_sym_TILDE] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(4583), + [anon_sym_RPAREN] = ACTIONS(4583), + [sym__newline_token] = ACTIONS(4583), + [aux_sym_insert_token1] = ACTIONS(4583), + [aux_sym_delete_token1] = ACTIONS(4583), + [aux_sym_highlight_token1] = ACTIONS(4583), + [aux_sym_edit_comment_token1] = ACTIONS(4583), + [anon_sym_CARET_LBRACK] = ACTIONS(4583), + [anon_sym_LBRACK_CARET] = ACTIONS(4583), + [sym_uri_autolink] = ACTIONS(4583), + [sym_email_autolink] = ACTIONS(4583), + [sym__whitespace_ge_2] = ACTIONS(4583), + [aux_sym__whitespace_token1] = ACTIONS(4585), + [sym__word_no_digit] = ACTIONS(4583), + [sym__digits] = ACTIONS(4583), + [anon_sym_DASH_DASH] = ACTIONS(4585), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4583), + [sym__code_span_start] = ACTIONS(4583), + [sym__emphasis_open_star] = ACTIONS(4583), + [sym__emphasis_open_underscore] = ACTIONS(4583), + [sym__emphasis_close_underscore] = ACTIONS(4583), + [sym__strikeout_open] = ACTIONS(4583), + [sym__latex_span_start] = ACTIONS(4583), + [sym__single_quote_open] = ACTIONS(4583), + [sym__double_quote_open] = ACTIONS(4583), + [sym__superscript_open] = ACTIONS(4583), + [sym__subscript_open] = ACTIONS(4583), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4583), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4583), + [sym__cite_author_in_text] = ACTIONS(4583), + [sym__cite_suppress_author] = ACTIONS(4583), + [sym__shortcode_open_escaped] = ACTIONS(4583), + [sym__shortcode_open] = ACTIONS(4583), + [sym__unclosed_span] = ACTIONS(4583), + [sym__strong_emphasis_open_star] = ACTIONS(4583), + [sym__strong_emphasis_open_underscore] = ACTIONS(4583), + }, + [STATE(1410)] = { + [ts_builtin_sym_end] = ACTIONS(4667), + [sym__backslash_escape] = ACTIONS(4667), + [sym_entity_reference] = ACTIONS(4667), + [sym_numeric_character_reference] = ACTIONS(4667), + [anon_sym_LT] = ACTIONS(4669), + [anon_sym_GT] = ACTIONS(4667), + [anon_sym_BANG] = ACTIONS(4667), + [anon_sym_DQUOTE] = ACTIONS(4667), + [anon_sym_POUND] = ACTIONS(4667), + [anon_sym_DOLLAR] = ACTIONS(4667), + [anon_sym_PERCENT] = ACTIONS(4667), + [anon_sym_AMP] = ACTIONS(4669), + [anon_sym_SQUOTE] = ACTIONS(4667), + [anon_sym_PLUS] = ACTIONS(4667), + [anon_sym_COMMA] = ACTIONS(4667), + [anon_sym_DASH] = ACTIONS(4669), + [anon_sym_DOT] = ACTIONS(4669), + [anon_sym_SLASH] = ACTIONS(4667), + [anon_sym_COLON] = ACTIONS(4667), + [anon_sym_SEMI] = ACTIONS(4667), + [anon_sym_EQ] = ACTIONS(4667), + [anon_sym_QMARK] = ACTIONS(4667), + [anon_sym_LBRACK] = ACTIONS(4669), + [anon_sym_BSLASH] = ACTIONS(4669), + [anon_sym_CARET] = ACTIONS(4669), + [anon_sym_BQUOTE] = ACTIONS(4667), + [anon_sym_LBRACE] = ACTIONS(4667), + [anon_sym_PIPE] = ACTIONS(4667), + [anon_sym_TILDE] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_RPAREN] = ACTIONS(4667), + [sym__newline_token] = ACTIONS(4667), + [aux_sym_insert_token1] = ACTIONS(4667), + [aux_sym_delete_token1] = ACTIONS(4667), [aux_sym_highlight_token1] = ACTIONS(4667), [aux_sym_edit_comment_token1] = ACTIONS(4667), [anon_sym_CARET_LBRACK] = ACTIONS(4667), @@ -142986,141 +143052,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4667), [sym__strong_emphasis_open_underscore] = ACTIONS(4667), }, - [STATE(1410)] = { - [sym__backslash_escape] = ACTIONS(4245), - [sym_entity_reference] = ACTIONS(4245), - [sym_numeric_character_reference] = ACTIONS(4245), - [anon_sym_LT] = ACTIONS(4247), - [anon_sym_GT] = ACTIONS(4245), - [anon_sym_BANG] = ACTIONS(4245), - [anon_sym_DQUOTE] = ACTIONS(4245), - [anon_sym_POUND] = ACTIONS(4245), - [anon_sym_DOLLAR] = ACTIONS(4245), - [anon_sym_PERCENT] = ACTIONS(4245), - [anon_sym_AMP] = ACTIONS(4247), - [anon_sym_SQUOTE] = ACTIONS(4245), - [anon_sym_PLUS] = ACTIONS(4245), - [anon_sym_COMMA] = ACTIONS(4245), - [anon_sym_DASH] = ACTIONS(4247), - [anon_sym_DOT] = ACTIONS(4247), - [anon_sym_SLASH] = ACTIONS(4245), - [anon_sym_COLON] = ACTIONS(4245), - [anon_sym_SEMI] = ACTIONS(4245), - [anon_sym_EQ] = ACTIONS(4245), - [anon_sym_QMARK] = ACTIONS(4245), - [anon_sym_LBRACK] = ACTIONS(4247), - [anon_sym_BSLASH] = ACTIONS(4247), - [anon_sym_CARET] = ACTIONS(4247), - [anon_sym_BQUOTE] = ACTIONS(4245), - [anon_sym_LBRACE] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4245), - [anon_sym_TILDE] = ACTIONS(4245), - [anon_sym_LPAREN] = ACTIONS(4245), - [anon_sym_RPAREN] = ACTIONS(4245), - [sym__newline_token] = ACTIONS(4245), - [aux_sym_insert_token1] = ACTIONS(4245), - [aux_sym_delete_token1] = ACTIONS(4245), - [aux_sym_highlight_token1] = ACTIONS(4245), - [aux_sym_edit_comment_token1] = ACTIONS(4245), - [anon_sym_CARET_LBRACK] = ACTIONS(4245), - [anon_sym_LBRACK_CARET] = ACTIONS(4245), - [sym_uri_autolink] = ACTIONS(4245), - [sym_email_autolink] = ACTIONS(4245), - [sym__whitespace_ge_2] = ACTIONS(4245), - [aux_sym__whitespace_token1] = ACTIONS(4247), - [sym__word_no_digit] = ACTIONS(4245), - [sym__digits] = ACTIONS(4245), - [anon_sym_DASH_DASH] = ACTIONS(4247), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4245), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4245), - [sym__code_span_start] = ACTIONS(4245), - [sym__emphasis_open_star] = ACTIONS(4245), - [sym__emphasis_open_underscore] = ACTIONS(4245), - [sym__emphasis_close_star] = ACTIONS(4245), - [sym__strikeout_open] = ACTIONS(4245), - [sym__latex_span_start] = ACTIONS(4245), - [sym__single_quote_open] = ACTIONS(4245), - [sym__double_quote_open] = ACTIONS(4245), - [sym__superscript_open] = ACTIONS(4245), - [sym__subscript_open] = ACTIONS(4245), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4245), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4245), - [sym__cite_author_in_text] = ACTIONS(4245), - [sym__cite_suppress_author] = ACTIONS(4245), - [sym__shortcode_open_escaped] = ACTIONS(4245), - [sym__shortcode_open] = ACTIONS(4245), - [sym__unclosed_span] = ACTIONS(4245), - [sym__strong_emphasis_open_star] = ACTIONS(4245), - [sym__strong_emphasis_open_underscore] = ACTIONS(4245), - }, [STATE(1411)] = { - [sym__backslash_escape] = ACTIONS(4579), - [sym_entity_reference] = ACTIONS(4579), - [sym_numeric_character_reference] = ACTIONS(4579), - [anon_sym_LT] = ACTIONS(4581), - [anon_sym_GT] = ACTIONS(4579), - [anon_sym_BANG] = ACTIONS(4579), - [anon_sym_DQUOTE] = ACTIONS(4579), - [anon_sym_POUND] = ACTIONS(4579), - [anon_sym_DOLLAR] = ACTIONS(4579), - [anon_sym_PERCENT] = ACTIONS(4579), - [anon_sym_AMP] = ACTIONS(4581), - [anon_sym_SQUOTE] = ACTIONS(4579), - [anon_sym_PLUS] = ACTIONS(4579), - [anon_sym_COMMA] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4581), - [anon_sym_DOT] = ACTIONS(4581), - [anon_sym_SLASH] = ACTIONS(4579), - [anon_sym_COLON] = ACTIONS(4579), - [anon_sym_SEMI] = ACTIONS(4579), - [anon_sym_EQ] = ACTIONS(4579), - [anon_sym_QMARK] = ACTIONS(4579), - [anon_sym_LBRACK] = ACTIONS(4581), - [anon_sym_BSLASH] = ACTIONS(4581), - [anon_sym_CARET] = ACTIONS(4581), - [anon_sym_BQUOTE] = ACTIONS(4579), - [anon_sym_LBRACE] = ACTIONS(4579), - [anon_sym_PIPE] = ACTIONS(4579), - [anon_sym_TILDE] = ACTIONS(4579), - [anon_sym_LPAREN] = ACTIONS(4579), - [anon_sym_RPAREN] = ACTIONS(4579), - [sym__newline_token] = ACTIONS(4579), - [aux_sym_insert_token1] = ACTIONS(4579), - [aux_sym_delete_token1] = ACTIONS(4579), - [aux_sym_highlight_token1] = ACTIONS(4579), - [aux_sym_edit_comment_token1] = ACTIONS(4579), - [anon_sym_CARET_LBRACK] = ACTIONS(4579), - [anon_sym_LBRACK_CARET] = ACTIONS(4579), - [sym_uri_autolink] = ACTIONS(4579), - [sym_email_autolink] = ACTIONS(4579), - [sym__whitespace_ge_2] = ACTIONS(4579), - [aux_sym__whitespace_token1] = ACTIONS(4581), - [sym__word_no_digit] = ACTIONS(4579), - [sym__digits] = ACTIONS(4579), - [anon_sym_DASH_DASH] = ACTIONS(4581), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4579), - [sym__code_span_start] = ACTIONS(4579), - [sym__emphasis_open_star] = ACTIONS(4579), - [sym__emphasis_open_underscore] = ACTIONS(4579), - [sym__emphasis_close_star] = ACTIONS(4579), - [sym__strikeout_open] = ACTIONS(4579), - [sym__latex_span_start] = ACTIONS(4579), - [sym__single_quote_open] = ACTIONS(4579), - [sym__double_quote_open] = ACTIONS(4579), - [sym__superscript_open] = ACTIONS(4579), - [sym__subscript_open] = ACTIONS(4579), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4579), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4579), - [sym__cite_author_in_text] = ACTIONS(4579), - [sym__cite_suppress_author] = ACTIONS(4579), - [sym__shortcode_open_escaped] = ACTIONS(4579), - [sym__shortcode_open] = ACTIONS(4579), - [sym__unclosed_span] = ACTIONS(4579), - [sym__strong_emphasis_open_star] = ACTIONS(4579), - [sym__strong_emphasis_open_underscore] = ACTIONS(4579), + [ts_builtin_sym_end] = ACTIONS(4671), + [sym__backslash_escape] = ACTIONS(4671), + [sym_entity_reference] = ACTIONS(4671), + [sym_numeric_character_reference] = ACTIONS(4671), + [anon_sym_LT] = ACTIONS(4673), + [anon_sym_GT] = ACTIONS(4671), + [anon_sym_BANG] = ACTIONS(4671), + [anon_sym_DQUOTE] = ACTIONS(4671), + [anon_sym_POUND] = ACTIONS(4671), + [anon_sym_DOLLAR] = ACTIONS(4671), + [anon_sym_PERCENT] = ACTIONS(4671), + [anon_sym_AMP] = ACTIONS(4673), + [anon_sym_SQUOTE] = ACTIONS(4671), + [anon_sym_PLUS] = ACTIONS(4671), + [anon_sym_COMMA] = ACTIONS(4671), + [anon_sym_DASH] = ACTIONS(4673), + [anon_sym_DOT] = ACTIONS(4673), + [anon_sym_SLASH] = ACTIONS(4671), + [anon_sym_COLON] = ACTIONS(4671), + [anon_sym_SEMI] = ACTIONS(4671), + [anon_sym_EQ] = ACTIONS(4671), + [anon_sym_QMARK] = ACTIONS(4671), + [anon_sym_LBRACK] = ACTIONS(4673), + [anon_sym_BSLASH] = ACTIONS(4673), + [anon_sym_CARET] = ACTIONS(4673), + [anon_sym_BQUOTE] = ACTIONS(4671), + [anon_sym_LBRACE] = ACTIONS(4671), + [anon_sym_PIPE] = ACTIONS(4671), + [anon_sym_TILDE] = ACTIONS(4671), + [anon_sym_LPAREN] = ACTIONS(4671), + [anon_sym_RPAREN] = ACTIONS(4671), + [sym__newline_token] = ACTIONS(4671), + [aux_sym_insert_token1] = ACTIONS(4671), + [aux_sym_delete_token1] = ACTIONS(4671), + [aux_sym_highlight_token1] = ACTIONS(4671), + [aux_sym_edit_comment_token1] = ACTIONS(4671), + [anon_sym_CARET_LBRACK] = ACTIONS(4671), + [anon_sym_LBRACK_CARET] = ACTIONS(4671), + [sym_uri_autolink] = ACTIONS(4671), + [sym_email_autolink] = ACTIONS(4671), + [sym__whitespace_ge_2] = ACTIONS(4671), + [aux_sym__whitespace_token1] = ACTIONS(4673), + [sym__word_no_digit] = ACTIONS(4671), + [sym__digits] = ACTIONS(4671), + [anon_sym_DASH_DASH] = ACTIONS(4673), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4671), + [sym__code_span_start] = ACTIONS(4671), + [sym__emphasis_open_star] = ACTIONS(4671), + [sym__emphasis_open_underscore] = ACTIONS(4671), + [sym__strikeout_open] = ACTIONS(4671), + [sym__latex_span_start] = ACTIONS(4671), + [sym__single_quote_open] = ACTIONS(4671), + [sym__double_quote_open] = ACTIONS(4671), + [sym__superscript_open] = ACTIONS(4671), + [sym__subscript_open] = ACTIONS(4671), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4671), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4671), + [sym__cite_author_in_text] = ACTIONS(4671), + [sym__cite_suppress_author] = ACTIONS(4671), + [sym__shortcode_open_escaped] = ACTIONS(4671), + [sym__shortcode_open] = ACTIONS(4671), + [sym__unclosed_span] = ACTIONS(4671), + [sym__strong_emphasis_open_star] = ACTIONS(4671), + [sym__strong_emphasis_open_underscore] = ACTIONS(4671), }, [STATE(1412)] = { + [ts_builtin_sym_end] = ACTIONS(4675), + [sym__backslash_escape] = ACTIONS(4675), + [sym_entity_reference] = ACTIONS(4675), + [sym_numeric_character_reference] = ACTIONS(4675), + [anon_sym_LT] = ACTIONS(4677), + [anon_sym_GT] = ACTIONS(4675), + [anon_sym_BANG] = ACTIONS(4675), + [anon_sym_DQUOTE] = ACTIONS(4675), + [anon_sym_POUND] = ACTIONS(4675), + [anon_sym_DOLLAR] = ACTIONS(4675), + [anon_sym_PERCENT] = ACTIONS(4675), + [anon_sym_AMP] = ACTIONS(4677), + [anon_sym_SQUOTE] = ACTIONS(4675), + [anon_sym_PLUS] = ACTIONS(4675), + [anon_sym_COMMA] = ACTIONS(4675), + [anon_sym_DASH] = ACTIONS(4677), + [anon_sym_DOT] = ACTIONS(4677), + [anon_sym_SLASH] = ACTIONS(4675), + [anon_sym_COLON] = ACTIONS(4675), + [anon_sym_SEMI] = ACTIONS(4675), + [anon_sym_EQ] = ACTIONS(4675), + [anon_sym_QMARK] = ACTIONS(4675), + [anon_sym_LBRACK] = ACTIONS(4677), + [anon_sym_BSLASH] = ACTIONS(4677), + [anon_sym_CARET] = ACTIONS(4677), + [anon_sym_BQUOTE] = ACTIONS(4675), + [anon_sym_LBRACE] = ACTIONS(4675), + [anon_sym_PIPE] = ACTIONS(4675), + [anon_sym_TILDE] = ACTIONS(4675), + [anon_sym_LPAREN] = ACTIONS(4675), + [anon_sym_RPAREN] = ACTIONS(4675), + [sym__newline_token] = ACTIONS(4675), + [aux_sym_insert_token1] = ACTIONS(4675), + [aux_sym_delete_token1] = ACTIONS(4675), + [aux_sym_highlight_token1] = ACTIONS(4675), + [aux_sym_edit_comment_token1] = ACTIONS(4675), + [anon_sym_CARET_LBRACK] = ACTIONS(4675), + [anon_sym_LBRACK_CARET] = ACTIONS(4675), + [sym_uri_autolink] = ACTIONS(4675), + [sym_email_autolink] = ACTIONS(4675), + [sym__whitespace_ge_2] = ACTIONS(4675), + [aux_sym__whitespace_token1] = ACTIONS(4677), + [sym__word_no_digit] = ACTIONS(4675), + [sym__digits] = ACTIONS(4675), + [anon_sym_DASH_DASH] = ACTIONS(4677), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4675), + [sym__code_span_start] = ACTIONS(4675), + [sym__emphasis_open_star] = ACTIONS(4675), + [sym__emphasis_open_underscore] = ACTIONS(4675), + [sym__strikeout_open] = ACTIONS(4675), + [sym__latex_span_start] = ACTIONS(4675), + [sym__single_quote_open] = ACTIONS(4675), + [sym__double_quote_open] = ACTIONS(4675), + [sym__superscript_open] = ACTIONS(4675), + [sym__subscript_open] = ACTIONS(4675), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4675), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4675), + [sym__cite_author_in_text] = ACTIONS(4675), + [sym__cite_suppress_author] = ACTIONS(4675), + [sym__shortcode_open_escaped] = ACTIONS(4675), + [sym__shortcode_open] = ACTIONS(4675), + [sym__unclosed_span] = ACTIONS(4675), + [sym__strong_emphasis_open_star] = ACTIONS(4675), + [sym__strong_emphasis_open_underscore] = ACTIONS(4675), + }, + [STATE(1413)] = { + [ts_builtin_sym_end] = ACTIONS(4679), + [sym__backslash_escape] = ACTIONS(4679), + [sym_entity_reference] = ACTIONS(4679), + [sym_numeric_character_reference] = ACTIONS(4679), + [anon_sym_LT] = ACTIONS(4681), + [anon_sym_GT] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(4679), + [anon_sym_DQUOTE] = ACTIONS(4679), + [anon_sym_POUND] = ACTIONS(4679), + [anon_sym_DOLLAR] = ACTIONS(4679), + [anon_sym_PERCENT] = ACTIONS(4679), + [anon_sym_AMP] = ACTIONS(4681), + [anon_sym_SQUOTE] = ACTIONS(4679), + [anon_sym_PLUS] = ACTIONS(4679), + [anon_sym_COMMA] = ACTIONS(4679), + [anon_sym_DASH] = ACTIONS(4681), + [anon_sym_DOT] = ACTIONS(4681), + [anon_sym_SLASH] = ACTIONS(4679), + [anon_sym_COLON] = ACTIONS(4679), + [anon_sym_SEMI] = ACTIONS(4679), + [anon_sym_EQ] = ACTIONS(4679), + [anon_sym_QMARK] = ACTIONS(4679), + [anon_sym_LBRACK] = ACTIONS(4681), + [anon_sym_BSLASH] = ACTIONS(4681), + [anon_sym_CARET] = ACTIONS(4681), + [anon_sym_BQUOTE] = ACTIONS(4679), + [anon_sym_LBRACE] = ACTIONS(4679), + [anon_sym_PIPE] = ACTIONS(4679), + [anon_sym_TILDE] = ACTIONS(4679), + [anon_sym_LPAREN] = ACTIONS(4679), + [anon_sym_RPAREN] = ACTIONS(4679), + [sym__newline_token] = ACTIONS(4679), + [aux_sym_insert_token1] = ACTIONS(4679), + [aux_sym_delete_token1] = ACTIONS(4679), + [aux_sym_highlight_token1] = ACTIONS(4679), + [aux_sym_edit_comment_token1] = ACTIONS(4679), + [anon_sym_CARET_LBRACK] = ACTIONS(4679), + [anon_sym_LBRACK_CARET] = ACTIONS(4679), + [sym_uri_autolink] = ACTIONS(4679), + [sym_email_autolink] = ACTIONS(4679), + [sym__whitespace_ge_2] = ACTIONS(4679), + [aux_sym__whitespace_token1] = ACTIONS(4681), + [sym__word_no_digit] = ACTIONS(4679), + [sym__digits] = ACTIONS(4679), + [anon_sym_DASH_DASH] = ACTIONS(4681), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4679), + [sym__code_span_start] = ACTIONS(4679), + [sym__emphasis_open_star] = ACTIONS(4679), + [sym__emphasis_open_underscore] = ACTIONS(4679), + [sym__strikeout_open] = ACTIONS(4679), + [sym__latex_span_start] = ACTIONS(4679), + [sym__single_quote_open] = ACTIONS(4679), + [sym__double_quote_open] = ACTIONS(4679), + [sym__superscript_open] = ACTIONS(4679), + [sym__subscript_open] = ACTIONS(4679), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4679), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4679), + [sym__cite_author_in_text] = ACTIONS(4679), + [sym__cite_suppress_author] = ACTIONS(4679), + [sym__shortcode_open_escaped] = ACTIONS(4679), + [sym__shortcode_open] = ACTIONS(4679), + [sym__unclosed_span] = ACTIONS(4679), + [sym__strong_emphasis_open_star] = ACTIONS(4679), + [sym__strong_emphasis_open_underscore] = ACTIONS(4679), + }, + [STATE(1414)] = { + [sym__backslash_escape] = ACTIONS(4639), + [sym_entity_reference] = ACTIONS(4639), + [sym_numeric_character_reference] = ACTIONS(4639), + [anon_sym_LT] = ACTIONS(4641), + [anon_sym_GT] = ACTIONS(4639), + [anon_sym_BANG] = ACTIONS(4639), + [anon_sym_DQUOTE] = ACTIONS(4639), + [anon_sym_POUND] = ACTIONS(4639), + [anon_sym_DOLLAR] = ACTIONS(4639), + [anon_sym_PERCENT] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4641), + [anon_sym_SQUOTE] = ACTIONS(4639), + [anon_sym_PLUS] = ACTIONS(4639), + [anon_sym_COMMA] = ACTIONS(4639), + [anon_sym_DASH] = ACTIONS(4641), + [anon_sym_DOT] = ACTIONS(4641), + [anon_sym_SLASH] = ACTIONS(4639), + [anon_sym_COLON] = ACTIONS(4639), + [anon_sym_SEMI] = ACTIONS(4639), + [anon_sym_EQ] = ACTIONS(4639), + [anon_sym_QMARK] = ACTIONS(4639), + [anon_sym_LBRACK] = ACTIONS(4641), + [anon_sym_BSLASH] = ACTIONS(4641), + [anon_sym_CARET] = ACTIONS(4641), + [anon_sym_BQUOTE] = ACTIONS(4639), + [anon_sym_LBRACE] = ACTIONS(4639), + [anon_sym_PIPE] = ACTIONS(4639), + [anon_sym_TILDE] = ACTIONS(4639), + [anon_sym_LPAREN] = ACTIONS(4639), + [anon_sym_RPAREN] = ACTIONS(4639), + [sym__newline_token] = ACTIONS(4639), + [aux_sym_insert_token1] = ACTIONS(4639), + [aux_sym_delete_token1] = ACTIONS(4639), + [aux_sym_highlight_token1] = ACTIONS(4639), + [aux_sym_edit_comment_token1] = ACTIONS(4639), + [anon_sym_CARET_LBRACK] = ACTIONS(4639), + [anon_sym_LBRACK_CARET] = ACTIONS(4639), + [sym_uri_autolink] = ACTIONS(4639), + [sym_email_autolink] = ACTIONS(4639), + [sym__whitespace_ge_2] = ACTIONS(4639), + [aux_sym__whitespace_token1] = ACTIONS(4641), + [sym__word_no_digit] = ACTIONS(4639), + [sym__digits] = ACTIONS(4639), + [anon_sym_DASH_DASH] = ACTIONS(4641), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4639), + [sym__code_span_start] = ACTIONS(4639), + [sym__emphasis_open_star] = ACTIONS(4639), + [sym__emphasis_open_underscore] = ACTIONS(4639), + [sym__strikeout_open] = ACTIONS(4639), + [sym__latex_span_start] = ACTIONS(4639), + [sym__single_quote_open] = ACTIONS(4639), + [sym__double_quote_open] = ACTIONS(4639), + [sym__superscript_open] = ACTIONS(4639), + [sym__subscript_open] = ACTIONS(4639), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4639), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4639), + [sym__cite_author_in_text] = ACTIONS(4639), + [sym__cite_suppress_author] = ACTIONS(4639), + [sym__shortcode_open_escaped] = ACTIONS(4639), + [sym__shortcode_open] = ACTIONS(4639), + [sym__unclosed_span] = ACTIONS(4639), + [sym__strong_emphasis_open_star] = ACTIONS(4639), + [sym__strong_emphasis_open_underscore] = ACTIONS(4639), + [sym__strong_emphasis_close_underscore] = ACTIONS(4639), + }, + [STATE(1415)] = { [sym__backslash_escape] = ACTIONS(4643), [sym_entity_reference] = ACTIONS(4643), [sym_numeric_character_reference] = ACTIONS(4643), @@ -143153,6 +143353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(4643), [sym__newline_token] = ACTIONS(4643), [aux_sym_insert_token1] = ACTIONS(4643), + [aux_sym_insert_token2] = ACTIONS(4643), [aux_sym_delete_token1] = ACTIONS(4643), [aux_sym_highlight_token1] = ACTIONS(4643), [aux_sym_edit_comment_token1] = ACTIONS(4643), @@ -143160,7 +143361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_CARET] = ACTIONS(4643), [sym_uri_autolink] = ACTIONS(4643), [sym_email_autolink] = ACTIONS(4643), - [sym__whitespace_ge_2] = ACTIONS(4643), + [sym__whitespace_ge_2] = ACTIONS(4645), [aux_sym__whitespace_token1] = ACTIONS(4645), [sym__word_no_digit] = ACTIONS(4643), [sym__digits] = ACTIONS(4643), @@ -143185,76 +143386,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unclosed_span] = ACTIONS(4643), [sym__strong_emphasis_open_star] = ACTIONS(4643), [sym__strong_emphasis_open_underscore] = ACTIONS(4643), - [sym__strong_emphasis_close_underscore] = ACTIONS(4643), - }, - [STATE(1413)] = { - [sym__backslash_escape] = ACTIONS(4647), - [sym_entity_reference] = ACTIONS(4647), - [sym_numeric_character_reference] = ACTIONS(4647), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4647), - [anon_sym_BANG] = ACTIONS(4647), - [anon_sym_DQUOTE] = ACTIONS(4647), - [anon_sym_POUND] = ACTIONS(4647), - [anon_sym_DOLLAR] = ACTIONS(4647), - [anon_sym_PERCENT] = ACTIONS(4647), - [anon_sym_AMP] = ACTIONS(4649), - [anon_sym_SQUOTE] = ACTIONS(4647), - [anon_sym_PLUS] = ACTIONS(4647), - [anon_sym_COMMA] = ACTIONS(4647), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_SLASH] = ACTIONS(4647), - [anon_sym_COLON] = ACTIONS(4647), - [anon_sym_SEMI] = ACTIONS(4647), - [anon_sym_EQ] = ACTIONS(4647), - [anon_sym_QMARK] = ACTIONS(4647), - [anon_sym_LBRACK] = ACTIONS(4649), - [anon_sym_BSLASH] = ACTIONS(4649), - [anon_sym_CARET] = ACTIONS(4649), - [anon_sym_BQUOTE] = ACTIONS(4647), - [anon_sym_LBRACE] = ACTIONS(4647), - [anon_sym_PIPE] = ACTIONS(4647), - [anon_sym_TILDE] = ACTIONS(4647), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_RPAREN] = ACTIONS(4647), - [sym__newline_token] = ACTIONS(4647), - [aux_sym_insert_token1] = ACTIONS(4647), - [aux_sym_insert_token2] = ACTIONS(4647), - [aux_sym_delete_token1] = ACTIONS(4647), - [aux_sym_highlight_token1] = ACTIONS(4647), - [aux_sym_edit_comment_token1] = ACTIONS(4647), - [anon_sym_CARET_LBRACK] = ACTIONS(4647), - [anon_sym_LBRACK_CARET] = ACTIONS(4647), - [sym_uri_autolink] = ACTIONS(4647), - [sym_email_autolink] = ACTIONS(4647), - [sym__whitespace_ge_2] = ACTIONS(4649), - [aux_sym__whitespace_token1] = ACTIONS(4649), - [sym__word_no_digit] = ACTIONS(4647), - [sym__digits] = ACTIONS(4647), - [anon_sym_DASH_DASH] = ACTIONS(4649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4647), - [sym__code_span_start] = ACTIONS(4647), - [sym__emphasis_open_star] = ACTIONS(4647), - [sym__emphasis_open_underscore] = ACTIONS(4647), - [sym__strikeout_open] = ACTIONS(4647), - [sym__latex_span_start] = ACTIONS(4647), - [sym__single_quote_open] = ACTIONS(4647), - [sym__double_quote_open] = ACTIONS(4647), - [sym__superscript_open] = ACTIONS(4647), - [sym__subscript_open] = ACTIONS(4647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4647), - [sym__cite_author_in_text] = ACTIONS(4647), - [sym__cite_suppress_author] = ACTIONS(4647), - [sym__shortcode_open_escaped] = ACTIONS(4647), - [sym__shortcode_open] = ACTIONS(4647), - [sym__unclosed_span] = ACTIONS(4647), - [sym__strong_emphasis_open_star] = ACTIONS(4647), - [sym__strong_emphasis_open_underscore] = ACTIONS(4647), }, - [STATE(1414)] = { + [STATE(1416)] = { [sym__backslash_escape] = ACTIONS(4181), [sym_entity_reference] = ACTIONS(4181), [sym_numeric_character_reference] = ACTIONS(4181), @@ -143321,74 +143454,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4181), [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, - [STATE(1415)] = { - [sym__backslash_escape] = ACTIONS(4583), - [sym_entity_reference] = ACTIONS(4583), - [sym_numeric_character_reference] = ACTIONS(4583), - [anon_sym_LT] = ACTIONS(4585), - [anon_sym_GT] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(4583), - [anon_sym_DQUOTE] = ACTIONS(4583), - [anon_sym_POUND] = ACTIONS(4583), - [anon_sym_DOLLAR] = ACTIONS(4583), - [anon_sym_PERCENT] = ACTIONS(4583), - [anon_sym_AMP] = ACTIONS(4585), - [anon_sym_SQUOTE] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4583), - [anon_sym_COMMA] = ACTIONS(4583), - [anon_sym_DASH] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_SLASH] = ACTIONS(4583), - [anon_sym_COLON] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4583), - [anon_sym_EQ] = ACTIONS(4583), - [anon_sym_QMARK] = ACTIONS(4583), - [anon_sym_LBRACK] = ACTIONS(4585), - [anon_sym_BSLASH] = ACTIONS(4585), - [anon_sym_CARET] = ACTIONS(4585), - [anon_sym_BQUOTE] = ACTIONS(4583), - [anon_sym_LBRACE] = ACTIONS(4583), - [anon_sym_PIPE] = ACTIONS(4583), - [anon_sym_TILDE] = ACTIONS(4583), - [anon_sym_LPAREN] = ACTIONS(4583), - [anon_sym_RPAREN] = ACTIONS(4583), - [sym__newline_token] = ACTIONS(4583), - [aux_sym_insert_token1] = ACTIONS(4583), - [aux_sym_delete_token1] = ACTIONS(4583), - [aux_sym_highlight_token1] = ACTIONS(4583), - [aux_sym_edit_comment_token1] = ACTIONS(4583), - [anon_sym_CARET_LBRACK] = ACTIONS(4583), - [anon_sym_LBRACK_CARET] = ACTIONS(4583), - [sym_uri_autolink] = ACTIONS(4583), - [sym_email_autolink] = ACTIONS(4583), - [sym__whitespace_ge_2] = ACTIONS(4583), - [aux_sym__whitespace_token1] = ACTIONS(4585), - [sym__word_no_digit] = ACTIONS(4583), - [sym__digits] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4583), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4583), - [sym__code_span_start] = ACTIONS(4583), - [sym__emphasis_open_star] = ACTIONS(4583), - [sym__emphasis_open_underscore] = ACTIONS(4583), - [sym__emphasis_close_star] = ACTIONS(4583), - [sym__strikeout_open] = ACTIONS(4583), - [sym__latex_span_start] = ACTIONS(4583), - [sym__single_quote_open] = ACTIONS(4583), - [sym__double_quote_open] = ACTIONS(4583), - [sym__superscript_open] = ACTIONS(4583), - [sym__subscript_open] = ACTIONS(4583), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4583), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4583), - [sym__cite_author_in_text] = ACTIONS(4583), - [sym__cite_suppress_author] = ACTIONS(4583), - [sym__shortcode_open_escaped] = ACTIONS(4583), - [sym__shortcode_open] = ACTIONS(4583), - [sym__unclosed_span] = ACTIONS(4583), - [sym__strong_emphasis_open_star] = ACTIONS(4583), - [sym__strong_emphasis_open_underscore] = ACTIONS(4583), + [STATE(1417)] = { + [ts_builtin_sym_end] = ACTIONS(4683), + [sym__backslash_escape] = ACTIONS(4683), + [sym_entity_reference] = ACTIONS(4683), + [sym_numeric_character_reference] = ACTIONS(4683), + [anon_sym_LT] = ACTIONS(4685), + [anon_sym_GT] = ACTIONS(4683), + [anon_sym_BANG] = ACTIONS(4683), + [anon_sym_DQUOTE] = ACTIONS(4683), + [anon_sym_POUND] = ACTIONS(4683), + [anon_sym_DOLLAR] = ACTIONS(4683), + [anon_sym_PERCENT] = ACTIONS(4683), + [anon_sym_AMP] = ACTIONS(4685), + [anon_sym_SQUOTE] = ACTIONS(4683), + [anon_sym_PLUS] = ACTIONS(4683), + [anon_sym_COMMA] = ACTIONS(4683), + [anon_sym_DASH] = ACTIONS(4685), + [anon_sym_DOT] = ACTIONS(4685), + [anon_sym_SLASH] = ACTIONS(4683), + [anon_sym_COLON] = ACTIONS(4683), + [anon_sym_SEMI] = ACTIONS(4683), + [anon_sym_EQ] = ACTIONS(4683), + [anon_sym_QMARK] = ACTIONS(4683), + [anon_sym_LBRACK] = ACTIONS(4685), + [anon_sym_BSLASH] = ACTIONS(4685), + [anon_sym_CARET] = ACTIONS(4685), + [anon_sym_BQUOTE] = ACTIONS(4683), + [anon_sym_LBRACE] = ACTIONS(4683), + [anon_sym_PIPE] = ACTIONS(4683), + [anon_sym_TILDE] = ACTIONS(4683), + [anon_sym_LPAREN] = ACTIONS(4683), + [anon_sym_RPAREN] = ACTIONS(4683), + [sym__newline_token] = ACTIONS(4683), + [aux_sym_insert_token1] = ACTIONS(4683), + [aux_sym_delete_token1] = ACTIONS(4683), + [aux_sym_highlight_token1] = ACTIONS(4683), + [aux_sym_edit_comment_token1] = ACTIONS(4683), + [anon_sym_CARET_LBRACK] = ACTIONS(4683), + [anon_sym_LBRACK_CARET] = ACTIONS(4683), + [sym_uri_autolink] = ACTIONS(4683), + [sym_email_autolink] = ACTIONS(4683), + [sym__whitespace_ge_2] = ACTIONS(4683), + [aux_sym__whitespace_token1] = ACTIONS(4685), + [sym__word_no_digit] = ACTIONS(4683), + [sym__digits] = ACTIONS(4683), + [anon_sym_DASH_DASH] = ACTIONS(4685), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4683), + [sym__code_span_start] = ACTIONS(4683), + [sym__emphasis_open_star] = ACTIONS(4683), + [sym__emphasis_open_underscore] = ACTIONS(4683), + [sym__strikeout_open] = ACTIONS(4683), + [sym__latex_span_start] = ACTIONS(4683), + [sym__single_quote_open] = ACTIONS(4683), + [sym__double_quote_open] = ACTIONS(4683), + [sym__superscript_open] = ACTIONS(4683), + [sym__subscript_open] = ACTIONS(4683), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4683), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4683), + [sym__cite_author_in_text] = ACTIONS(4683), + [sym__cite_suppress_author] = ACTIONS(4683), + [sym__shortcode_open_escaped] = ACTIONS(4683), + [sym__shortcode_open] = ACTIONS(4683), + [sym__unclosed_span] = ACTIONS(4683), + [sym__strong_emphasis_open_star] = ACTIONS(4683), + [sym__strong_emphasis_open_underscore] = ACTIONS(4683), }, - [STATE(1416)] = { + [STATE(1418)] = { + [sym__backslash_escape] = ACTIONS(4647), + [sym_entity_reference] = ACTIONS(4647), + [sym_numeric_character_reference] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_POUND] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [anon_sym_PERCENT] = ACTIONS(4647), + [anon_sym_AMP] = ACTIONS(4649), + [anon_sym_SQUOTE] = ACTIONS(4647), + [anon_sym_PLUS] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4647), + [anon_sym_DASH] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4649), + [anon_sym_SLASH] = ACTIONS(4647), + [anon_sym_COLON] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_LBRACK] = ACTIONS(4649), + [anon_sym_BSLASH] = ACTIONS(4649), + [anon_sym_CARET] = ACTIONS(4649), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LBRACE] = ACTIONS(4647), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_TILDE] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4647), + [anon_sym_RPAREN] = ACTIONS(4647), + [sym__newline_token] = ACTIONS(4647), + [aux_sym_insert_token1] = ACTIONS(4647), + [aux_sym_insert_token2] = ACTIONS(4647), + [aux_sym_delete_token1] = ACTIONS(4647), + [aux_sym_highlight_token1] = ACTIONS(4647), + [aux_sym_edit_comment_token1] = ACTIONS(4647), + [anon_sym_CARET_LBRACK] = ACTIONS(4647), + [anon_sym_LBRACK_CARET] = ACTIONS(4647), + [sym_uri_autolink] = ACTIONS(4647), + [sym_email_autolink] = ACTIONS(4647), + [sym__whitespace_ge_2] = ACTIONS(4649), + [aux_sym__whitespace_token1] = ACTIONS(4649), + [sym__word_no_digit] = ACTIONS(4647), + [sym__digits] = ACTIONS(4647), + [anon_sym_DASH_DASH] = ACTIONS(4649), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4647), + [sym__code_span_start] = ACTIONS(4647), + [sym__emphasis_open_star] = ACTIONS(4647), + [sym__emphasis_open_underscore] = ACTIONS(4647), + [sym__strikeout_open] = ACTIONS(4647), + [sym__latex_span_start] = ACTIONS(4647), + [sym__single_quote_open] = ACTIONS(4647), + [sym__double_quote_open] = ACTIONS(4647), + [sym__superscript_open] = ACTIONS(4647), + [sym__subscript_open] = ACTIONS(4647), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4647), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4647), + [sym__cite_author_in_text] = ACTIONS(4647), + [sym__cite_suppress_author] = ACTIONS(4647), + [sym__shortcode_open_escaped] = ACTIONS(4647), + [sym__shortcode_open] = ACTIONS(4647), + [sym__unclosed_span] = ACTIONS(4647), + [sym__strong_emphasis_open_star] = ACTIONS(4647), + [sym__strong_emphasis_open_underscore] = ACTIONS(4647), + }, + [STATE(1419)] = { [sym__backslash_escape] = ACTIONS(4651), [sym_entity_reference] = ACTIONS(4651), [sym_numeric_character_reference] = ACTIONS(4651), @@ -143455,74 +143655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4651), [sym__strong_emphasis_open_underscore] = ACTIONS(4651), }, - [STATE(1417)] = { - [sym__backslash_escape] = ACTIONS(4587), - [sym_entity_reference] = ACTIONS(4587), - [sym_numeric_character_reference] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4589), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_DQUOTE] = ACTIONS(4587), - [anon_sym_POUND] = ACTIONS(4587), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_AMP] = ACTIONS(4589), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_COMMA] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_QMARK] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_BSLASH] = ACTIONS(4589), - [anon_sym_CARET] = ACTIONS(4589), - [anon_sym_BQUOTE] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_TILDE] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4587), - [anon_sym_RPAREN] = ACTIONS(4587), - [sym__newline_token] = ACTIONS(4587), - [aux_sym_insert_token1] = ACTIONS(4587), - [aux_sym_delete_token1] = ACTIONS(4587), - [aux_sym_highlight_token1] = ACTIONS(4587), - [aux_sym_edit_comment_token1] = ACTIONS(4587), - [anon_sym_CARET_LBRACK] = ACTIONS(4587), - [anon_sym_LBRACK_CARET] = ACTIONS(4587), - [sym_uri_autolink] = ACTIONS(4587), - [sym_email_autolink] = ACTIONS(4587), - [sym__whitespace_ge_2] = ACTIONS(4587), - [aux_sym__whitespace_token1] = ACTIONS(4589), - [sym__word_no_digit] = ACTIONS(4587), - [sym__digits] = ACTIONS(4587), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), - [sym__code_span_start] = ACTIONS(4587), - [sym__emphasis_open_star] = ACTIONS(4587), - [sym__emphasis_open_underscore] = ACTIONS(4587), - [sym__emphasis_close_underscore] = ACTIONS(4587), - [sym__strikeout_open] = ACTIONS(4587), - [sym__latex_span_start] = ACTIONS(4587), - [sym__single_quote_open] = ACTIONS(4587), - [sym__double_quote_open] = ACTIONS(4587), - [sym__superscript_open] = ACTIONS(4587), - [sym__subscript_open] = ACTIONS(4587), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), - [sym__cite_author_in_text] = ACTIONS(4587), - [sym__cite_suppress_author] = ACTIONS(4587), - [sym__shortcode_open_escaped] = ACTIONS(4587), - [sym__shortcode_open] = ACTIONS(4587), - [sym__unclosed_span] = ACTIONS(4587), - [sym__strong_emphasis_open_star] = ACTIONS(4587), - [sym__strong_emphasis_open_underscore] = ACTIONS(4587), - }, - [STATE(1418)] = { + [STATE(1420)] = { [sym__backslash_escape] = ACTIONS(4655), [sym_entity_reference] = ACTIONS(4655), [sym_numeric_character_reference] = ACTIONS(4655), @@ -143589,7 +143722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4655), [sym__strong_emphasis_open_underscore] = ACTIONS(4655), }, - [STATE(1419)] = { + [STATE(1421)] = { [sym__backslash_escape] = ACTIONS(4659), [sym_entity_reference] = ACTIONS(4659), [sym_numeric_character_reference] = ACTIONS(4659), @@ -143656,7 +143789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4659), [sym__strong_emphasis_open_underscore] = ACTIONS(4659), }, - [STATE(1420)] = { + [STATE(1422)] = { [sym__backslash_escape] = ACTIONS(4663), [sym_entity_reference] = ACTIONS(4663), [sym_numeric_character_reference] = ACTIONS(4663), @@ -143723,7 +143856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4663), [sym__strong_emphasis_open_underscore] = ACTIONS(4663), }, - [STATE(1421)] = { + [STATE(1423)] = { [sym__backslash_escape] = ACTIONS(4667), [sym_entity_reference] = ACTIONS(4667), [sym_numeric_character_reference] = ACTIONS(4667), @@ -143790,7 +143923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4667), [sym__strong_emphasis_open_underscore] = ACTIONS(4667), }, - [STATE(1422)] = { + [STATE(1424)] = { [sym__backslash_escape] = ACTIONS(4671), [sym_entity_reference] = ACTIONS(4671), [sym_numeric_character_reference] = ACTIONS(4671), @@ -143857,7 +143990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4671), [sym__strong_emphasis_open_underscore] = ACTIONS(4671), }, - [STATE(1423)] = { + [STATE(1425)] = { [sym__backslash_escape] = ACTIONS(4675), [sym_entity_reference] = ACTIONS(4675), [sym_numeric_character_reference] = ACTIONS(4675), @@ -143924,7 +144057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4675), [sym__strong_emphasis_open_underscore] = ACTIONS(4675), }, - [STATE(1424)] = { + [STATE(1426)] = { [sym__backslash_escape] = ACTIONS(4679), [sym_entity_reference] = ACTIONS(4679), [sym_numeric_character_reference] = ACTIONS(4679), @@ -143991,7 +144124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4679), [sym__strong_emphasis_open_underscore] = ACTIONS(4679), }, - [STATE(1425)] = { + [STATE(1427)] = { [sym__backslash_escape] = ACTIONS(4683), [sym_entity_reference] = ACTIONS(4683), [sym_numeric_character_reference] = ACTIONS(4683), @@ -144058,7 +144191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4683), [sym__strong_emphasis_open_underscore] = ACTIONS(4683), }, - [STATE(1426)] = { + [STATE(1428)] = { [sym__backslash_escape] = ACTIONS(4687), [sym_entity_reference] = ACTIONS(4687), [sym_numeric_character_reference] = ACTIONS(4687), @@ -144125,7 +144258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4687), [sym__strong_emphasis_open_underscore] = ACTIONS(4687), }, - [STATE(1427)] = { + [STATE(1429)] = { [sym__backslash_escape] = ACTIONS(4691), [sym_entity_reference] = ACTIONS(4691), [sym_numeric_character_reference] = ACTIONS(4691), @@ -144192,7 +144325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4691), [sym__strong_emphasis_open_underscore] = ACTIONS(4691), }, - [STATE(1428)] = { + [STATE(1430)] = { [sym__backslash_escape] = ACTIONS(4695), [sym_entity_reference] = ACTIONS(4695), [sym_numeric_character_reference] = ACTIONS(4695), @@ -144259,7 +144392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4695), [sym__strong_emphasis_open_underscore] = ACTIONS(4695), }, - [STATE(1429)] = { + [STATE(1431)] = { [sym__backslash_escape] = ACTIONS(4699), [sym_entity_reference] = ACTIONS(4699), [sym_numeric_character_reference] = ACTIONS(4699), @@ -144326,7 +144459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4699), [sym__strong_emphasis_open_underscore] = ACTIONS(4699), }, - [STATE(1430)] = { + [STATE(1432)] = { [sym__backslash_escape] = ACTIONS(4703), [sym_entity_reference] = ACTIONS(4703), [sym_numeric_character_reference] = ACTIONS(4703), @@ -144393,7 +144526,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4703), [sym__strong_emphasis_open_underscore] = ACTIONS(4703), }, - [STATE(1431)] = { + [STATE(1433)] = { + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_insert_token2] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4273), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + }, + [STATE(1434)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__emphasis_close_underscore] = ACTIONS(4329), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + }, + [STATE(1435)] = { [sym__backslash_escape] = ACTIONS(4707), [sym_entity_reference] = ACTIONS(4707), [sym_numeric_character_reference] = ACTIONS(4707), @@ -144460,141 +144727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4707), [sym__strong_emphasis_open_underscore] = ACTIONS(4707), }, - [STATE(1432)] = { - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_insert_token2] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4277), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - }, - [STATE(1433)] = { - [ts_builtin_sym_end] = ACTIONS(4671), - [sym__backslash_escape] = ACTIONS(4671), - [sym_entity_reference] = ACTIONS(4671), - [sym_numeric_character_reference] = ACTIONS(4671), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4671), - [anon_sym_BANG] = ACTIONS(4671), - [anon_sym_DQUOTE] = ACTIONS(4671), - [anon_sym_POUND] = ACTIONS(4671), - [anon_sym_DOLLAR] = ACTIONS(4671), - [anon_sym_PERCENT] = ACTIONS(4671), - [anon_sym_AMP] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4671), - [anon_sym_PLUS] = ACTIONS(4671), - [anon_sym_COMMA] = ACTIONS(4671), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_SLASH] = ACTIONS(4671), - [anon_sym_COLON] = ACTIONS(4671), - [anon_sym_SEMI] = ACTIONS(4671), - [anon_sym_EQ] = ACTIONS(4671), - [anon_sym_QMARK] = ACTIONS(4671), - [anon_sym_LBRACK] = ACTIONS(4673), - [anon_sym_BSLASH] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4673), - [anon_sym_BQUOTE] = ACTIONS(4671), - [anon_sym_LBRACE] = ACTIONS(4671), - [anon_sym_PIPE] = ACTIONS(4671), - [anon_sym_TILDE] = ACTIONS(4671), - [anon_sym_LPAREN] = ACTIONS(4671), - [anon_sym_RPAREN] = ACTIONS(4671), - [sym__newline_token] = ACTIONS(4671), - [aux_sym_insert_token1] = ACTIONS(4671), - [aux_sym_delete_token1] = ACTIONS(4671), - [aux_sym_highlight_token1] = ACTIONS(4671), - [aux_sym_edit_comment_token1] = ACTIONS(4671), - [anon_sym_CARET_LBRACK] = ACTIONS(4671), - [anon_sym_LBRACK_CARET] = ACTIONS(4671), - [sym_uri_autolink] = ACTIONS(4671), - [sym_email_autolink] = ACTIONS(4671), - [sym__whitespace_ge_2] = ACTIONS(4671), - [aux_sym__whitespace_token1] = ACTIONS(4673), - [sym__word_no_digit] = ACTIONS(4671), - [sym__digits] = ACTIONS(4671), - [anon_sym_DASH_DASH] = ACTIONS(4673), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4671), - [sym__code_span_start] = ACTIONS(4671), - [sym__emphasis_open_star] = ACTIONS(4671), - [sym__emphasis_open_underscore] = ACTIONS(4671), - [sym__strikeout_open] = ACTIONS(4671), - [sym__latex_span_start] = ACTIONS(4671), - [sym__single_quote_open] = ACTIONS(4671), - [sym__double_quote_open] = ACTIONS(4671), - [sym__superscript_open] = ACTIONS(4671), - [sym__subscript_open] = ACTIONS(4671), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4671), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4671), - [sym__cite_author_in_text] = ACTIONS(4671), - [sym__cite_suppress_author] = ACTIONS(4671), - [sym__shortcode_open_escaped] = ACTIONS(4671), - [sym__shortcode_open] = ACTIONS(4671), - [sym__unclosed_span] = ACTIONS(4671), - [sym__strong_emphasis_open_star] = ACTIONS(4671), - [sym__strong_emphasis_open_underscore] = ACTIONS(4671), - }, - [STATE(1434)] = { + [STATE(1436)] = { [sym__backslash_escape] = ACTIONS(4711), [sym_entity_reference] = ACTIONS(4711), [sym_numeric_character_reference] = ACTIONS(4711), @@ -144661,74 +144794,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4711), [sym__strong_emphasis_open_underscore] = ACTIONS(4711), }, - [STATE(1435)] = { - [ts_builtin_sym_end] = ACTIONS(4675), - [sym__backslash_escape] = ACTIONS(4675), - [sym_entity_reference] = ACTIONS(4675), - [sym_numeric_character_reference] = ACTIONS(4675), - [anon_sym_LT] = ACTIONS(4677), - [anon_sym_GT] = ACTIONS(4675), - [anon_sym_BANG] = ACTIONS(4675), - [anon_sym_DQUOTE] = ACTIONS(4675), - [anon_sym_POUND] = ACTIONS(4675), - [anon_sym_DOLLAR] = ACTIONS(4675), - [anon_sym_PERCENT] = ACTIONS(4675), - [anon_sym_AMP] = ACTIONS(4677), - [anon_sym_SQUOTE] = ACTIONS(4675), - [anon_sym_PLUS] = ACTIONS(4675), - [anon_sym_COMMA] = ACTIONS(4675), - [anon_sym_DASH] = ACTIONS(4677), - [anon_sym_DOT] = ACTIONS(4677), - [anon_sym_SLASH] = ACTIONS(4675), - [anon_sym_COLON] = ACTIONS(4675), - [anon_sym_SEMI] = ACTIONS(4675), - [anon_sym_EQ] = ACTIONS(4675), - [anon_sym_QMARK] = ACTIONS(4675), - [anon_sym_LBRACK] = ACTIONS(4677), - [anon_sym_BSLASH] = ACTIONS(4677), - [anon_sym_CARET] = ACTIONS(4677), - [anon_sym_BQUOTE] = ACTIONS(4675), - [anon_sym_LBRACE] = ACTIONS(4675), - [anon_sym_PIPE] = ACTIONS(4675), - [anon_sym_TILDE] = ACTIONS(4675), - [anon_sym_LPAREN] = ACTIONS(4675), - [anon_sym_RPAREN] = ACTIONS(4675), - [sym__newline_token] = ACTIONS(4675), - [aux_sym_insert_token1] = ACTIONS(4675), - [aux_sym_delete_token1] = ACTIONS(4675), - [aux_sym_highlight_token1] = ACTIONS(4675), - [aux_sym_edit_comment_token1] = ACTIONS(4675), - [anon_sym_CARET_LBRACK] = ACTIONS(4675), - [anon_sym_LBRACK_CARET] = ACTIONS(4675), - [sym_uri_autolink] = ACTIONS(4675), - [sym_email_autolink] = ACTIONS(4675), - [sym__whitespace_ge_2] = ACTIONS(4675), - [aux_sym__whitespace_token1] = ACTIONS(4677), - [sym__word_no_digit] = ACTIONS(4675), - [sym__digits] = ACTIONS(4675), - [anon_sym_DASH_DASH] = ACTIONS(4677), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4675), - [sym__code_span_start] = ACTIONS(4675), - [sym__emphasis_open_star] = ACTIONS(4675), - [sym__emphasis_open_underscore] = ACTIONS(4675), - [sym__strikeout_open] = ACTIONS(4675), - [sym__latex_span_start] = ACTIONS(4675), - [sym__single_quote_open] = ACTIONS(4675), - [sym__double_quote_open] = ACTIONS(4675), - [sym__superscript_open] = ACTIONS(4675), - [sym__subscript_open] = ACTIONS(4675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4675), - [sym__cite_author_in_text] = ACTIONS(4675), - [sym__cite_suppress_author] = ACTIONS(4675), - [sym__shortcode_open_escaped] = ACTIONS(4675), - [sym__shortcode_open] = ACTIONS(4675), - [sym__unclosed_span] = ACTIONS(4675), - [sym__strong_emphasis_open_star] = ACTIONS(4675), - [sym__strong_emphasis_open_underscore] = ACTIONS(4675), + [STATE(1437)] = { + [ts_builtin_sym_end] = ACTIONS(4687), + [sym__backslash_escape] = ACTIONS(4687), + [sym_entity_reference] = ACTIONS(4687), + [sym_numeric_character_reference] = ACTIONS(4687), + [anon_sym_LT] = ACTIONS(4689), + [anon_sym_GT] = ACTIONS(4687), + [anon_sym_BANG] = ACTIONS(4687), + [anon_sym_DQUOTE] = ACTIONS(4687), + [anon_sym_POUND] = ACTIONS(4687), + [anon_sym_DOLLAR] = ACTIONS(4687), + [anon_sym_PERCENT] = ACTIONS(4687), + [anon_sym_AMP] = ACTIONS(4689), + [anon_sym_SQUOTE] = ACTIONS(4687), + [anon_sym_PLUS] = ACTIONS(4687), + [anon_sym_COMMA] = ACTIONS(4687), + [anon_sym_DASH] = ACTIONS(4689), + [anon_sym_DOT] = ACTIONS(4689), + [anon_sym_SLASH] = ACTIONS(4687), + [anon_sym_COLON] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4687), + [anon_sym_EQ] = ACTIONS(4687), + [anon_sym_QMARK] = ACTIONS(4687), + [anon_sym_LBRACK] = ACTIONS(4689), + [anon_sym_BSLASH] = ACTIONS(4689), + [anon_sym_CARET] = ACTIONS(4689), + [anon_sym_BQUOTE] = ACTIONS(4687), + [anon_sym_LBRACE] = ACTIONS(4687), + [anon_sym_PIPE] = ACTIONS(4687), + [anon_sym_TILDE] = ACTIONS(4687), + [anon_sym_LPAREN] = ACTIONS(4687), + [anon_sym_RPAREN] = ACTIONS(4687), + [sym__newline_token] = ACTIONS(4687), + [aux_sym_insert_token1] = ACTIONS(4687), + [aux_sym_delete_token1] = ACTIONS(4687), + [aux_sym_highlight_token1] = ACTIONS(4687), + [aux_sym_edit_comment_token1] = ACTIONS(4687), + [anon_sym_CARET_LBRACK] = ACTIONS(4687), + [anon_sym_LBRACK_CARET] = ACTIONS(4687), + [sym_uri_autolink] = ACTIONS(4687), + [sym_email_autolink] = ACTIONS(4687), + [sym__whitespace_ge_2] = ACTIONS(4687), + [aux_sym__whitespace_token1] = ACTIONS(4689), + [sym__word_no_digit] = ACTIONS(4687), + [sym__digits] = ACTIONS(4687), + [anon_sym_DASH_DASH] = ACTIONS(4689), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4687), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4687), + [sym__code_span_start] = ACTIONS(4687), + [sym__emphasis_open_star] = ACTIONS(4687), + [sym__emphasis_open_underscore] = ACTIONS(4687), + [sym__strikeout_open] = ACTIONS(4687), + [sym__latex_span_start] = ACTIONS(4687), + [sym__single_quote_open] = ACTIONS(4687), + [sym__double_quote_open] = ACTIONS(4687), + [sym__superscript_open] = ACTIONS(4687), + [sym__subscript_open] = ACTIONS(4687), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4687), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4687), + [sym__cite_author_in_text] = ACTIONS(4687), + [sym__cite_suppress_author] = ACTIONS(4687), + [sym__shortcode_open_escaped] = ACTIONS(4687), + [sym__shortcode_open] = ACTIONS(4687), + [sym__unclosed_span] = ACTIONS(4687), + [sym__strong_emphasis_open_star] = ACTIONS(4687), + [sym__strong_emphasis_open_underscore] = ACTIONS(4687), }, - [STATE(1436)] = { + [STATE(1438)] = { [sym__backslash_escape] = ACTIONS(4715), [sym_entity_reference] = ACTIONS(4715), [sym_numeric_character_reference] = ACTIONS(4715), @@ -144795,74 +144928,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4715), [sym__strong_emphasis_open_underscore] = ACTIONS(4715), }, - [STATE(1437)] = { - [ts_builtin_sym_end] = ACTIONS(4679), - [sym__backslash_escape] = ACTIONS(4679), - [sym_entity_reference] = ACTIONS(4679), - [sym_numeric_character_reference] = ACTIONS(4679), - [anon_sym_LT] = ACTIONS(4681), - [anon_sym_GT] = ACTIONS(4679), - [anon_sym_BANG] = ACTIONS(4679), - [anon_sym_DQUOTE] = ACTIONS(4679), - [anon_sym_POUND] = ACTIONS(4679), - [anon_sym_DOLLAR] = ACTIONS(4679), - [anon_sym_PERCENT] = ACTIONS(4679), - [anon_sym_AMP] = ACTIONS(4681), - [anon_sym_SQUOTE] = ACTIONS(4679), - [anon_sym_PLUS] = ACTIONS(4679), - [anon_sym_COMMA] = ACTIONS(4679), - [anon_sym_DASH] = ACTIONS(4681), - [anon_sym_DOT] = ACTIONS(4681), - [anon_sym_SLASH] = ACTIONS(4679), - [anon_sym_COLON] = ACTIONS(4679), - [anon_sym_SEMI] = ACTIONS(4679), - [anon_sym_EQ] = ACTIONS(4679), - [anon_sym_QMARK] = ACTIONS(4679), - [anon_sym_LBRACK] = ACTIONS(4681), - [anon_sym_BSLASH] = ACTIONS(4681), - [anon_sym_CARET] = ACTIONS(4681), - [anon_sym_BQUOTE] = ACTIONS(4679), - [anon_sym_LBRACE] = ACTIONS(4679), - [anon_sym_PIPE] = ACTIONS(4679), - [anon_sym_TILDE] = ACTIONS(4679), - [anon_sym_LPAREN] = ACTIONS(4679), - [anon_sym_RPAREN] = ACTIONS(4679), - [sym__newline_token] = ACTIONS(4679), - [aux_sym_insert_token1] = ACTIONS(4679), - [aux_sym_delete_token1] = ACTIONS(4679), - [aux_sym_highlight_token1] = ACTIONS(4679), - [aux_sym_edit_comment_token1] = ACTIONS(4679), - [anon_sym_CARET_LBRACK] = ACTIONS(4679), - [anon_sym_LBRACK_CARET] = ACTIONS(4679), - [sym_uri_autolink] = ACTIONS(4679), - [sym_email_autolink] = ACTIONS(4679), - [sym__whitespace_ge_2] = ACTIONS(4679), - [aux_sym__whitespace_token1] = ACTIONS(4681), - [sym__word_no_digit] = ACTIONS(4679), - [sym__digits] = ACTIONS(4679), - [anon_sym_DASH_DASH] = ACTIONS(4681), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4679), - [sym__code_span_start] = ACTIONS(4679), - [sym__emphasis_open_star] = ACTIONS(4679), - [sym__emphasis_open_underscore] = ACTIONS(4679), - [sym__strikeout_open] = ACTIONS(4679), - [sym__latex_span_start] = ACTIONS(4679), - [sym__single_quote_open] = ACTIONS(4679), - [sym__double_quote_open] = ACTIONS(4679), - [sym__superscript_open] = ACTIONS(4679), - [sym__subscript_open] = ACTIONS(4679), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4679), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4679), - [sym__cite_author_in_text] = ACTIONS(4679), - [sym__cite_suppress_author] = ACTIONS(4679), - [sym__shortcode_open_escaped] = ACTIONS(4679), - [sym__shortcode_open] = ACTIONS(4679), - [sym__unclosed_span] = ACTIONS(4679), - [sym__strong_emphasis_open_star] = ACTIONS(4679), - [sym__strong_emphasis_open_underscore] = ACTIONS(4679), + [STATE(1439)] = { + [sym__backslash_escape] = ACTIONS(4587), + [sym_entity_reference] = ACTIONS(4587), + [sym_numeric_character_reference] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4587), + [anon_sym_DQUOTE] = ACTIONS(4587), + [anon_sym_POUND] = ACTIONS(4587), + [anon_sym_DOLLAR] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4587), + [anon_sym_AMP] = ACTIONS(4589), + [anon_sym_SQUOTE] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_BSLASH] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4589), + [anon_sym_BQUOTE] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_PIPE] = ACTIONS(4587), + [anon_sym_TILDE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4587), + [sym__newline_token] = ACTIONS(4587), + [aux_sym_insert_token1] = ACTIONS(4587), + [aux_sym_delete_token1] = ACTIONS(4587), + [aux_sym_highlight_token1] = ACTIONS(4587), + [aux_sym_edit_comment_token1] = ACTIONS(4587), + [anon_sym_CARET_LBRACK] = ACTIONS(4587), + [anon_sym_LBRACK_CARET] = ACTIONS(4587), + [sym_uri_autolink] = ACTIONS(4587), + [sym_email_autolink] = ACTIONS(4587), + [sym__whitespace_ge_2] = ACTIONS(4587), + [aux_sym__whitespace_token1] = ACTIONS(4589), + [sym__word_no_digit] = ACTIONS(4587), + [sym__digits] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), + [sym__code_span_start] = ACTIONS(4587), + [sym__emphasis_open_star] = ACTIONS(4587), + [sym__emphasis_open_underscore] = ACTIONS(4587), + [sym__emphasis_close_underscore] = ACTIONS(4587), + [sym__strikeout_open] = ACTIONS(4587), + [sym__latex_span_start] = ACTIONS(4587), + [sym__single_quote_open] = ACTIONS(4587), + [sym__double_quote_open] = ACTIONS(4587), + [sym__superscript_open] = ACTIONS(4587), + [sym__subscript_open] = ACTIONS(4587), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), + [sym__cite_author_in_text] = ACTIONS(4587), + [sym__cite_suppress_author] = ACTIONS(4587), + [sym__shortcode_open_escaped] = ACTIONS(4587), + [sym__shortcode_open] = ACTIONS(4587), + [sym__unclosed_span] = ACTIONS(4587), + [sym__strong_emphasis_open_star] = ACTIONS(4587), + [sym__strong_emphasis_open_underscore] = ACTIONS(4587), }, - [STATE(1438)] = { + [STATE(1440)] = { + [sym__backslash_escape] = ACTIONS(4591), + [sym_entity_reference] = ACTIONS(4591), + [sym_numeric_character_reference] = ACTIONS(4591), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_GT] = ACTIONS(4591), + [anon_sym_BANG] = ACTIONS(4591), + [anon_sym_DQUOTE] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4591), + [anon_sym_DOLLAR] = ACTIONS(4591), + [anon_sym_PERCENT] = ACTIONS(4591), + [anon_sym_AMP] = ACTIONS(4593), + [anon_sym_SQUOTE] = ACTIONS(4591), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [anon_sym_LBRACK] = ACTIONS(4593), + [anon_sym_BSLASH] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4593), + [anon_sym_BQUOTE] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4591), + [anon_sym_LPAREN] = ACTIONS(4591), + [anon_sym_RPAREN] = ACTIONS(4591), + [sym__newline_token] = ACTIONS(4591), + [aux_sym_insert_token1] = ACTIONS(4591), + [aux_sym_delete_token1] = ACTIONS(4591), + [aux_sym_highlight_token1] = ACTIONS(4591), + [aux_sym_edit_comment_token1] = ACTIONS(4591), + [anon_sym_CARET_LBRACK] = ACTIONS(4591), + [anon_sym_LBRACK_CARET] = ACTIONS(4591), + [sym_uri_autolink] = ACTIONS(4591), + [sym_email_autolink] = ACTIONS(4591), + [sym__whitespace_ge_2] = ACTIONS(4591), + [aux_sym__whitespace_token1] = ACTIONS(4593), + [sym__word_no_digit] = ACTIONS(4591), + [sym__digits] = ACTIONS(4591), + [anon_sym_DASH_DASH] = ACTIONS(4593), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4591), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), + [sym__code_span_start] = ACTIONS(4591), + [sym__emphasis_open_star] = ACTIONS(4591), + [sym__emphasis_open_underscore] = ACTIONS(4591), + [sym__emphasis_close_underscore] = ACTIONS(4591), + [sym__strikeout_open] = ACTIONS(4591), + [sym__latex_span_start] = ACTIONS(4591), + [sym__single_quote_open] = ACTIONS(4591), + [sym__double_quote_open] = ACTIONS(4591), + [sym__superscript_open] = ACTIONS(4591), + [sym__subscript_open] = ACTIONS(4591), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4591), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4591), + [sym__cite_author_in_text] = ACTIONS(4591), + [sym__cite_suppress_author] = ACTIONS(4591), + [sym__shortcode_open_escaped] = ACTIONS(4591), + [sym__shortcode_open] = ACTIONS(4591), + [sym__unclosed_span] = ACTIONS(4591), + [sym__strong_emphasis_open_star] = ACTIONS(4591), + [sym__strong_emphasis_open_underscore] = ACTIONS(4591), + }, + [STATE(1441)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_insert_token2] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4393), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), + }, + [STATE(1442)] = { + [ts_builtin_sym_end] = ACTIONS(4691), + [sym__backslash_escape] = ACTIONS(4691), + [sym_entity_reference] = ACTIONS(4691), + [sym_numeric_character_reference] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4693), + [anon_sym_GT] = ACTIONS(4691), + [anon_sym_BANG] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(4691), + [anon_sym_POUND] = ACTIONS(4691), + [anon_sym_DOLLAR] = ACTIONS(4691), + [anon_sym_PERCENT] = ACTIONS(4691), + [anon_sym_AMP] = ACTIONS(4693), + [anon_sym_SQUOTE] = ACTIONS(4691), + [anon_sym_PLUS] = ACTIONS(4691), + [anon_sym_COMMA] = ACTIONS(4691), + [anon_sym_DASH] = ACTIONS(4693), + [anon_sym_DOT] = ACTIONS(4693), + [anon_sym_SLASH] = ACTIONS(4691), + [anon_sym_COLON] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4691), + [anon_sym_EQ] = ACTIONS(4691), + [anon_sym_QMARK] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_BSLASH] = ACTIONS(4693), + [anon_sym_CARET] = ACTIONS(4693), + [anon_sym_BQUOTE] = ACTIONS(4691), + [anon_sym_LBRACE] = ACTIONS(4691), + [anon_sym_PIPE] = ACTIONS(4691), + [anon_sym_TILDE] = ACTIONS(4691), + [anon_sym_LPAREN] = ACTIONS(4691), + [anon_sym_RPAREN] = ACTIONS(4691), + [sym__newline_token] = ACTIONS(4691), + [aux_sym_insert_token1] = ACTIONS(4691), + [aux_sym_delete_token1] = ACTIONS(4691), + [aux_sym_highlight_token1] = ACTIONS(4691), + [aux_sym_edit_comment_token1] = ACTIONS(4691), + [anon_sym_CARET_LBRACK] = ACTIONS(4691), + [anon_sym_LBRACK_CARET] = ACTIONS(4691), + [sym_uri_autolink] = ACTIONS(4691), + [sym_email_autolink] = ACTIONS(4691), + [sym__whitespace_ge_2] = ACTIONS(4691), + [aux_sym__whitespace_token1] = ACTIONS(4693), + [sym__word_no_digit] = ACTIONS(4691), + [sym__digits] = ACTIONS(4691), + [anon_sym_DASH_DASH] = ACTIONS(4693), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4691), + [sym__code_span_start] = ACTIONS(4691), + [sym__emphasis_open_star] = ACTIONS(4691), + [sym__emphasis_open_underscore] = ACTIONS(4691), + [sym__strikeout_open] = ACTIONS(4691), + [sym__latex_span_start] = ACTIONS(4691), + [sym__single_quote_open] = ACTIONS(4691), + [sym__double_quote_open] = ACTIONS(4691), + [sym__superscript_open] = ACTIONS(4691), + [sym__subscript_open] = ACTIONS(4691), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4691), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4691), + [sym__cite_author_in_text] = ACTIONS(4691), + [sym__cite_suppress_author] = ACTIONS(4691), + [sym__shortcode_open_escaped] = ACTIONS(4691), + [sym__shortcode_open] = ACTIONS(4691), + [sym__unclosed_span] = ACTIONS(4691), + [sym__strong_emphasis_open_star] = ACTIONS(4691), + [sym__strong_emphasis_open_underscore] = ACTIONS(4691), + }, + [STATE(1443)] = { [sym__backslash_escape] = ACTIONS(4719), [sym_entity_reference] = ACTIONS(4719), [sym_numeric_character_reference] = ACTIONS(4719), @@ -144929,208 +145263,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4719), [sym__strong_emphasis_open_underscore] = ACTIONS(4719), }, - [STATE(1439)] = { - [ts_builtin_sym_end] = ACTIONS(4683), - [sym__backslash_escape] = ACTIONS(4683), - [sym_entity_reference] = ACTIONS(4683), - [sym_numeric_character_reference] = ACTIONS(4683), - [anon_sym_LT] = ACTIONS(4685), - [anon_sym_GT] = ACTIONS(4683), - [anon_sym_BANG] = ACTIONS(4683), - [anon_sym_DQUOTE] = ACTIONS(4683), - [anon_sym_POUND] = ACTIONS(4683), - [anon_sym_DOLLAR] = ACTIONS(4683), - [anon_sym_PERCENT] = ACTIONS(4683), - [anon_sym_AMP] = ACTIONS(4685), - [anon_sym_SQUOTE] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4683), - [anon_sym_COMMA] = ACTIONS(4683), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_DOT] = ACTIONS(4685), - [anon_sym_SLASH] = ACTIONS(4683), - [anon_sym_COLON] = ACTIONS(4683), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_EQ] = ACTIONS(4683), - [anon_sym_QMARK] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4685), - [anon_sym_BSLASH] = ACTIONS(4685), - [anon_sym_CARET] = ACTIONS(4685), - [anon_sym_BQUOTE] = ACTIONS(4683), - [anon_sym_LBRACE] = ACTIONS(4683), - [anon_sym_PIPE] = ACTIONS(4683), - [anon_sym_TILDE] = ACTIONS(4683), - [anon_sym_LPAREN] = ACTIONS(4683), - [anon_sym_RPAREN] = ACTIONS(4683), - [sym__newline_token] = ACTIONS(4683), - [aux_sym_insert_token1] = ACTIONS(4683), - [aux_sym_delete_token1] = ACTIONS(4683), - [aux_sym_highlight_token1] = ACTIONS(4683), - [aux_sym_edit_comment_token1] = ACTIONS(4683), - [anon_sym_CARET_LBRACK] = ACTIONS(4683), - [anon_sym_LBRACK_CARET] = ACTIONS(4683), - [sym_uri_autolink] = ACTIONS(4683), - [sym_email_autolink] = ACTIONS(4683), - [sym__whitespace_ge_2] = ACTIONS(4683), - [aux_sym__whitespace_token1] = ACTIONS(4685), - [sym__word_no_digit] = ACTIONS(4683), - [sym__digits] = ACTIONS(4683), - [anon_sym_DASH_DASH] = ACTIONS(4685), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4683), - [sym__code_span_start] = ACTIONS(4683), - [sym__emphasis_open_star] = ACTIONS(4683), - [sym__emphasis_open_underscore] = ACTIONS(4683), - [sym__strikeout_open] = ACTIONS(4683), - [sym__latex_span_start] = ACTIONS(4683), - [sym__single_quote_open] = ACTIONS(4683), - [sym__double_quote_open] = ACTIONS(4683), - [sym__superscript_open] = ACTIONS(4683), - [sym__subscript_open] = ACTIONS(4683), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4683), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4683), - [sym__cite_author_in_text] = ACTIONS(4683), - [sym__cite_suppress_author] = ACTIONS(4683), - [sym__shortcode_open_escaped] = ACTIONS(4683), - [sym__shortcode_open] = ACTIONS(4683), - [sym__unclosed_span] = ACTIONS(4683), - [sym__strong_emphasis_open_star] = ACTIONS(4683), - [sym__strong_emphasis_open_underscore] = ACTIONS(4683), - }, - [STATE(1440)] = { - [ts_builtin_sym_end] = ACTIONS(4687), - [sym__backslash_escape] = ACTIONS(4687), - [sym_entity_reference] = ACTIONS(4687), - [sym_numeric_character_reference] = ACTIONS(4687), - [anon_sym_LT] = ACTIONS(4689), - [anon_sym_GT] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_DQUOTE] = ACTIONS(4687), - [anon_sym_POUND] = ACTIONS(4687), - [anon_sym_DOLLAR] = ACTIONS(4687), - [anon_sym_PERCENT] = ACTIONS(4687), - [anon_sym_AMP] = ACTIONS(4689), - [anon_sym_SQUOTE] = ACTIONS(4687), - [anon_sym_PLUS] = ACTIONS(4687), - [anon_sym_COMMA] = ACTIONS(4687), - [anon_sym_DASH] = ACTIONS(4689), - [anon_sym_DOT] = ACTIONS(4689), - [anon_sym_SLASH] = ACTIONS(4687), - [anon_sym_COLON] = ACTIONS(4687), - [anon_sym_SEMI] = ACTIONS(4687), - [anon_sym_EQ] = ACTIONS(4687), - [anon_sym_QMARK] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_BSLASH] = ACTIONS(4689), - [anon_sym_CARET] = ACTIONS(4689), - [anon_sym_BQUOTE] = ACTIONS(4687), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_PIPE] = ACTIONS(4687), - [anon_sym_TILDE] = ACTIONS(4687), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_RPAREN] = ACTIONS(4687), - [sym__newline_token] = ACTIONS(4687), - [aux_sym_insert_token1] = ACTIONS(4687), - [aux_sym_delete_token1] = ACTIONS(4687), - [aux_sym_highlight_token1] = ACTIONS(4687), - [aux_sym_edit_comment_token1] = ACTIONS(4687), - [anon_sym_CARET_LBRACK] = ACTIONS(4687), - [anon_sym_LBRACK_CARET] = ACTIONS(4687), - [sym_uri_autolink] = ACTIONS(4687), - [sym_email_autolink] = ACTIONS(4687), - [sym__whitespace_ge_2] = ACTIONS(4687), - [aux_sym__whitespace_token1] = ACTIONS(4689), - [sym__word_no_digit] = ACTIONS(4687), - [sym__digits] = ACTIONS(4687), - [anon_sym_DASH_DASH] = ACTIONS(4689), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4687), - [sym__code_span_start] = ACTIONS(4687), - [sym__emphasis_open_star] = ACTIONS(4687), - [sym__emphasis_open_underscore] = ACTIONS(4687), - [sym__strikeout_open] = ACTIONS(4687), - [sym__latex_span_start] = ACTIONS(4687), - [sym__single_quote_open] = ACTIONS(4687), - [sym__double_quote_open] = ACTIONS(4687), - [sym__superscript_open] = ACTIONS(4687), - [sym__subscript_open] = ACTIONS(4687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4687), - [sym__cite_author_in_text] = ACTIONS(4687), - [sym__cite_suppress_author] = ACTIONS(4687), - [sym__shortcode_open_escaped] = ACTIONS(4687), - [sym__shortcode_open] = ACTIONS(4687), - [sym__unclosed_span] = ACTIONS(4687), - [sym__strong_emphasis_open_star] = ACTIONS(4687), - [sym__strong_emphasis_open_underscore] = ACTIONS(4687), - }, - [STATE(1441)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_insert_token2] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4415), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), + [STATE(1444)] = { + [sym__backslash_escape] = ACTIONS(4595), + [sym_entity_reference] = ACTIONS(4595), + [sym_numeric_character_reference] = ACTIONS(4595), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_BANG] = ACTIONS(4595), + [anon_sym_DQUOTE] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4595), + [anon_sym_DOLLAR] = ACTIONS(4595), + [anon_sym_PERCENT] = ACTIONS(4595), + [anon_sym_AMP] = ACTIONS(4597), + [anon_sym_SQUOTE] = ACTIONS(4595), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_COMMA] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [anon_sym_LBRACK] = ACTIONS(4597), + [anon_sym_BSLASH] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4597), + [anon_sym_BQUOTE] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4595), + [anon_sym_PIPE] = ACTIONS(4595), + [anon_sym_TILDE] = ACTIONS(4595), + [anon_sym_LPAREN] = ACTIONS(4595), + [anon_sym_RPAREN] = ACTIONS(4595), + [sym__newline_token] = ACTIONS(4595), + [aux_sym_insert_token1] = ACTIONS(4595), + [aux_sym_delete_token1] = ACTIONS(4595), + [aux_sym_highlight_token1] = ACTIONS(4595), + [aux_sym_edit_comment_token1] = ACTIONS(4595), + [anon_sym_CARET_LBRACK] = ACTIONS(4595), + [anon_sym_LBRACK_CARET] = ACTIONS(4595), + [sym_uri_autolink] = ACTIONS(4595), + [sym_email_autolink] = ACTIONS(4595), + [sym__whitespace_ge_2] = ACTIONS(4595), + [aux_sym__whitespace_token1] = ACTIONS(4597), + [sym__word_no_digit] = ACTIONS(4595), + [sym__digits] = ACTIONS(4595), + [anon_sym_DASH_DASH] = ACTIONS(4597), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4595), + [sym__code_span_start] = ACTIONS(4595), + [sym__emphasis_open_star] = ACTIONS(4595), + [sym__emphasis_open_underscore] = ACTIONS(4595), + [sym__emphasis_close_underscore] = ACTIONS(4595), + [sym__strikeout_open] = ACTIONS(4595), + [sym__latex_span_start] = ACTIONS(4595), + [sym__single_quote_open] = ACTIONS(4595), + [sym__double_quote_open] = ACTIONS(4595), + [sym__superscript_open] = ACTIONS(4595), + [sym__subscript_open] = ACTIONS(4595), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4595), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4595), + [sym__cite_author_in_text] = ACTIONS(4595), + [sym__cite_suppress_author] = ACTIONS(4595), + [sym__shortcode_open_escaped] = ACTIONS(4595), + [sym__shortcode_open] = ACTIONS(4595), + [sym__unclosed_span] = ACTIONS(4595), + [sym__strong_emphasis_open_star] = ACTIONS(4595), + [sym__strong_emphasis_open_underscore] = ACTIONS(4595), }, - [STATE(1442)] = { + [STATE(1445)] = { [sym__backslash_escape] = ACTIONS(4723), [sym_entity_reference] = ACTIONS(4723), [sym_numeric_character_reference] = ACTIONS(4723), @@ -145197,74 +145397,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4723), [sym__strong_emphasis_open_underscore] = ACTIONS(4723), }, - [STATE(1443)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__emphasis_close_underscore] = ACTIONS(4335), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(1446)] = { + [sym__backslash_escape] = ACTIONS(4527), + [sym_entity_reference] = ACTIONS(4527), + [sym_numeric_character_reference] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_POUND] = ACTIONS(4527), + [anon_sym_DOLLAR] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_BSLASH] = ACTIONS(4529), + [anon_sym_CARET] = ACTIONS(4529), + [anon_sym_BQUOTE] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_RPAREN] = ACTIONS(4527), + [sym__newline_token] = ACTIONS(4527), + [aux_sym_insert_token1] = ACTIONS(4527), + [aux_sym_insert_token2] = ACTIONS(4527), + [aux_sym_delete_token1] = ACTIONS(4527), + [aux_sym_highlight_token1] = ACTIONS(4527), + [aux_sym_edit_comment_token1] = ACTIONS(4527), + [anon_sym_CARET_LBRACK] = ACTIONS(4527), + [anon_sym_LBRACK_CARET] = ACTIONS(4527), + [sym_uri_autolink] = ACTIONS(4527), + [sym_email_autolink] = ACTIONS(4527), + [sym__whitespace_ge_2] = ACTIONS(4529), + [aux_sym__whitespace_token1] = ACTIONS(4529), + [sym__word_no_digit] = ACTIONS(4527), + [sym__digits] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), + [sym__code_span_start] = ACTIONS(4527), + [sym__emphasis_open_star] = ACTIONS(4527), + [sym__emphasis_open_underscore] = ACTIONS(4527), + [sym__strikeout_open] = ACTIONS(4527), + [sym__latex_span_start] = ACTIONS(4527), + [sym__single_quote_open] = ACTIONS(4527), + [sym__double_quote_open] = ACTIONS(4527), + [sym__superscript_open] = ACTIONS(4527), + [sym__subscript_open] = ACTIONS(4527), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), + [sym__cite_author_in_text] = ACTIONS(4527), + [sym__cite_suppress_author] = ACTIONS(4527), + [sym__shortcode_open_escaped] = ACTIONS(4527), + [sym__shortcode_open] = ACTIONS(4527), + [sym__unclosed_span] = ACTIONS(4527), + [sym__strong_emphasis_open_star] = ACTIONS(4527), + [sym__strong_emphasis_open_underscore] = ACTIONS(4527), }, - [STATE(1444)] = { + [STATE(1447)] = { [sym__backslash_escape] = ACTIONS(4727), [sym_entity_reference] = ACTIONS(4727), [sym_numeric_character_reference] = ACTIONS(4727), @@ -145331,7 +145531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4727), [sym__strong_emphasis_open_underscore] = ACTIONS(4727), }, - [STATE(1445)] = { + [STATE(1448)] = { [sym__backslash_escape] = ACTIONS(4731), [sym_entity_reference] = ACTIONS(4731), [sym_numeric_character_reference] = ACTIONS(4731), @@ -145398,7 +145598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4731), [sym__strong_emphasis_open_underscore] = ACTIONS(4731), }, - [STATE(1446)] = { + [STATE(1449)] = { [sym__backslash_escape] = ACTIONS(4735), [sym_entity_reference] = ACTIONS(4735), [sym_numeric_character_reference] = ACTIONS(4735), @@ -145465,7 +145665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4735), [sym__strong_emphasis_open_underscore] = ACTIONS(4735), }, - [STATE(1447)] = { + [STATE(1450)] = { [sym__backslash_escape] = ACTIONS(4739), [sym_entity_reference] = ACTIONS(4739), [sym_numeric_character_reference] = ACTIONS(4739), @@ -145532,7 +145732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4739), [sym__strong_emphasis_open_underscore] = ACTIONS(4739), }, - [STATE(1448)] = { + [STATE(1451)] = { [sym__backslash_escape] = ACTIONS(4743), [sym_entity_reference] = ACTIONS(4743), [sym_numeric_character_reference] = ACTIONS(4743), @@ -145599,7 +145799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4743), [sym__strong_emphasis_open_underscore] = ACTIONS(4743), }, - [STATE(1449)] = { + [STATE(1452)] = { [sym__backslash_escape] = ACTIONS(4747), [sym_entity_reference] = ACTIONS(4747), [sym_numeric_character_reference] = ACTIONS(4747), @@ -145666,7 +145866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4747), [sym__strong_emphasis_open_underscore] = ACTIONS(4747), }, - [STATE(1450)] = { + [STATE(1453)] = { [sym__backslash_escape] = ACTIONS(4751), [sym_entity_reference] = ACTIONS(4751), [sym_numeric_character_reference] = ACTIONS(4751), @@ -145733,7 +145933,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4751), [sym__strong_emphasis_open_underscore] = ACTIONS(4751), }, - [STATE(1451)] = { + [STATE(1454)] = { + [sym__backslash_escape] = ACTIONS(4599), + [sym_entity_reference] = ACTIONS(4599), + [sym_numeric_character_reference] = ACTIONS(4599), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_GT] = ACTIONS(4599), + [anon_sym_BANG] = ACTIONS(4599), + [anon_sym_DQUOTE] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4599), + [anon_sym_DOLLAR] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_AMP] = ACTIONS(4601), + [anon_sym_SQUOTE] = ACTIONS(4599), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_COMMA] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(4601), + [anon_sym_BSLASH] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4601), + [anon_sym_BQUOTE] = ACTIONS(4599), + [anon_sym_LBRACE] = ACTIONS(4599), + [anon_sym_PIPE] = ACTIONS(4599), + [anon_sym_TILDE] = ACTIONS(4599), + [anon_sym_LPAREN] = ACTIONS(4599), + [anon_sym_RPAREN] = ACTIONS(4599), + [sym__newline_token] = ACTIONS(4599), + [aux_sym_insert_token1] = ACTIONS(4599), + [aux_sym_delete_token1] = ACTIONS(4599), + [aux_sym_highlight_token1] = ACTIONS(4599), + [aux_sym_edit_comment_token1] = ACTIONS(4599), + [anon_sym_CARET_LBRACK] = ACTIONS(4599), + [anon_sym_LBRACK_CARET] = ACTIONS(4599), + [sym_uri_autolink] = ACTIONS(4599), + [sym_email_autolink] = ACTIONS(4599), + [sym__whitespace_ge_2] = ACTIONS(4599), + [aux_sym__whitespace_token1] = ACTIONS(4601), + [sym__word_no_digit] = ACTIONS(4599), + [sym__digits] = ACTIONS(4599), + [anon_sym_DASH_DASH] = ACTIONS(4601), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4599), + [sym__code_span_start] = ACTIONS(4599), + [sym__emphasis_open_star] = ACTIONS(4599), + [sym__emphasis_open_underscore] = ACTIONS(4599), + [sym__emphasis_close_underscore] = ACTIONS(4599), + [sym__strikeout_open] = ACTIONS(4599), + [sym__latex_span_start] = ACTIONS(4599), + [sym__single_quote_open] = ACTIONS(4599), + [sym__double_quote_open] = ACTIONS(4599), + [sym__superscript_open] = ACTIONS(4599), + [sym__subscript_open] = ACTIONS(4599), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4599), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4599), + [sym__cite_author_in_text] = ACTIONS(4599), + [sym__cite_suppress_author] = ACTIONS(4599), + [sym__shortcode_open_escaped] = ACTIONS(4599), + [sym__shortcode_open] = ACTIONS(4599), + [sym__unclosed_span] = ACTIONS(4599), + [sym__strong_emphasis_open_star] = ACTIONS(4599), + [sym__strong_emphasis_open_underscore] = ACTIONS(4599), + }, + [STATE(1455)] = { [sym__backslash_escape] = ACTIONS(4755), [sym_entity_reference] = ACTIONS(4755), [sym_numeric_character_reference] = ACTIONS(4755), @@ -145800,7 +146067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4755), [sym__strong_emphasis_open_underscore] = ACTIONS(4755), }, - [STATE(1452)] = { + [STATE(1456)] = { [sym__backslash_escape] = ACTIONS(4759), [sym_entity_reference] = ACTIONS(4759), [sym_numeric_character_reference] = ACTIONS(4759), @@ -145867,74 +146134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4759), [sym__strong_emphasis_open_underscore] = ACTIONS(4759), }, - [STATE(1453)] = { - [ts_builtin_sym_end] = ACTIONS(4691), - [sym__backslash_escape] = ACTIONS(4691), - [sym_entity_reference] = ACTIONS(4691), - [sym_numeric_character_reference] = ACTIONS(4691), - [anon_sym_LT] = ACTIONS(4693), - [anon_sym_GT] = ACTIONS(4691), - [anon_sym_BANG] = ACTIONS(4691), - [anon_sym_DQUOTE] = ACTIONS(4691), - [anon_sym_POUND] = ACTIONS(4691), - [anon_sym_DOLLAR] = ACTIONS(4691), - [anon_sym_PERCENT] = ACTIONS(4691), - [anon_sym_AMP] = ACTIONS(4693), - [anon_sym_SQUOTE] = ACTIONS(4691), - [anon_sym_PLUS] = ACTIONS(4691), - [anon_sym_COMMA] = ACTIONS(4691), - [anon_sym_DASH] = ACTIONS(4693), - [anon_sym_DOT] = ACTIONS(4693), - [anon_sym_SLASH] = ACTIONS(4691), - [anon_sym_COLON] = ACTIONS(4691), - [anon_sym_SEMI] = ACTIONS(4691), - [anon_sym_EQ] = ACTIONS(4691), - [anon_sym_QMARK] = ACTIONS(4691), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_BSLASH] = ACTIONS(4693), - [anon_sym_CARET] = ACTIONS(4693), - [anon_sym_BQUOTE] = ACTIONS(4691), - [anon_sym_LBRACE] = ACTIONS(4691), - [anon_sym_PIPE] = ACTIONS(4691), - [anon_sym_TILDE] = ACTIONS(4691), - [anon_sym_LPAREN] = ACTIONS(4691), - [anon_sym_RPAREN] = ACTIONS(4691), - [sym__newline_token] = ACTIONS(4691), - [aux_sym_insert_token1] = ACTIONS(4691), - [aux_sym_delete_token1] = ACTIONS(4691), - [aux_sym_highlight_token1] = ACTIONS(4691), - [aux_sym_edit_comment_token1] = ACTIONS(4691), - [anon_sym_CARET_LBRACK] = ACTIONS(4691), - [anon_sym_LBRACK_CARET] = ACTIONS(4691), - [sym_uri_autolink] = ACTIONS(4691), - [sym_email_autolink] = ACTIONS(4691), - [sym__whitespace_ge_2] = ACTIONS(4691), - [aux_sym__whitespace_token1] = ACTIONS(4693), - [sym__word_no_digit] = ACTIONS(4691), - [sym__digits] = ACTIONS(4691), - [anon_sym_DASH_DASH] = ACTIONS(4693), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4691), - [sym__code_span_start] = ACTIONS(4691), - [sym__emphasis_open_star] = ACTIONS(4691), - [sym__emphasis_open_underscore] = ACTIONS(4691), - [sym__strikeout_open] = ACTIONS(4691), - [sym__latex_span_start] = ACTIONS(4691), - [sym__single_quote_open] = ACTIONS(4691), - [sym__double_quote_open] = ACTIONS(4691), - [sym__superscript_open] = ACTIONS(4691), - [sym__subscript_open] = ACTIONS(4691), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4691), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4691), - [sym__cite_author_in_text] = ACTIONS(4691), - [sym__cite_suppress_author] = ACTIONS(4691), - [sym__shortcode_open_escaped] = ACTIONS(4691), - [sym__shortcode_open] = ACTIONS(4691), - [sym__unclosed_span] = ACTIONS(4691), - [sym__strong_emphasis_open_star] = ACTIONS(4691), - [sym__strong_emphasis_open_underscore] = ACTIONS(4691), - }, - [STATE(1454)] = { + [STATE(1457)] = { [sym__backslash_escape] = ACTIONS(4763), [sym_entity_reference] = ACTIONS(4763), [sym_numeric_character_reference] = ACTIONS(4763), @@ -146001,141 +146201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4763), [sym__strong_emphasis_open_underscore] = ACTIONS(4763), }, - [STATE(1455)] = { - [sym__backslash_escape] = ACTIONS(4527), - [sym_entity_reference] = ACTIONS(4527), - [sym_numeric_character_reference] = ACTIONS(4527), - [anon_sym_LT] = ACTIONS(4529), - [anon_sym_GT] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(4527), - [anon_sym_DQUOTE] = ACTIONS(4527), - [anon_sym_POUND] = ACTIONS(4527), - [anon_sym_DOLLAR] = ACTIONS(4527), - [anon_sym_PERCENT] = ACTIONS(4527), - [anon_sym_AMP] = ACTIONS(4529), - [anon_sym_SQUOTE] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(4527), - [anon_sym_COMMA] = ACTIONS(4527), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_DOT] = ACTIONS(4529), - [anon_sym_SLASH] = ACTIONS(4527), - [anon_sym_COLON] = ACTIONS(4527), - [anon_sym_SEMI] = ACTIONS(4527), - [anon_sym_EQ] = ACTIONS(4527), - [anon_sym_QMARK] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4529), - [anon_sym_BSLASH] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(4529), - [anon_sym_BQUOTE] = ACTIONS(4527), - [anon_sym_LBRACE] = ACTIONS(4527), - [anon_sym_PIPE] = ACTIONS(4527), - [anon_sym_TILDE] = ACTIONS(4527), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym_RPAREN] = ACTIONS(4527), - [sym__newline_token] = ACTIONS(4527), - [aux_sym_insert_token1] = ACTIONS(4527), - [aux_sym_insert_token2] = ACTIONS(4527), - [aux_sym_delete_token1] = ACTIONS(4527), - [aux_sym_highlight_token1] = ACTIONS(4527), - [aux_sym_edit_comment_token1] = ACTIONS(4527), - [anon_sym_CARET_LBRACK] = ACTIONS(4527), - [anon_sym_LBRACK_CARET] = ACTIONS(4527), - [sym_uri_autolink] = ACTIONS(4527), - [sym_email_autolink] = ACTIONS(4527), - [sym__whitespace_ge_2] = ACTIONS(4529), - [aux_sym__whitespace_token1] = ACTIONS(4529), - [sym__word_no_digit] = ACTIONS(4527), - [sym__digits] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), - [sym__code_span_start] = ACTIONS(4527), - [sym__emphasis_open_star] = ACTIONS(4527), - [sym__emphasis_open_underscore] = ACTIONS(4527), - [sym__strikeout_open] = ACTIONS(4527), - [sym__latex_span_start] = ACTIONS(4527), - [sym__single_quote_open] = ACTIONS(4527), - [sym__double_quote_open] = ACTIONS(4527), - [sym__superscript_open] = ACTIONS(4527), - [sym__subscript_open] = ACTIONS(4527), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), - [sym__cite_author_in_text] = ACTIONS(4527), - [sym__cite_suppress_author] = ACTIONS(4527), - [sym__shortcode_open_escaped] = ACTIONS(4527), - [sym__shortcode_open] = ACTIONS(4527), - [sym__unclosed_span] = ACTIONS(4527), - [sym__strong_emphasis_open_star] = ACTIONS(4527), - [sym__strong_emphasis_open_underscore] = ACTIONS(4527), - }, - [STATE(1456)] = { - [sym__backslash_escape] = ACTIONS(4531), - [sym_entity_reference] = ACTIONS(4531), - [sym_numeric_character_reference] = ACTIONS(4531), - [anon_sym_LT] = ACTIONS(4533), - [anon_sym_GT] = ACTIONS(4531), - [anon_sym_BANG] = ACTIONS(4531), - [anon_sym_DQUOTE] = ACTIONS(4531), - [anon_sym_POUND] = ACTIONS(4531), - [anon_sym_DOLLAR] = ACTIONS(4531), - [anon_sym_PERCENT] = ACTIONS(4531), - [anon_sym_AMP] = ACTIONS(4533), - [anon_sym_SQUOTE] = ACTIONS(4531), - [anon_sym_PLUS] = ACTIONS(4531), - [anon_sym_COMMA] = ACTIONS(4531), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4533), - [anon_sym_SLASH] = ACTIONS(4531), - [anon_sym_COLON] = ACTIONS(4531), - [anon_sym_SEMI] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4531), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_BSLASH] = ACTIONS(4533), - [anon_sym_CARET] = ACTIONS(4533), - [anon_sym_BQUOTE] = ACTIONS(4531), - [anon_sym_LBRACE] = ACTIONS(4531), - [anon_sym_PIPE] = ACTIONS(4531), - [anon_sym_TILDE] = ACTIONS(4531), - [anon_sym_LPAREN] = ACTIONS(4531), - [anon_sym_RPAREN] = ACTIONS(4531), - [sym__newline_token] = ACTIONS(4531), - [aux_sym_insert_token1] = ACTIONS(4531), - [aux_sym_insert_token2] = ACTIONS(4531), - [aux_sym_delete_token1] = ACTIONS(4531), - [aux_sym_highlight_token1] = ACTIONS(4531), - [aux_sym_edit_comment_token1] = ACTIONS(4531), - [anon_sym_CARET_LBRACK] = ACTIONS(4531), - [anon_sym_LBRACK_CARET] = ACTIONS(4531), - [sym_uri_autolink] = ACTIONS(4531), - [sym_email_autolink] = ACTIONS(4531), - [sym__whitespace_ge_2] = ACTIONS(4533), - [aux_sym__whitespace_token1] = ACTIONS(4533), - [sym__word_no_digit] = ACTIONS(4531), - [sym__digits] = ACTIONS(4531), - [anon_sym_DASH_DASH] = ACTIONS(4533), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), - [sym__code_span_start] = ACTIONS(4531), - [sym__emphasis_open_star] = ACTIONS(4531), - [sym__emphasis_open_underscore] = ACTIONS(4531), - [sym__strikeout_open] = ACTIONS(4531), - [sym__latex_span_start] = ACTIONS(4531), - [sym__single_quote_open] = ACTIONS(4531), - [sym__double_quote_open] = ACTIONS(4531), - [sym__superscript_open] = ACTIONS(4531), - [sym__subscript_open] = ACTIONS(4531), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), - [sym__cite_author_in_text] = ACTIONS(4531), - [sym__cite_suppress_author] = ACTIONS(4531), - [sym__shortcode_open_escaped] = ACTIONS(4531), - [sym__shortcode_open] = ACTIONS(4531), - [sym__unclosed_span] = ACTIONS(4531), - [sym__strong_emphasis_open_star] = ACTIONS(4531), - [sym__strong_emphasis_open_underscore] = ACTIONS(4531), - }, - [STATE(1457)] = { + [STATE(1458)] = { [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), [sym_numeric_character_reference] = ACTIONS(4209), @@ -146202,74 +146268,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4209), [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, - [STATE(1458)] = { - [sym__backslash_escape] = ACTIONS(4591), - [sym_entity_reference] = ACTIONS(4591), - [sym_numeric_character_reference] = ACTIONS(4591), - [anon_sym_LT] = ACTIONS(4593), - [anon_sym_GT] = ACTIONS(4591), - [anon_sym_BANG] = ACTIONS(4591), - [anon_sym_DQUOTE] = ACTIONS(4591), - [anon_sym_POUND] = ACTIONS(4591), - [anon_sym_DOLLAR] = ACTIONS(4591), - [anon_sym_PERCENT] = ACTIONS(4591), - [anon_sym_AMP] = ACTIONS(4593), - [anon_sym_SQUOTE] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_COMMA] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4593), - [anon_sym_SLASH] = ACTIONS(4591), - [anon_sym_COLON] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4591), - [anon_sym_EQ] = ACTIONS(4591), - [anon_sym_QMARK] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_BSLASH] = ACTIONS(4593), - [anon_sym_CARET] = ACTIONS(4593), - [anon_sym_BQUOTE] = ACTIONS(4591), - [anon_sym_LBRACE] = ACTIONS(4591), - [anon_sym_PIPE] = ACTIONS(4591), - [anon_sym_TILDE] = ACTIONS(4591), - [anon_sym_LPAREN] = ACTIONS(4591), - [anon_sym_RPAREN] = ACTIONS(4591), - [sym__newline_token] = ACTIONS(4591), - [aux_sym_insert_token1] = ACTIONS(4591), - [aux_sym_delete_token1] = ACTIONS(4591), - [aux_sym_highlight_token1] = ACTIONS(4591), - [aux_sym_edit_comment_token1] = ACTIONS(4591), - [anon_sym_CARET_LBRACK] = ACTIONS(4591), - [anon_sym_LBRACK_CARET] = ACTIONS(4591), - [sym_uri_autolink] = ACTIONS(4591), - [sym_email_autolink] = ACTIONS(4591), - [sym__whitespace_ge_2] = ACTIONS(4591), - [aux_sym__whitespace_token1] = ACTIONS(4593), - [sym__word_no_digit] = ACTIONS(4591), - [sym__digits] = ACTIONS(4591), - [anon_sym_DASH_DASH] = ACTIONS(4593), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4591), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), - [sym__code_span_start] = ACTIONS(4591), - [sym__emphasis_open_star] = ACTIONS(4591), - [sym__emphasis_open_underscore] = ACTIONS(4591), - [sym__emphasis_close_underscore] = ACTIONS(4591), - [sym__strikeout_open] = ACTIONS(4591), - [sym__latex_span_start] = ACTIONS(4591), - [sym__single_quote_open] = ACTIONS(4591), - [sym__double_quote_open] = ACTIONS(4591), - [sym__superscript_open] = ACTIONS(4591), - [sym__subscript_open] = ACTIONS(4591), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4591), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4591), - [sym__cite_author_in_text] = ACTIONS(4591), - [sym__cite_suppress_author] = ACTIONS(4591), - [sym__shortcode_open_escaped] = ACTIONS(4591), - [sym__shortcode_open] = ACTIONS(4591), - [sym__unclosed_span] = ACTIONS(4591), - [sym__strong_emphasis_open_star] = ACTIONS(4591), - [sym__strong_emphasis_open_underscore] = ACTIONS(4591), - }, [STATE(1459)] = { + [sym__backslash_escape] = ACTIONS(4603), + [sym_entity_reference] = ACTIONS(4603), + [sym_numeric_character_reference] = ACTIONS(4603), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_GT] = ACTIONS(4603), + [anon_sym_BANG] = ACTIONS(4603), + [anon_sym_DQUOTE] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4603), + [anon_sym_DOLLAR] = ACTIONS(4603), + [anon_sym_PERCENT] = ACTIONS(4603), + [anon_sym_AMP] = ACTIONS(4605), + [anon_sym_SQUOTE] = ACTIONS(4603), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_COMMA] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [anon_sym_LBRACK] = ACTIONS(4605), + [anon_sym_BSLASH] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4605), + [anon_sym_BQUOTE] = ACTIONS(4603), + [anon_sym_LBRACE] = ACTIONS(4603), + [anon_sym_PIPE] = ACTIONS(4603), + [anon_sym_TILDE] = ACTIONS(4603), + [anon_sym_LPAREN] = ACTIONS(4603), + [anon_sym_RPAREN] = ACTIONS(4603), + [sym__newline_token] = ACTIONS(4603), + [aux_sym_insert_token1] = ACTIONS(4603), + [aux_sym_delete_token1] = ACTIONS(4603), + [aux_sym_highlight_token1] = ACTIONS(4603), + [aux_sym_edit_comment_token1] = ACTIONS(4603), + [anon_sym_CARET_LBRACK] = ACTIONS(4603), + [anon_sym_LBRACK_CARET] = ACTIONS(4603), + [sym_uri_autolink] = ACTIONS(4603), + [sym_email_autolink] = ACTIONS(4603), + [sym__whitespace_ge_2] = ACTIONS(4603), + [aux_sym__whitespace_token1] = ACTIONS(4605), + [sym__word_no_digit] = ACTIONS(4603), + [sym__digits] = ACTIONS(4603), + [anon_sym_DASH_DASH] = ACTIONS(4605), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4603), + [sym__code_span_start] = ACTIONS(4603), + [sym__emphasis_open_star] = ACTIONS(4603), + [sym__emphasis_open_underscore] = ACTIONS(4603), + [sym__emphasis_close_underscore] = ACTIONS(4603), + [sym__strikeout_open] = ACTIONS(4603), + [sym__latex_span_start] = ACTIONS(4603), + [sym__single_quote_open] = ACTIONS(4603), + [sym__double_quote_open] = ACTIONS(4603), + [sym__superscript_open] = ACTIONS(4603), + [sym__subscript_open] = ACTIONS(4603), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4603), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4603), + [sym__cite_author_in_text] = ACTIONS(4603), + [sym__cite_suppress_author] = ACTIONS(4603), + [sym__shortcode_open_escaped] = ACTIONS(4603), + [sym__shortcode_open] = ACTIONS(4603), + [sym__unclosed_span] = ACTIONS(4603), + [sym__strong_emphasis_open_star] = ACTIONS(4603), + [sym__strong_emphasis_open_underscore] = ACTIONS(4603), + }, + [STATE(1460)] = { [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), [sym_numeric_character_reference] = ACTIONS(4213), @@ -146336,74 +146402,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4213), [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, - [STATE(1460)] = { - [sym__backslash_escape] = ACTIONS(4595), - [sym_entity_reference] = ACTIONS(4595), - [sym_numeric_character_reference] = ACTIONS(4595), - [anon_sym_LT] = ACTIONS(4597), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_DQUOTE] = ACTIONS(4595), - [anon_sym_POUND] = ACTIONS(4595), - [anon_sym_DOLLAR] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4597), - [anon_sym_SQUOTE] = ACTIONS(4595), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_COMMA] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4597), - [anon_sym_DOT] = ACTIONS(4597), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_COLON] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_QMARK] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_BSLASH] = ACTIONS(4597), - [anon_sym_CARET] = ACTIONS(4597), - [anon_sym_BQUOTE] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(4595), - [anon_sym_PIPE] = ACTIONS(4595), - [anon_sym_TILDE] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(4595), - [anon_sym_RPAREN] = ACTIONS(4595), - [sym__newline_token] = ACTIONS(4595), - [aux_sym_insert_token1] = ACTIONS(4595), - [aux_sym_delete_token1] = ACTIONS(4595), - [aux_sym_highlight_token1] = ACTIONS(4595), - [aux_sym_edit_comment_token1] = ACTIONS(4595), - [anon_sym_CARET_LBRACK] = ACTIONS(4595), - [anon_sym_LBRACK_CARET] = ACTIONS(4595), - [sym_uri_autolink] = ACTIONS(4595), - [sym_email_autolink] = ACTIONS(4595), - [sym__whitespace_ge_2] = ACTIONS(4595), - [aux_sym__whitespace_token1] = ACTIONS(4597), - [sym__word_no_digit] = ACTIONS(4595), - [sym__digits] = ACTIONS(4595), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4595), - [sym__code_span_start] = ACTIONS(4595), - [sym__emphasis_open_star] = ACTIONS(4595), - [sym__emphasis_open_underscore] = ACTIONS(4595), - [sym__emphasis_close_underscore] = ACTIONS(4595), - [sym__strikeout_open] = ACTIONS(4595), - [sym__latex_span_start] = ACTIONS(4595), - [sym__single_quote_open] = ACTIONS(4595), - [sym__double_quote_open] = ACTIONS(4595), - [sym__superscript_open] = ACTIONS(4595), - [sym__subscript_open] = ACTIONS(4595), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4595), - [sym__cite_author_in_text] = ACTIONS(4595), - [sym__cite_suppress_author] = ACTIONS(4595), - [sym__shortcode_open_escaped] = ACTIONS(4595), - [sym__shortcode_open] = ACTIONS(4595), - [sym__unclosed_span] = ACTIONS(4595), - [sym__strong_emphasis_open_star] = ACTIONS(4595), - [sym__strong_emphasis_open_underscore] = ACTIONS(4595), - }, [STATE(1461)] = { + [sym__backslash_escape] = ACTIONS(4607), + [sym_entity_reference] = ACTIONS(4607), + [sym_numeric_character_reference] = ACTIONS(4607), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_GT] = ACTIONS(4607), + [anon_sym_BANG] = ACTIONS(4607), + [anon_sym_DQUOTE] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4607), + [anon_sym_DOLLAR] = ACTIONS(4607), + [anon_sym_PERCENT] = ACTIONS(4607), + [anon_sym_AMP] = ACTIONS(4609), + [anon_sym_SQUOTE] = ACTIONS(4607), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_COMMA] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_BSLASH] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4609), + [anon_sym_BQUOTE] = ACTIONS(4607), + [anon_sym_LBRACE] = ACTIONS(4607), + [anon_sym_PIPE] = ACTIONS(4607), + [anon_sym_TILDE] = ACTIONS(4607), + [anon_sym_LPAREN] = ACTIONS(4607), + [anon_sym_RPAREN] = ACTIONS(4607), + [sym__newline_token] = ACTIONS(4607), + [aux_sym_insert_token1] = ACTIONS(4607), + [aux_sym_delete_token1] = ACTIONS(4607), + [aux_sym_highlight_token1] = ACTIONS(4607), + [aux_sym_edit_comment_token1] = ACTIONS(4607), + [anon_sym_CARET_LBRACK] = ACTIONS(4607), + [anon_sym_LBRACK_CARET] = ACTIONS(4607), + [sym_uri_autolink] = ACTIONS(4607), + [sym_email_autolink] = ACTIONS(4607), + [sym__whitespace_ge_2] = ACTIONS(4607), + [aux_sym__whitespace_token1] = ACTIONS(4609), + [sym__word_no_digit] = ACTIONS(4607), + [sym__digits] = ACTIONS(4607), + [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4607), + [sym__code_span_start] = ACTIONS(4607), + [sym__emphasis_open_star] = ACTIONS(4607), + [sym__emphasis_open_underscore] = ACTIONS(4607), + [sym__emphasis_close_underscore] = ACTIONS(4607), + [sym__strikeout_open] = ACTIONS(4607), + [sym__latex_span_start] = ACTIONS(4607), + [sym__single_quote_open] = ACTIONS(4607), + [sym__double_quote_open] = ACTIONS(4607), + [sym__superscript_open] = ACTIONS(4607), + [sym__subscript_open] = ACTIONS(4607), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4607), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4607), + [sym__cite_author_in_text] = ACTIONS(4607), + [sym__cite_suppress_author] = ACTIONS(4607), + [sym__shortcode_open_escaped] = ACTIONS(4607), + [sym__shortcode_open] = ACTIONS(4607), + [sym__unclosed_span] = ACTIONS(4607), + [sym__strong_emphasis_open_star] = ACTIONS(4607), + [sym__strong_emphasis_open_underscore] = ACTIONS(4607), + }, + [STATE(1462)] = { + [sym__backslash_escape] = ACTIONS(4531), + [sym_entity_reference] = ACTIONS(4531), + [sym_numeric_character_reference] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_DQUOTE] = ACTIONS(4531), + [anon_sym_POUND] = ACTIONS(4531), + [anon_sym_DOLLAR] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4533), + [anon_sym_SQUOTE] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_DASH] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4533), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_BSLASH] = ACTIONS(4533), + [anon_sym_CARET] = ACTIONS(4533), + [anon_sym_BQUOTE] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_TILDE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_RPAREN] = ACTIONS(4531), + [sym__newline_token] = ACTIONS(4531), + [aux_sym_insert_token1] = ACTIONS(4531), + [aux_sym_insert_token2] = ACTIONS(4531), + [aux_sym_delete_token1] = ACTIONS(4531), + [aux_sym_highlight_token1] = ACTIONS(4531), + [aux_sym_edit_comment_token1] = ACTIONS(4531), + [anon_sym_CARET_LBRACK] = ACTIONS(4531), + [anon_sym_LBRACK_CARET] = ACTIONS(4531), + [sym_uri_autolink] = ACTIONS(4531), + [sym_email_autolink] = ACTIONS(4531), + [sym__whitespace_ge_2] = ACTIONS(4533), + [aux_sym__whitespace_token1] = ACTIONS(4533), + [sym__word_no_digit] = ACTIONS(4531), + [sym__digits] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), + [sym__code_span_start] = ACTIONS(4531), + [sym__emphasis_open_star] = ACTIONS(4531), + [sym__emphasis_open_underscore] = ACTIONS(4531), + [sym__strikeout_open] = ACTIONS(4531), + [sym__latex_span_start] = ACTIONS(4531), + [sym__single_quote_open] = ACTIONS(4531), + [sym__double_quote_open] = ACTIONS(4531), + [sym__superscript_open] = ACTIONS(4531), + [sym__subscript_open] = ACTIONS(4531), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), + [sym__cite_author_in_text] = ACTIONS(4531), + [sym__cite_suppress_author] = ACTIONS(4531), + [sym__shortcode_open_escaped] = ACTIONS(4531), + [sym__shortcode_open] = ACTIONS(4531), + [sym__unclosed_span] = ACTIONS(4531), + [sym__strong_emphasis_open_star] = ACTIONS(4531), + [sym__strong_emphasis_open_underscore] = ACTIONS(4531), + }, + [STATE(1463)] = { [sym__backslash_escape] = ACTIONS(4535), [sym_entity_reference] = ACTIONS(4535), [sym_numeric_character_reference] = ACTIONS(4535), @@ -146470,7 +146603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4535), [sym__strong_emphasis_open_underscore] = ACTIONS(4535), }, - [STATE(1462)] = { + [STATE(1464)] = { [sym__backslash_escape] = ACTIONS(4539), [sym_entity_reference] = ACTIONS(4539), [sym_numeric_character_reference] = ACTIONS(4539), @@ -146537,7 +146670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4539), [sym__strong_emphasis_open_underscore] = ACTIONS(4539), }, - [STATE(1463)] = { + [STATE(1465)] = { [sym__backslash_escape] = ACTIONS(4543), [sym_entity_reference] = ACTIONS(4543), [sym_numeric_character_reference] = ACTIONS(4543), @@ -146604,7 +146737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4543), [sym__strong_emphasis_open_underscore] = ACTIONS(4543), }, - [STATE(1464)] = { + [STATE(1466)] = { [sym__backslash_escape] = ACTIONS(4547), [sym_entity_reference] = ACTIONS(4547), [sym_numeric_character_reference] = ACTIONS(4547), @@ -146671,74 +146804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4547), [sym__strong_emphasis_open_underscore] = ACTIONS(4547), }, - [STATE(1465)] = { - [sym__backslash_escape] = ACTIONS(4551), - [sym_entity_reference] = ACTIONS(4551), - [sym_numeric_character_reference] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(4553), - [anon_sym_GT] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4551), - [anon_sym_DQUOTE] = ACTIONS(4551), - [anon_sym_POUND] = ACTIONS(4551), - [anon_sym_DOLLAR] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_AMP] = ACTIONS(4553), - [anon_sym_SQUOTE] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_COLON] = ACTIONS(4551), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_EQ] = ACTIONS(4551), - [anon_sym_QMARK] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_BSLASH] = ACTIONS(4553), - [anon_sym_CARET] = ACTIONS(4553), - [anon_sym_BQUOTE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_PIPE] = ACTIONS(4551), - [anon_sym_TILDE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_RPAREN] = ACTIONS(4551), - [sym__newline_token] = ACTIONS(4551), - [aux_sym_insert_token1] = ACTIONS(4551), - [aux_sym_insert_token2] = ACTIONS(4551), - [aux_sym_delete_token1] = ACTIONS(4551), - [aux_sym_highlight_token1] = ACTIONS(4551), - [aux_sym_edit_comment_token1] = ACTIONS(4551), - [anon_sym_CARET_LBRACK] = ACTIONS(4551), - [anon_sym_LBRACK_CARET] = ACTIONS(4551), - [sym_uri_autolink] = ACTIONS(4551), - [sym_email_autolink] = ACTIONS(4551), - [sym__whitespace_ge_2] = ACTIONS(4553), - [aux_sym__whitespace_token1] = ACTIONS(4553), - [sym__word_no_digit] = ACTIONS(4551), - [sym__digits] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4553), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), - [sym__code_span_start] = ACTIONS(4551), - [sym__emphasis_open_star] = ACTIONS(4551), - [sym__emphasis_open_underscore] = ACTIONS(4551), - [sym__strikeout_open] = ACTIONS(4551), - [sym__latex_span_start] = ACTIONS(4551), - [sym__single_quote_open] = ACTIONS(4551), - [sym__double_quote_open] = ACTIONS(4551), - [sym__superscript_open] = ACTIONS(4551), - [sym__subscript_open] = ACTIONS(4551), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), - [sym__cite_author_in_text] = ACTIONS(4551), - [sym__cite_suppress_author] = ACTIONS(4551), - [sym__shortcode_open_escaped] = ACTIONS(4551), - [sym__shortcode_open] = ACTIONS(4551), - [sym__unclosed_span] = ACTIONS(4551), - [sym__strong_emphasis_open_star] = ACTIONS(4551), - [sym__strong_emphasis_open_underscore] = ACTIONS(4551), - }, - [STATE(1466)] = { + [STATE(1467)] = { [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -146805,74 +146871,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4217), [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, - [STATE(1467)] = { - [ts_builtin_sym_end] = ACTIONS(4695), - [sym__backslash_escape] = ACTIONS(4695), - [sym_entity_reference] = ACTIONS(4695), - [sym_numeric_character_reference] = ACTIONS(4695), - [anon_sym_LT] = ACTIONS(4697), - [anon_sym_GT] = ACTIONS(4695), - [anon_sym_BANG] = ACTIONS(4695), - [anon_sym_DQUOTE] = ACTIONS(4695), - [anon_sym_POUND] = ACTIONS(4695), - [anon_sym_DOLLAR] = ACTIONS(4695), - [anon_sym_PERCENT] = ACTIONS(4695), - [anon_sym_AMP] = ACTIONS(4697), - [anon_sym_SQUOTE] = ACTIONS(4695), - [anon_sym_PLUS] = ACTIONS(4695), - [anon_sym_COMMA] = ACTIONS(4695), - [anon_sym_DASH] = ACTIONS(4697), - [anon_sym_DOT] = ACTIONS(4697), - [anon_sym_SLASH] = ACTIONS(4695), - [anon_sym_COLON] = ACTIONS(4695), - [anon_sym_SEMI] = ACTIONS(4695), - [anon_sym_EQ] = ACTIONS(4695), - [anon_sym_QMARK] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_BSLASH] = ACTIONS(4697), - [anon_sym_CARET] = ACTIONS(4697), - [anon_sym_BQUOTE] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4695), - [anon_sym_PIPE] = ACTIONS(4695), - [anon_sym_TILDE] = ACTIONS(4695), - [anon_sym_LPAREN] = ACTIONS(4695), - [anon_sym_RPAREN] = ACTIONS(4695), - [sym__newline_token] = ACTIONS(4695), - [aux_sym_insert_token1] = ACTIONS(4695), - [aux_sym_delete_token1] = ACTIONS(4695), - [aux_sym_highlight_token1] = ACTIONS(4695), - [aux_sym_edit_comment_token1] = ACTIONS(4695), - [anon_sym_CARET_LBRACK] = ACTIONS(4695), - [anon_sym_LBRACK_CARET] = ACTIONS(4695), - [sym_uri_autolink] = ACTIONS(4695), - [sym_email_autolink] = ACTIONS(4695), - [sym__whitespace_ge_2] = ACTIONS(4695), - [aux_sym__whitespace_token1] = ACTIONS(4697), - [sym__word_no_digit] = ACTIONS(4695), - [sym__digits] = ACTIONS(4695), - [anon_sym_DASH_DASH] = ACTIONS(4697), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4695), - [sym__code_span_start] = ACTIONS(4695), - [sym__emphasis_open_star] = ACTIONS(4695), - [sym__emphasis_open_underscore] = ACTIONS(4695), - [sym__strikeout_open] = ACTIONS(4695), - [sym__latex_span_start] = ACTIONS(4695), - [sym__single_quote_open] = ACTIONS(4695), - [sym__double_quote_open] = ACTIONS(4695), - [sym__superscript_open] = ACTIONS(4695), - [sym__subscript_open] = ACTIONS(4695), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4695), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4695), - [sym__cite_author_in_text] = ACTIONS(4695), - [sym__cite_suppress_author] = ACTIONS(4695), - [sym__shortcode_open_escaped] = ACTIONS(4695), - [sym__shortcode_open] = ACTIONS(4695), - [sym__unclosed_span] = ACTIONS(4695), - [sym__strong_emphasis_open_star] = ACTIONS(4695), - [sym__strong_emphasis_open_underscore] = ACTIONS(4695), - }, [STATE(1468)] = { + [sym__backslash_escape] = ACTIONS(4611), + [sym_entity_reference] = ACTIONS(4611), + [sym_numeric_character_reference] = ACTIONS(4611), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_GT] = ACTIONS(4611), + [anon_sym_BANG] = ACTIONS(4611), + [anon_sym_DQUOTE] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4611), + [anon_sym_DOLLAR] = ACTIONS(4611), + [anon_sym_PERCENT] = ACTIONS(4611), + [anon_sym_AMP] = ACTIONS(4613), + [anon_sym_SQUOTE] = ACTIONS(4611), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_COMMA] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_BSLASH] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4613), + [anon_sym_BQUOTE] = ACTIONS(4611), + [anon_sym_LBRACE] = ACTIONS(4611), + [anon_sym_PIPE] = ACTIONS(4611), + [anon_sym_TILDE] = ACTIONS(4611), + [anon_sym_LPAREN] = ACTIONS(4611), + [anon_sym_RPAREN] = ACTIONS(4611), + [sym__newline_token] = ACTIONS(4611), + [aux_sym_insert_token1] = ACTIONS(4611), + [aux_sym_delete_token1] = ACTIONS(4611), + [aux_sym_highlight_token1] = ACTIONS(4611), + [aux_sym_edit_comment_token1] = ACTIONS(4611), + [anon_sym_CARET_LBRACK] = ACTIONS(4611), + [anon_sym_LBRACK_CARET] = ACTIONS(4611), + [sym_uri_autolink] = ACTIONS(4611), + [sym_email_autolink] = ACTIONS(4611), + [sym__whitespace_ge_2] = ACTIONS(4611), + [aux_sym__whitespace_token1] = ACTIONS(4613), + [sym__word_no_digit] = ACTIONS(4611), + [sym__digits] = ACTIONS(4611), + [anon_sym_DASH_DASH] = ACTIONS(4613), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4611), + [sym__code_span_start] = ACTIONS(4611), + [sym__emphasis_open_star] = ACTIONS(4611), + [sym__emphasis_open_underscore] = ACTIONS(4611), + [sym__emphasis_close_underscore] = ACTIONS(4611), + [sym__strikeout_open] = ACTIONS(4611), + [sym__latex_span_start] = ACTIONS(4611), + [sym__single_quote_open] = ACTIONS(4611), + [sym__double_quote_open] = ACTIONS(4611), + [sym__superscript_open] = ACTIONS(4611), + [sym__subscript_open] = ACTIONS(4611), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4611), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4611), + [sym__cite_author_in_text] = ACTIONS(4611), + [sym__cite_suppress_author] = ACTIONS(4611), + [sym__shortcode_open_escaped] = ACTIONS(4611), + [sym__shortcode_open] = ACTIONS(4611), + [sym__unclosed_span] = ACTIONS(4611), + [sym__strong_emphasis_open_star] = ACTIONS(4611), + [sym__strong_emphasis_open_underscore] = ACTIONS(4611), + }, + [STATE(1469)] = { [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -146939,7 +147005,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4221), [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, - [STATE(1469)] = { + [STATE(1470)] = { + [sym__backslash_escape] = ACTIONS(4615), + [sym_entity_reference] = ACTIONS(4615), + [sym_numeric_character_reference] = ACTIONS(4615), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_GT] = ACTIONS(4615), + [anon_sym_BANG] = ACTIONS(4615), + [anon_sym_DQUOTE] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4615), + [anon_sym_DOLLAR] = ACTIONS(4615), + [anon_sym_PERCENT] = ACTIONS(4615), + [anon_sym_AMP] = ACTIONS(4617), + [anon_sym_SQUOTE] = ACTIONS(4615), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_COMMA] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [anon_sym_LBRACK] = ACTIONS(4617), + [anon_sym_BSLASH] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4617), + [anon_sym_BQUOTE] = ACTIONS(4615), + [anon_sym_LBRACE] = ACTIONS(4615), + [anon_sym_PIPE] = ACTIONS(4615), + [anon_sym_TILDE] = ACTIONS(4615), + [anon_sym_LPAREN] = ACTIONS(4615), + [anon_sym_RPAREN] = ACTIONS(4615), + [sym__newline_token] = ACTIONS(4615), + [aux_sym_insert_token1] = ACTIONS(4615), + [aux_sym_delete_token1] = ACTIONS(4615), + [aux_sym_highlight_token1] = ACTIONS(4615), + [aux_sym_edit_comment_token1] = ACTIONS(4615), + [anon_sym_CARET_LBRACK] = ACTIONS(4615), + [anon_sym_LBRACK_CARET] = ACTIONS(4615), + [sym_uri_autolink] = ACTIONS(4615), + [sym_email_autolink] = ACTIONS(4615), + [sym__whitespace_ge_2] = ACTIONS(4615), + [aux_sym__whitespace_token1] = ACTIONS(4617), + [sym__word_no_digit] = ACTIONS(4615), + [sym__digits] = ACTIONS(4615), + [anon_sym_DASH_DASH] = ACTIONS(4617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4615), + [sym__code_span_start] = ACTIONS(4615), + [sym__emphasis_open_star] = ACTIONS(4615), + [sym__emphasis_open_underscore] = ACTIONS(4615), + [sym__emphasis_close_underscore] = ACTIONS(4615), + [sym__strikeout_open] = ACTIONS(4615), + [sym__latex_span_start] = ACTIONS(4615), + [sym__single_quote_open] = ACTIONS(4615), + [sym__double_quote_open] = ACTIONS(4615), + [sym__superscript_open] = ACTIONS(4615), + [sym__subscript_open] = ACTIONS(4615), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4615), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4615), + [sym__cite_author_in_text] = ACTIONS(4615), + [sym__cite_suppress_author] = ACTIONS(4615), + [sym__shortcode_open_escaped] = ACTIONS(4615), + [sym__shortcode_open] = ACTIONS(4615), + [sym__unclosed_span] = ACTIONS(4615), + [sym__strong_emphasis_open_star] = ACTIONS(4615), + [sym__strong_emphasis_open_underscore] = ACTIONS(4615), + }, + [STATE(1471)] = { + [sym__backslash_escape] = ACTIONS(4551), + [sym_entity_reference] = ACTIONS(4551), + [sym_numeric_character_reference] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_POUND] = ACTIONS(4551), + [anon_sym_DOLLAR] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4553), + [anon_sym_SQUOTE] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_BSLASH] = ACTIONS(4553), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_BQUOTE] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_RPAREN] = ACTIONS(4551), + [sym__newline_token] = ACTIONS(4551), + [aux_sym_insert_token1] = ACTIONS(4551), + [aux_sym_insert_token2] = ACTIONS(4551), + [aux_sym_delete_token1] = ACTIONS(4551), + [aux_sym_highlight_token1] = ACTIONS(4551), + [aux_sym_edit_comment_token1] = ACTIONS(4551), + [anon_sym_CARET_LBRACK] = ACTIONS(4551), + [anon_sym_LBRACK_CARET] = ACTIONS(4551), + [sym_uri_autolink] = ACTIONS(4551), + [sym_email_autolink] = ACTIONS(4551), + [sym__whitespace_ge_2] = ACTIONS(4553), + [aux_sym__whitespace_token1] = ACTIONS(4553), + [sym__word_no_digit] = ACTIONS(4551), + [sym__digits] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), + [sym__code_span_start] = ACTIONS(4551), + [sym__emphasis_open_star] = ACTIONS(4551), + [sym__emphasis_open_underscore] = ACTIONS(4551), + [sym__strikeout_open] = ACTIONS(4551), + [sym__latex_span_start] = ACTIONS(4551), + [sym__single_quote_open] = ACTIONS(4551), + [sym__double_quote_open] = ACTIONS(4551), + [sym__superscript_open] = ACTIONS(4551), + [sym__subscript_open] = ACTIONS(4551), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), + [sym__cite_author_in_text] = ACTIONS(4551), + [sym__cite_suppress_author] = ACTIONS(4551), + [sym__shortcode_open_escaped] = ACTIONS(4551), + [sym__shortcode_open] = ACTIONS(4551), + [sym__unclosed_span] = ACTIONS(4551), + [sym__strong_emphasis_open_star] = ACTIONS(4551), + [sym__strong_emphasis_open_underscore] = ACTIONS(4551), + }, + [STATE(1472)] = { [sym__backslash_escape] = ACTIONS(4555), [sym_entity_reference] = ACTIONS(4555), [sym_numeric_character_reference] = ACTIONS(4555), @@ -147006,7 +147206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4555), [sym__strong_emphasis_open_underscore] = ACTIONS(4555), }, - [STATE(1470)] = { + [STATE(1473)] = { [sym__backslash_escape] = ACTIONS(4559), [sym_entity_reference] = ACTIONS(4559), [sym_numeric_character_reference] = ACTIONS(4559), @@ -147073,7 +147273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4559), [sym__strong_emphasis_open_underscore] = ACTIONS(4559), }, - [STATE(1471)] = { + [STATE(1474)] = { [sym__backslash_escape] = ACTIONS(4563), [sym_entity_reference] = ACTIONS(4563), [sym_numeric_character_reference] = ACTIONS(4563), @@ -147140,74 +147340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4563), [sym__strong_emphasis_open_underscore] = ACTIONS(4563), }, - [STATE(1472)] = { - [sym__backslash_escape] = ACTIONS(4567), - [sym_entity_reference] = ACTIONS(4567), - [sym_numeric_character_reference] = ACTIONS(4567), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4567), - [anon_sym_BANG] = ACTIONS(4567), - [anon_sym_DQUOTE] = ACTIONS(4567), - [anon_sym_POUND] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_COLON] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_QMARK] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4569), - [anon_sym_BSLASH] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym_BQUOTE] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_PIPE] = ACTIONS(4567), - [anon_sym_TILDE] = ACTIONS(4567), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [sym__newline_token] = ACTIONS(4567), - [aux_sym_insert_token1] = ACTIONS(4567), - [aux_sym_insert_token2] = ACTIONS(4567), - [aux_sym_delete_token1] = ACTIONS(4567), - [aux_sym_highlight_token1] = ACTIONS(4567), - [aux_sym_edit_comment_token1] = ACTIONS(4567), - [anon_sym_CARET_LBRACK] = ACTIONS(4567), - [anon_sym_LBRACK_CARET] = ACTIONS(4567), - [sym_uri_autolink] = ACTIONS(4567), - [sym_email_autolink] = ACTIONS(4567), - [sym__whitespace_ge_2] = ACTIONS(4569), - [aux_sym__whitespace_token1] = ACTIONS(4569), - [sym__word_no_digit] = ACTIONS(4567), - [sym__digits] = ACTIONS(4567), - [anon_sym_DASH_DASH] = ACTIONS(4569), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), - [sym__code_span_start] = ACTIONS(4567), - [sym__emphasis_open_star] = ACTIONS(4567), - [sym__emphasis_open_underscore] = ACTIONS(4567), - [sym__strikeout_open] = ACTIONS(4567), - [sym__latex_span_start] = ACTIONS(4567), - [sym__single_quote_open] = ACTIONS(4567), - [sym__double_quote_open] = ACTIONS(4567), - [sym__superscript_open] = ACTIONS(4567), - [sym__subscript_open] = ACTIONS(4567), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), - [sym__cite_author_in_text] = ACTIONS(4567), - [sym__cite_suppress_author] = ACTIONS(4567), - [sym__shortcode_open_escaped] = ACTIONS(4567), - [sym__shortcode_open] = ACTIONS(4567), - [sym__unclosed_span] = ACTIONS(4567), - [sym__strong_emphasis_open_star] = ACTIONS(4567), - [sym__strong_emphasis_open_underscore] = ACTIONS(4567), - }, - [STATE(1473)] = { + [STATE(1475)] = { [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -147274,74 +147407,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4225), [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, - [STATE(1474)] = { - [sym__backslash_escape] = ACTIONS(4599), - [sym_entity_reference] = ACTIONS(4599), - [sym_numeric_character_reference] = ACTIONS(4599), - [anon_sym_LT] = ACTIONS(4601), - [anon_sym_GT] = ACTIONS(4599), - [anon_sym_BANG] = ACTIONS(4599), - [anon_sym_DQUOTE] = ACTIONS(4599), - [anon_sym_POUND] = ACTIONS(4599), - [anon_sym_DOLLAR] = ACTIONS(4599), - [anon_sym_PERCENT] = ACTIONS(4599), - [anon_sym_AMP] = ACTIONS(4601), - [anon_sym_SQUOTE] = ACTIONS(4599), - [anon_sym_PLUS] = ACTIONS(4599), - [anon_sym_COMMA] = ACTIONS(4599), - [anon_sym_DASH] = ACTIONS(4601), - [anon_sym_DOT] = ACTIONS(4601), - [anon_sym_SLASH] = ACTIONS(4599), - [anon_sym_COLON] = ACTIONS(4599), - [anon_sym_SEMI] = ACTIONS(4599), - [anon_sym_EQ] = ACTIONS(4599), - [anon_sym_QMARK] = ACTIONS(4599), - [anon_sym_LBRACK] = ACTIONS(4601), - [anon_sym_BSLASH] = ACTIONS(4601), - [anon_sym_CARET] = ACTIONS(4601), - [anon_sym_BQUOTE] = ACTIONS(4599), - [anon_sym_LBRACE] = ACTIONS(4599), - [anon_sym_PIPE] = ACTIONS(4599), - [anon_sym_TILDE] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4599), - [anon_sym_RPAREN] = ACTIONS(4599), - [sym__newline_token] = ACTIONS(4599), - [aux_sym_insert_token1] = ACTIONS(4599), - [aux_sym_delete_token1] = ACTIONS(4599), - [aux_sym_highlight_token1] = ACTIONS(4599), - [aux_sym_edit_comment_token1] = ACTIONS(4599), - [anon_sym_CARET_LBRACK] = ACTIONS(4599), - [anon_sym_LBRACK_CARET] = ACTIONS(4599), - [sym_uri_autolink] = ACTIONS(4599), - [sym_email_autolink] = ACTIONS(4599), - [sym__whitespace_ge_2] = ACTIONS(4599), - [aux_sym__whitespace_token1] = ACTIONS(4601), - [sym__word_no_digit] = ACTIONS(4599), - [sym__digits] = ACTIONS(4599), - [anon_sym_DASH_DASH] = ACTIONS(4601), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4599), - [sym__code_span_start] = ACTIONS(4599), - [sym__emphasis_open_star] = ACTIONS(4599), - [sym__emphasis_open_underscore] = ACTIONS(4599), - [sym__emphasis_close_underscore] = ACTIONS(4599), - [sym__strikeout_open] = ACTIONS(4599), - [sym__latex_span_start] = ACTIONS(4599), - [sym__single_quote_open] = ACTIONS(4599), - [sym__double_quote_open] = ACTIONS(4599), - [sym__superscript_open] = ACTIONS(4599), - [sym__subscript_open] = ACTIONS(4599), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4599), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4599), - [sym__cite_author_in_text] = ACTIONS(4599), - [sym__cite_suppress_author] = ACTIONS(4599), - [sym__shortcode_open_escaped] = ACTIONS(4599), - [sym__shortcode_open] = ACTIONS(4599), - [sym__unclosed_span] = ACTIONS(4599), - [sym__strong_emphasis_open_star] = ACTIONS(4599), - [sym__strong_emphasis_open_underscore] = ACTIONS(4599), + [STATE(1476)] = { + [sym__backslash_escape] = ACTIONS(4619), + [sym_entity_reference] = ACTIONS(4619), + [sym_numeric_character_reference] = ACTIONS(4619), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_GT] = ACTIONS(4619), + [anon_sym_BANG] = ACTIONS(4619), + [anon_sym_DQUOTE] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4619), + [anon_sym_DOLLAR] = ACTIONS(4619), + [anon_sym_PERCENT] = ACTIONS(4619), + [anon_sym_AMP] = ACTIONS(4621), + [anon_sym_SQUOTE] = ACTIONS(4619), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_COMMA] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [anon_sym_LBRACK] = ACTIONS(4621), + [anon_sym_BSLASH] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4621), + [anon_sym_BQUOTE] = ACTIONS(4619), + [anon_sym_LBRACE] = ACTIONS(4619), + [anon_sym_PIPE] = ACTIONS(4619), + [anon_sym_TILDE] = ACTIONS(4619), + [anon_sym_LPAREN] = ACTIONS(4619), + [anon_sym_RPAREN] = ACTIONS(4619), + [sym__newline_token] = ACTIONS(4619), + [aux_sym_insert_token1] = ACTIONS(4619), + [aux_sym_delete_token1] = ACTIONS(4619), + [aux_sym_highlight_token1] = ACTIONS(4619), + [aux_sym_edit_comment_token1] = ACTIONS(4619), + [anon_sym_CARET_LBRACK] = ACTIONS(4619), + [anon_sym_LBRACK_CARET] = ACTIONS(4619), + [sym_uri_autolink] = ACTIONS(4619), + [sym_email_autolink] = ACTIONS(4619), + [sym__whitespace_ge_2] = ACTIONS(4619), + [aux_sym__whitespace_token1] = ACTIONS(4621), + [sym__word_no_digit] = ACTIONS(4619), + [sym__digits] = ACTIONS(4619), + [anon_sym_DASH_DASH] = ACTIONS(4621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4619), + [sym__code_span_start] = ACTIONS(4619), + [sym__emphasis_open_star] = ACTIONS(4619), + [sym__emphasis_open_underscore] = ACTIONS(4619), + [sym__emphasis_close_underscore] = ACTIONS(4619), + [sym__strikeout_open] = ACTIONS(4619), + [sym__latex_span_start] = ACTIONS(4619), + [sym__single_quote_open] = ACTIONS(4619), + [sym__double_quote_open] = ACTIONS(4619), + [sym__superscript_open] = ACTIONS(4619), + [sym__subscript_open] = ACTIONS(4619), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4619), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4619), + [sym__cite_author_in_text] = ACTIONS(4619), + [sym__cite_suppress_author] = ACTIONS(4619), + [sym__shortcode_open_escaped] = ACTIONS(4619), + [sym__shortcode_open] = ACTIONS(4619), + [sym__unclosed_span] = ACTIONS(4619), + [sym__strong_emphasis_open_star] = ACTIONS(4619), + [sym__strong_emphasis_open_underscore] = ACTIONS(4619), }, - [STATE(1475)] = { + [STATE(1477)] = { [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -147408,90 +147541,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4229), [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, - [STATE(1476)] = { - [sym__backslash_escape] = ACTIONS(4603), - [sym_entity_reference] = ACTIONS(4603), - [sym_numeric_character_reference] = ACTIONS(4603), - [anon_sym_LT] = ACTIONS(4605), - [anon_sym_GT] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(4603), - [anon_sym_DQUOTE] = ACTIONS(4603), - [anon_sym_POUND] = ACTIONS(4603), - [anon_sym_DOLLAR] = ACTIONS(4603), - [anon_sym_PERCENT] = ACTIONS(4603), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_SQUOTE] = ACTIONS(4603), - [anon_sym_PLUS] = ACTIONS(4603), - [anon_sym_COMMA] = ACTIONS(4603), - [anon_sym_DASH] = ACTIONS(4605), - [anon_sym_DOT] = ACTIONS(4605), - [anon_sym_SLASH] = ACTIONS(4603), - [anon_sym_COLON] = ACTIONS(4603), - [anon_sym_SEMI] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(4603), - [anon_sym_QMARK] = ACTIONS(4603), - [anon_sym_LBRACK] = ACTIONS(4605), - [anon_sym_BSLASH] = ACTIONS(4605), - [anon_sym_CARET] = ACTIONS(4605), - [anon_sym_BQUOTE] = ACTIONS(4603), - [anon_sym_LBRACE] = ACTIONS(4603), - [anon_sym_PIPE] = ACTIONS(4603), - [anon_sym_TILDE] = ACTIONS(4603), - [anon_sym_LPAREN] = ACTIONS(4603), - [anon_sym_RPAREN] = ACTIONS(4603), - [sym__newline_token] = ACTIONS(4603), - [aux_sym_insert_token1] = ACTIONS(4603), - [aux_sym_delete_token1] = ACTIONS(4603), - [aux_sym_highlight_token1] = ACTIONS(4603), - [aux_sym_edit_comment_token1] = ACTIONS(4603), - [anon_sym_CARET_LBRACK] = ACTIONS(4603), - [anon_sym_LBRACK_CARET] = ACTIONS(4603), - [sym_uri_autolink] = ACTIONS(4603), - [sym_email_autolink] = ACTIONS(4603), - [sym__whitespace_ge_2] = ACTIONS(4603), - [aux_sym__whitespace_token1] = ACTIONS(4605), - [sym__word_no_digit] = ACTIONS(4603), - [sym__digits] = ACTIONS(4603), - [anon_sym_DASH_DASH] = ACTIONS(4605), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4603), - [sym__code_span_start] = ACTIONS(4603), - [sym__emphasis_open_star] = ACTIONS(4603), - [sym__emphasis_open_underscore] = ACTIONS(4603), - [sym__emphasis_close_underscore] = ACTIONS(4603), - [sym__strikeout_open] = ACTIONS(4603), - [sym__latex_span_start] = ACTIONS(4603), - [sym__single_quote_open] = ACTIONS(4603), - [sym__double_quote_open] = ACTIONS(4603), - [sym__superscript_open] = ACTIONS(4603), - [sym__subscript_open] = ACTIONS(4603), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4603), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4603), - [sym__cite_author_in_text] = ACTIONS(4603), - [sym__cite_suppress_author] = ACTIONS(4603), - [sym__shortcode_open_escaped] = ACTIONS(4603), - [sym__shortcode_open] = ACTIONS(4603), - [sym__unclosed_span] = ACTIONS(4603), - [sym__strong_emphasis_open_star] = ACTIONS(4603), - [sym__strong_emphasis_open_underscore] = ACTIONS(4603), - }, - [STATE(1477)] = { - [sym__backslash_escape] = ACTIONS(4571), - [sym_entity_reference] = ACTIONS(4571), - [sym_numeric_character_reference] = ACTIONS(4571), - [anon_sym_LT] = ACTIONS(4573), - [anon_sym_GT] = ACTIONS(4571), - [anon_sym_BANG] = ACTIONS(4571), - [anon_sym_DQUOTE] = ACTIONS(4571), - [anon_sym_POUND] = ACTIONS(4571), - [anon_sym_DOLLAR] = ACTIONS(4571), - [anon_sym_PERCENT] = ACTIONS(4571), - [anon_sym_AMP] = ACTIONS(4573), - [anon_sym_SQUOTE] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4571), - [anon_sym_COMMA] = ACTIONS(4571), - [anon_sym_DASH] = ACTIONS(4573), - [anon_sym_DOT] = ACTIONS(4573), + [STATE(1478)] = { + [sym__backslash_escape] = ACTIONS(4623), + [sym_entity_reference] = ACTIONS(4623), + [sym_numeric_character_reference] = ACTIONS(4623), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_BANG] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4623), + [anon_sym_DOLLAR] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_AMP] = ACTIONS(4625), + [anon_sym_SQUOTE] = ACTIONS(4623), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_COMMA] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_BSLASH] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4625), + [anon_sym_BQUOTE] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4623), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_TILDE] = ACTIONS(4623), + [anon_sym_LPAREN] = ACTIONS(4623), + [anon_sym_RPAREN] = ACTIONS(4623), + [sym__newline_token] = ACTIONS(4623), + [aux_sym_insert_token1] = ACTIONS(4623), + [aux_sym_delete_token1] = ACTIONS(4623), + [aux_sym_highlight_token1] = ACTIONS(4623), + [aux_sym_edit_comment_token1] = ACTIONS(4623), + [anon_sym_CARET_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACK_CARET] = ACTIONS(4623), + [sym_uri_autolink] = ACTIONS(4623), + [sym_email_autolink] = ACTIONS(4623), + [sym__whitespace_ge_2] = ACTIONS(4623), + [aux_sym__whitespace_token1] = ACTIONS(4625), + [sym__word_no_digit] = ACTIONS(4623), + [sym__digits] = ACTIONS(4623), + [anon_sym_DASH_DASH] = ACTIONS(4625), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4623), + [sym__code_span_start] = ACTIONS(4623), + [sym__emphasis_open_star] = ACTIONS(4623), + [sym__emphasis_open_underscore] = ACTIONS(4623), + [sym__emphasis_close_underscore] = ACTIONS(4623), + [sym__strikeout_open] = ACTIONS(4623), + [sym__latex_span_start] = ACTIONS(4623), + [sym__single_quote_open] = ACTIONS(4623), + [sym__double_quote_open] = ACTIONS(4623), + [sym__superscript_open] = ACTIONS(4623), + [sym__subscript_open] = ACTIONS(4623), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4623), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4623), + [sym__cite_author_in_text] = ACTIONS(4623), + [sym__cite_suppress_author] = ACTIONS(4623), + [sym__shortcode_open_escaped] = ACTIONS(4623), + [sym__shortcode_open] = ACTIONS(4623), + [sym__unclosed_span] = ACTIONS(4623), + [sym__strong_emphasis_open_star] = ACTIONS(4623), + [sym__strong_emphasis_open_underscore] = ACTIONS(4623), + }, + [STATE(1479)] = { + [sym__backslash_escape] = ACTIONS(4567), + [sym_entity_reference] = ACTIONS(4567), + [sym_numeric_character_reference] = ACTIONS(4567), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_DQUOTE] = ACTIONS(4567), + [anon_sym_POUND] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_BSLASH] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym_BQUOTE] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(4567), + [anon_sym_TILDE] = ACTIONS(4567), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [sym__newline_token] = ACTIONS(4567), + [aux_sym_insert_token1] = ACTIONS(4567), + [aux_sym_insert_token2] = ACTIONS(4567), + [aux_sym_delete_token1] = ACTIONS(4567), + [aux_sym_highlight_token1] = ACTIONS(4567), + [aux_sym_edit_comment_token1] = ACTIONS(4567), + [anon_sym_CARET_LBRACK] = ACTIONS(4567), + [anon_sym_LBRACK_CARET] = ACTIONS(4567), + [sym_uri_autolink] = ACTIONS(4567), + [sym_email_autolink] = ACTIONS(4567), + [sym__whitespace_ge_2] = ACTIONS(4569), + [aux_sym__whitespace_token1] = ACTIONS(4569), + [sym__word_no_digit] = ACTIONS(4567), + [sym__digits] = ACTIONS(4567), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), + [sym__code_span_start] = ACTIONS(4567), + [sym__emphasis_open_star] = ACTIONS(4567), + [sym__emphasis_open_underscore] = ACTIONS(4567), + [sym__strikeout_open] = ACTIONS(4567), + [sym__latex_span_start] = ACTIONS(4567), + [sym__single_quote_open] = ACTIONS(4567), + [sym__double_quote_open] = ACTIONS(4567), + [sym__superscript_open] = ACTIONS(4567), + [sym__subscript_open] = ACTIONS(4567), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), + [sym__cite_author_in_text] = ACTIONS(4567), + [sym__cite_suppress_author] = ACTIONS(4567), + [sym__shortcode_open_escaped] = ACTIONS(4567), + [sym__shortcode_open] = ACTIONS(4567), + [sym__unclosed_span] = ACTIONS(4567), + [sym__strong_emphasis_open_star] = ACTIONS(4567), + [sym__strong_emphasis_open_underscore] = ACTIONS(4567), + }, + [STATE(1480)] = { + [sym__backslash_escape] = ACTIONS(4571), + [sym_entity_reference] = ACTIONS(4571), + [sym_numeric_character_reference] = ACTIONS(4571), + [anon_sym_LT] = ACTIONS(4573), + [anon_sym_GT] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4571), + [anon_sym_POUND] = ACTIONS(4571), + [anon_sym_DOLLAR] = ACTIONS(4571), + [anon_sym_PERCENT] = ACTIONS(4571), + [anon_sym_AMP] = ACTIONS(4573), + [anon_sym_SQUOTE] = ACTIONS(4571), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_COMMA] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4573), [anon_sym_SLASH] = ACTIONS(4571), [anon_sym_COLON] = ACTIONS(4571), [anon_sym_SEMI] = ACTIONS(4571), @@ -147542,74 +147742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4571), [sym__strong_emphasis_open_underscore] = ACTIONS(4571), }, - [STATE(1478)] = { - [sym__backslash_escape] = ACTIONS(4575), - [sym_entity_reference] = ACTIONS(4575), - [sym_numeric_character_reference] = ACTIONS(4575), - [anon_sym_LT] = ACTIONS(4577), - [anon_sym_GT] = ACTIONS(4575), - [anon_sym_BANG] = ACTIONS(4575), - [anon_sym_DQUOTE] = ACTIONS(4575), - [anon_sym_POUND] = ACTIONS(4575), - [anon_sym_DOLLAR] = ACTIONS(4575), - [anon_sym_PERCENT] = ACTIONS(4575), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_SQUOTE] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4575), - [anon_sym_COMMA] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4577), - [anon_sym_SLASH] = ACTIONS(4575), - [anon_sym_COLON] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4575), - [anon_sym_EQ] = ACTIONS(4575), - [anon_sym_QMARK] = ACTIONS(4575), - [anon_sym_LBRACK] = ACTIONS(4577), - [anon_sym_BSLASH] = ACTIONS(4577), - [anon_sym_CARET] = ACTIONS(4577), - [anon_sym_BQUOTE] = ACTIONS(4575), - [anon_sym_LBRACE] = ACTIONS(4575), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_TILDE] = ACTIONS(4575), - [anon_sym_LPAREN] = ACTIONS(4575), - [anon_sym_RPAREN] = ACTIONS(4575), - [sym__newline_token] = ACTIONS(4575), - [aux_sym_insert_token1] = ACTIONS(4575), - [aux_sym_insert_token2] = ACTIONS(4575), - [aux_sym_delete_token1] = ACTIONS(4575), - [aux_sym_highlight_token1] = ACTIONS(4575), - [aux_sym_edit_comment_token1] = ACTIONS(4575), - [anon_sym_CARET_LBRACK] = ACTIONS(4575), - [anon_sym_LBRACK_CARET] = ACTIONS(4575), - [sym_uri_autolink] = ACTIONS(4575), - [sym_email_autolink] = ACTIONS(4575), - [sym__whitespace_ge_2] = ACTIONS(4577), - [aux_sym__whitespace_token1] = ACTIONS(4577), - [sym__word_no_digit] = ACTIONS(4575), - [sym__digits] = ACTIONS(4575), - [anon_sym_DASH_DASH] = ACTIONS(4577), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), - [sym__code_span_start] = ACTIONS(4575), - [sym__emphasis_open_star] = ACTIONS(4575), - [sym__emphasis_open_underscore] = ACTIONS(4575), - [sym__strikeout_open] = ACTIONS(4575), - [sym__latex_span_start] = ACTIONS(4575), - [sym__single_quote_open] = ACTIONS(4575), - [sym__double_quote_open] = ACTIONS(4575), - [sym__superscript_open] = ACTIONS(4575), - [sym__subscript_open] = ACTIONS(4575), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), - [sym__cite_author_in_text] = ACTIONS(4575), - [sym__cite_suppress_author] = ACTIONS(4575), - [sym__shortcode_open_escaped] = ACTIONS(4575), - [sym__shortcode_open] = ACTIONS(4575), - [sym__unclosed_span] = ACTIONS(4575), - [sym__strong_emphasis_open_star] = ACTIONS(4575), - [sym__strong_emphasis_open_underscore] = ACTIONS(4575), - }, - [STATE(1479)] = { + [STATE(1481)] = { [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -147676,74 +147809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4233), [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, - [STATE(1480)] = { - [sym__backslash_escape] = ACTIONS(4607), - [sym_entity_reference] = ACTIONS(4607), - [sym_numeric_character_reference] = ACTIONS(4607), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(4607), - [anon_sym_DQUOTE] = ACTIONS(4607), - [anon_sym_POUND] = ACTIONS(4607), - [anon_sym_DOLLAR] = ACTIONS(4607), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_AMP] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4607), - [anon_sym_COLON] = ACTIONS(4607), - [anon_sym_SEMI] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_QMARK] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4609), - [anon_sym_BSLASH] = ACTIONS(4609), - [anon_sym_CARET] = ACTIONS(4609), - [anon_sym_BQUOTE] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [anon_sym_PIPE] = ACTIONS(4607), - [anon_sym_TILDE] = ACTIONS(4607), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_RPAREN] = ACTIONS(4607), - [sym__newline_token] = ACTIONS(4607), - [aux_sym_insert_token1] = ACTIONS(4607), - [aux_sym_delete_token1] = ACTIONS(4607), - [aux_sym_highlight_token1] = ACTIONS(4607), - [aux_sym_edit_comment_token1] = ACTIONS(4607), - [anon_sym_CARET_LBRACK] = ACTIONS(4607), - [anon_sym_LBRACK_CARET] = ACTIONS(4607), - [sym_uri_autolink] = ACTIONS(4607), - [sym_email_autolink] = ACTIONS(4607), - [sym__whitespace_ge_2] = ACTIONS(4607), - [aux_sym__whitespace_token1] = ACTIONS(4609), - [sym__word_no_digit] = ACTIONS(4607), - [sym__digits] = ACTIONS(4607), - [anon_sym_DASH_DASH] = ACTIONS(4609), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4607), - [sym__code_span_start] = ACTIONS(4607), - [sym__emphasis_open_star] = ACTIONS(4607), - [sym__emphasis_open_underscore] = ACTIONS(4607), - [sym__emphasis_close_underscore] = ACTIONS(4607), - [sym__strikeout_open] = ACTIONS(4607), - [sym__latex_span_start] = ACTIONS(4607), - [sym__single_quote_open] = ACTIONS(4607), - [sym__double_quote_open] = ACTIONS(4607), - [sym__superscript_open] = ACTIONS(4607), - [sym__subscript_open] = ACTIONS(4607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4607), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4607), - [sym__cite_author_in_text] = ACTIONS(4607), - [sym__cite_suppress_author] = ACTIONS(4607), - [sym__shortcode_open_escaped] = ACTIONS(4607), - [sym__shortcode_open] = ACTIONS(4607), - [sym__unclosed_span] = ACTIONS(4607), - [sym__strong_emphasis_open_star] = ACTIONS(4607), - [sym__strong_emphasis_open_underscore] = ACTIONS(4607), - }, - [STATE(1481)] = { + [STATE(1482)] = { [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -147810,74 +147876,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4237), [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, - [STATE(1482)] = { - [sym__backslash_escape] = ACTIONS(4611), - [sym_entity_reference] = ACTIONS(4611), - [sym_numeric_character_reference] = ACTIONS(4611), - [anon_sym_LT] = ACTIONS(4613), - [anon_sym_GT] = ACTIONS(4611), - [anon_sym_BANG] = ACTIONS(4611), - [anon_sym_DQUOTE] = ACTIONS(4611), - [anon_sym_POUND] = ACTIONS(4611), - [anon_sym_DOLLAR] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_AMP] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_DOT] = ACTIONS(4613), - [anon_sym_SLASH] = ACTIONS(4611), - [anon_sym_COLON] = ACTIONS(4611), - [anon_sym_SEMI] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_QMARK] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4613), - [anon_sym_BSLASH] = ACTIONS(4613), - [anon_sym_CARET] = ACTIONS(4613), - [anon_sym_BQUOTE] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(4611), - [anon_sym_PIPE] = ACTIONS(4611), - [anon_sym_TILDE] = ACTIONS(4611), - [anon_sym_LPAREN] = ACTIONS(4611), - [anon_sym_RPAREN] = ACTIONS(4611), - [sym__newline_token] = ACTIONS(4611), - [aux_sym_insert_token1] = ACTIONS(4611), - [aux_sym_delete_token1] = ACTIONS(4611), - [aux_sym_highlight_token1] = ACTIONS(4611), - [aux_sym_edit_comment_token1] = ACTIONS(4611), - [anon_sym_CARET_LBRACK] = ACTIONS(4611), - [anon_sym_LBRACK_CARET] = ACTIONS(4611), - [sym_uri_autolink] = ACTIONS(4611), - [sym_email_autolink] = ACTIONS(4611), - [sym__whitespace_ge_2] = ACTIONS(4611), - [aux_sym__whitespace_token1] = ACTIONS(4613), - [sym__word_no_digit] = ACTIONS(4611), - [sym__digits] = ACTIONS(4611), - [anon_sym_DASH_DASH] = ACTIONS(4613), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4611), - [sym__code_span_start] = ACTIONS(4611), - [sym__emphasis_open_star] = ACTIONS(4611), - [sym__emphasis_open_underscore] = ACTIONS(4611), - [sym__emphasis_close_underscore] = ACTIONS(4611), - [sym__strikeout_open] = ACTIONS(4611), - [sym__latex_span_start] = ACTIONS(4611), - [sym__single_quote_open] = ACTIONS(4611), - [sym__double_quote_open] = ACTIONS(4611), - [sym__superscript_open] = ACTIONS(4611), - [sym__subscript_open] = ACTIONS(4611), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4611), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4611), - [sym__cite_author_in_text] = ACTIONS(4611), - [sym__cite_suppress_author] = ACTIONS(4611), - [sym__shortcode_open_escaped] = ACTIONS(4611), - [sym__shortcode_open] = ACTIONS(4611), - [sym__unclosed_span] = ACTIONS(4611), - [sym__strong_emphasis_open_star] = ACTIONS(4611), - [sym__strong_emphasis_open_underscore] = ACTIONS(4611), - }, [STATE(1483)] = { + [sym__backslash_escape] = ACTIONS(4627), + [sym_entity_reference] = ACTIONS(4627), + [sym_numeric_character_reference] = ACTIONS(4627), + [anon_sym_LT] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4627), + [anon_sym_BANG] = ACTIONS(4627), + [anon_sym_DQUOTE] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4627), + [anon_sym_DOLLAR] = ACTIONS(4627), + [anon_sym_PERCENT] = ACTIONS(4627), + [anon_sym_AMP] = ACTIONS(4629), + [anon_sym_SQUOTE] = ACTIONS(4627), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_COMMA] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4629), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [anon_sym_LBRACK] = ACTIONS(4629), + [anon_sym_BSLASH] = ACTIONS(4629), + [anon_sym_CARET] = ACTIONS(4629), + [anon_sym_BQUOTE] = ACTIONS(4627), + [anon_sym_LBRACE] = ACTIONS(4627), + [anon_sym_PIPE] = ACTIONS(4627), + [anon_sym_TILDE] = ACTIONS(4627), + [anon_sym_LPAREN] = ACTIONS(4627), + [anon_sym_RPAREN] = ACTIONS(4627), + [sym__newline_token] = ACTIONS(4627), + [aux_sym_insert_token1] = ACTIONS(4627), + [aux_sym_delete_token1] = ACTIONS(4627), + [aux_sym_highlight_token1] = ACTIONS(4627), + [aux_sym_edit_comment_token1] = ACTIONS(4627), + [anon_sym_CARET_LBRACK] = ACTIONS(4627), + [anon_sym_LBRACK_CARET] = ACTIONS(4627), + [sym_uri_autolink] = ACTIONS(4627), + [sym_email_autolink] = ACTIONS(4627), + [sym__whitespace_ge_2] = ACTIONS(4627), + [aux_sym__whitespace_token1] = ACTIONS(4629), + [sym__word_no_digit] = ACTIONS(4627), + [sym__digits] = ACTIONS(4627), + [anon_sym_DASH_DASH] = ACTIONS(4629), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4627), + [sym__code_span_start] = ACTIONS(4627), + [sym__emphasis_open_star] = ACTIONS(4627), + [sym__emphasis_open_underscore] = ACTIONS(4627), + [sym__emphasis_close_underscore] = ACTIONS(4627), + [sym__strikeout_open] = ACTIONS(4627), + [sym__latex_span_start] = ACTIONS(4627), + [sym__single_quote_open] = ACTIONS(4627), + [sym__double_quote_open] = ACTIONS(4627), + [sym__superscript_open] = ACTIONS(4627), + [sym__subscript_open] = ACTIONS(4627), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4627), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4627), + [sym__cite_author_in_text] = ACTIONS(4627), + [sym__cite_suppress_author] = ACTIONS(4627), + [sym__shortcode_open_escaped] = ACTIONS(4627), + [sym__shortcode_open] = ACTIONS(4627), + [sym__unclosed_span] = ACTIONS(4627), + [sym__strong_emphasis_open_star] = ACTIONS(4627), + [sym__strong_emphasis_open_underscore] = ACTIONS(4627), + }, + [STATE(1484)] = { [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -147944,74 +148010,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4241), [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, - [STATE(1484)] = { - [sym__backslash_escape] = ACTIONS(4615), - [sym_entity_reference] = ACTIONS(4615), - [sym_numeric_character_reference] = ACTIONS(4615), - [anon_sym_LT] = ACTIONS(4617), - [anon_sym_GT] = ACTIONS(4615), - [anon_sym_BANG] = ACTIONS(4615), - [anon_sym_DQUOTE] = ACTIONS(4615), - [anon_sym_POUND] = ACTIONS(4615), - [anon_sym_DOLLAR] = ACTIONS(4615), - [anon_sym_PERCENT] = ACTIONS(4615), - [anon_sym_AMP] = ACTIONS(4617), - [anon_sym_SQUOTE] = ACTIONS(4615), - [anon_sym_PLUS] = ACTIONS(4615), - [anon_sym_COMMA] = ACTIONS(4615), - [anon_sym_DASH] = ACTIONS(4617), - [anon_sym_DOT] = ACTIONS(4617), - [anon_sym_SLASH] = ACTIONS(4615), - [anon_sym_COLON] = ACTIONS(4615), - [anon_sym_SEMI] = ACTIONS(4615), - [anon_sym_EQ] = ACTIONS(4615), - [anon_sym_QMARK] = ACTIONS(4615), - [anon_sym_LBRACK] = ACTIONS(4617), - [anon_sym_BSLASH] = ACTIONS(4617), - [anon_sym_CARET] = ACTIONS(4617), - [anon_sym_BQUOTE] = ACTIONS(4615), - [anon_sym_LBRACE] = ACTIONS(4615), - [anon_sym_PIPE] = ACTIONS(4615), - [anon_sym_TILDE] = ACTIONS(4615), - [anon_sym_LPAREN] = ACTIONS(4615), - [anon_sym_RPAREN] = ACTIONS(4615), - [sym__newline_token] = ACTIONS(4615), - [aux_sym_insert_token1] = ACTIONS(4615), - [aux_sym_delete_token1] = ACTIONS(4615), - [aux_sym_highlight_token1] = ACTIONS(4615), - [aux_sym_edit_comment_token1] = ACTIONS(4615), - [anon_sym_CARET_LBRACK] = ACTIONS(4615), - [anon_sym_LBRACK_CARET] = ACTIONS(4615), - [sym_uri_autolink] = ACTIONS(4615), - [sym_email_autolink] = ACTIONS(4615), - [sym__whitespace_ge_2] = ACTIONS(4615), - [aux_sym__whitespace_token1] = ACTIONS(4617), - [sym__word_no_digit] = ACTIONS(4615), - [sym__digits] = ACTIONS(4615), - [anon_sym_DASH_DASH] = ACTIONS(4617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4615), - [sym__code_span_start] = ACTIONS(4615), - [sym__emphasis_open_star] = ACTIONS(4615), - [sym__emphasis_open_underscore] = ACTIONS(4615), - [sym__emphasis_close_underscore] = ACTIONS(4615), - [sym__strikeout_open] = ACTIONS(4615), - [sym__latex_span_start] = ACTIONS(4615), - [sym__single_quote_open] = ACTIONS(4615), - [sym__double_quote_open] = ACTIONS(4615), - [sym__superscript_open] = ACTIONS(4615), - [sym__subscript_open] = ACTIONS(4615), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4615), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4615), - [sym__cite_author_in_text] = ACTIONS(4615), - [sym__cite_suppress_author] = ACTIONS(4615), - [sym__shortcode_open_escaped] = ACTIONS(4615), - [sym__shortcode_open] = ACTIONS(4615), - [sym__unclosed_span] = ACTIONS(4615), - [sym__strong_emphasis_open_star] = ACTIONS(4615), - [sym__strong_emphasis_open_underscore] = ACTIONS(4615), - }, [STATE(1485)] = { + [sym__backslash_escape] = ACTIONS(4631), + [sym_entity_reference] = ACTIONS(4631), + [sym_numeric_character_reference] = ACTIONS(4631), + [anon_sym_LT] = ACTIONS(4633), + [anon_sym_GT] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(4631), + [anon_sym_DQUOTE] = ACTIONS(4631), + [anon_sym_POUND] = ACTIONS(4631), + [anon_sym_DOLLAR] = ACTIONS(4631), + [anon_sym_PERCENT] = ACTIONS(4631), + [anon_sym_AMP] = ACTIONS(4633), + [anon_sym_SQUOTE] = ACTIONS(4631), + [anon_sym_PLUS] = ACTIONS(4631), + [anon_sym_COMMA] = ACTIONS(4631), + [anon_sym_DASH] = ACTIONS(4633), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_SLASH] = ACTIONS(4631), + [anon_sym_COLON] = ACTIONS(4631), + [anon_sym_SEMI] = ACTIONS(4631), + [anon_sym_EQ] = ACTIONS(4631), + [anon_sym_QMARK] = ACTIONS(4631), + [anon_sym_LBRACK] = ACTIONS(4633), + [anon_sym_BSLASH] = ACTIONS(4633), + [anon_sym_CARET] = ACTIONS(4633), + [anon_sym_BQUOTE] = ACTIONS(4631), + [anon_sym_LBRACE] = ACTIONS(4631), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_TILDE] = ACTIONS(4631), + [anon_sym_LPAREN] = ACTIONS(4631), + [anon_sym_RPAREN] = ACTIONS(4631), + [sym__newline_token] = ACTIONS(4631), + [aux_sym_insert_token1] = ACTIONS(4631), + [aux_sym_delete_token1] = ACTIONS(4631), + [aux_sym_highlight_token1] = ACTIONS(4631), + [aux_sym_edit_comment_token1] = ACTIONS(4631), + [anon_sym_CARET_LBRACK] = ACTIONS(4631), + [anon_sym_LBRACK_CARET] = ACTIONS(4631), + [sym_uri_autolink] = ACTIONS(4631), + [sym_email_autolink] = ACTIONS(4631), + [sym__whitespace_ge_2] = ACTIONS(4631), + [aux_sym__whitespace_token1] = ACTIONS(4633), + [sym__word_no_digit] = ACTIONS(4631), + [sym__digits] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4633), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4631), + [sym__code_span_start] = ACTIONS(4631), + [sym__emphasis_open_star] = ACTIONS(4631), + [sym__emphasis_open_underscore] = ACTIONS(4631), + [sym__emphasis_close_underscore] = ACTIONS(4631), + [sym__strikeout_open] = ACTIONS(4631), + [sym__latex_span_start] = ACTIONS(4631), + [sym__single_quote_open] = ACTIONS(4631), + [sym__double_quote_open] = ACTIONS(4631), + [sym__superscript_open] = ACTIONS(4631), + [sym__subscript_open] = ACTIONS(4631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4631), + [sym__cite_author_in_text] = ACTIONS(4631), + [sym__cite_suppress_author] = ACTIONS(4631), + [sym__shortcode_open_escaped] = ACTIONS(4631), + [sym__shortcode_open] = ACTIONS(4631), + [sym__unclosed_span] = ACTIONS(4631), + [sym__strong_emphasis_open_star] = ACTIONS(4631), + [sym__strong_emphasis_open_underscore] = ACTIONS(4631), + }, + [STATE(1486)] = { [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -148078,74 +148144,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4245), [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, - [STATE(1486)] = { - [sym__backslash_escape] = ACTIONS(4619), - [sym_entity_reference] = ACTIONS(4619), - [sym_numeric_character_reference] = ACTIONS(4619), - [anon_sym_LT] = ACTIONS(4621), - [anon_sym_GT] = ACTIONS(4619), - [anon_sym_BANG] = ACTIONS(4619), - [anon_sym_DQUOTE] = ACTIONS(4619), - [anon_sym_POUND] = ACTIONS(4619), - [anon_sym_DOLLAR] = ACTIONS(4619), - [anon_sym_PERCENT] = ACTIONS(4619), - [anon_sym_AMP] = ACTIONS(4621), - [anon_sym_SQUOTE] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4619), - [anon_sym_COMMA] = ACTIONS(4619), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_DOT] = ACTIONS(4621), - [anon_sym_SLASH] = ACTIONS(4619), - [anon_sym_COLON] = ACTIONS(4619), - [anon_sym_SEMI] = ACTIONS(4619), - [anon_sym_EQ] = ACTIONS(4619), - [anon_sym_QMARK] = ACTIONS(4619), - [anon_sym_LBRACK] = ACTIONS(4621), - [anon_sym_BSLASH] = ACTIONS(4621), - [anon_sym_CARET] = ACTIONS(4621), - [anon_sym_BQUOTE] = ACTIONS(4619), - [anon_sym_LBRACE] = ACTIONS(4619), - [anon_sym_PIPE] = ACTIONS(4619), - [anon_sym_TILDE] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(4619), - [anon_sym_RPAREN] = ACTIONS(4619), - [sym__newline_token] = ACTIONS(4619), - [aux_sym_insert_token1] = ACTIONS(4619), - [aux_sym_delete_token1] = ACTIONS(4619), - [aux_sym_highlight_token1] = ACTIONS(4619), - [aux_sym_edit_comment_token1] = ACTIONS(4619), - [anon_sym_CARET_LBRACK] = ACTIONS(4619), - [anon_sym_LBRACK_CARET] = ACTIONS(4619), - [sym_uri_autolink] = ACTIONS(4619), - [sym_email_autolink] = ACTIONS(4619), - [sym__whitespace_ge_2] = ACTIONS(4619), - [aux_sym__whitespace_token1] = ACTIONS(4621), - [sym__word_no_digit] = ACTIONS(4619), - [sym__digits] = ACTIONS(4619), - [anon_sym_DASH_DASH] = ACTIONS(4621), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4619), - [sym__code_span_start] = ACTIONS(4619), - [sym__emphasis_open_star] = ACTIONS(4619), - [sym__emphasis_open_underscore] = ACTIONS(4619), - [sym__emphasis_close_underscore] = ACTIONS(4619), - [sym__strikeout_open] = ACTIONS(4619), - [sym__latex_span_start] = ACTIONS(4619), - [sym__single_quote_open] = ACTIONS(4619), - [sym__double_quote_open] = ACTIONS(4619), - [sym__superscript_open] = ACTIONS(4619), - [sym__subscript_open] = ACTIONS(4619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4619), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4619), - [sym__cite_author_in_text] = ACTIONS(4619), - [sym__cite_suppress_author] = ACTIONS(4619), - [sym__shortcode_open_escaped] = ACTIONS(4619), - [sym__shortcode_open] = ACTIONS(4619), - [sym__unclosed_span] = ACTIONS(4619), - [sym__strong_emphasis_open_star] = ACTIONS(4619), - [sym__strong_emphasis_open_underscore] = ACTIONS(4619), - }, [STATE(1487)] = { + [sym__backslash_escape] = ACTIONS(4635), + [sym_entity_reference] = ACTIONS(4635), + [sym_numeric_character_reference] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4637), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4635), + [anon_sym_POUND] = ACTIONS(4635), + [anon_sym_DOLLAR] = ACTIONS(4635), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_AMP] = ACTIONS(4637), + [anon_sym_SQUOTE] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(4635), + [anon_sym_DASH] = ACTIONS(4637), + [anon_sym_DOT] = ACTIONS(4637), + [anon_sym_SLASH] = ACTIONS(4635), + [anon_sym_COLON] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_QMARK] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_BSLASH] = ACTIONS(4637), + [anon_sym_CARET] = ACTIONS(4637), + [anon_sym_BQUOTE] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_TILDE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_RPAREN] = ACTIONS(4635), + [sym__newline_token] = ACTIONS(4635), + [aux_sym_insert_token1] = ACTIONS(4635), + [aux_sym_delete_token1] = ACTIONS(4635), + [aux_sym_highlight_token1] = ACTIONS(4635), + [aux_sym_edit_comment_token1] = ACTIONS(4635), + [anon_sym_CARET_LBRACK] = ACTIONS(4635), + [anon_sym_LBRACK_CARET] = ACTIONS(4635), + [sym_uri_autolink] = ACTIONS(4635), + [sym_email_autolink] = ACTIONS(4635), + [sym__whitespace_ge_2] = ACTIONS(4635), + [aux_sym__whitespace_token1] = ACTIONS(4637), + [sym__word_no_digit] = ACTIONS(4635), + [sym__digits] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4635), + [sym__code_span_start] = ACTIONS(4635), + [sym__emphasis_open_star] = ACTIONS(4635), + [sym__emphasis_open_underscore] = ACTIONS(4635), + [sym__emphasis_close_star] = ACTIONS(4635), + [sym__strikeout_open] = ACTIONS(4635), + [sym__latex_span_start] = ACTIONS(4635), + [sym__single_quote_open] = ACTIONS(4635), + [sym__double_quote_open] = ACTIONS(4635), + [sym__superscript_open] = ACTIONS(4635), + [sym__subscript_open] = ACTIONS(4635), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4635), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4635), + [sym__cite_author_in_text] = ACTIONS(4635), + [sym__cite_suppress_author] = ACTIONS(4635), + [sym__shortcode_open_escaped] = ACTIONS(4635), + [sym__shortcode_open] = ACTIONS(4635), + [sym__unclosed_span] = ACTIONS(4635), + [sym__strong_emphasis_open_star] = ACTIONS(4635), + [sym__strong_emphasis_open_underscore] = ACTIONS(4635), + }, + [STATE(1488)] = { + [sym__backslash_escape] = ACTIONS(4575), + [sym_entity_reference] = ACTIONS(4575), + [sym_numeric_character_reference] = ACTIONS(4575), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4575), + [anon_sym_DQUOTE] = ACTIONS(4575), + [anon_sym_POUND] = ACTIONS(4575), + [anon_sym_DOLLAR] = ACTIONS(4575), + [anon_sym_PERCENT] = ACTIONS(4575), + [anon_sym_AMP] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4575), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_EQ] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4577), + [anon_sym_BSLASH] = ACTIONS(4577), + [anon_sym_CARET] = ACTIONS(4577), + [anon_sym_BQUOTE] = ACTIONS(4575), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_PIPE] = ACTIONS(4575), + [anon_sym_TILDE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_RPAREN] = ACTIONS(4575), + [sym__newline_token] = ACTIONS(4575), + [aux_sym_insert_token1] = ACTIONS(4575), + [aux_sym_insert_token2] = ACTIONS(4575), + [aux_sym_delete_token1] = ACTIONS(4575), + [aux_sym_highlight_token1] = ACTIONS(4575), + [aux_sym_edit_comment_token1] = ACTIONS(4575), + [anon_sym_CARET_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_CARET] = ACTIONS(4575), + [sym_uri_autolink] = ACTIONS(4575), + [sym_email_autolink] = ACTIONS(4575), + [sym__whitespace_ge_2] = ACTIONS(4577), + [aux_sym__whitespace_token1] = ACTIONS(4577), + [sym__word_no_digit] = ACTIONS(4575), + [sym__digits] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4577), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), + [sym__code_span_start] = ACTIONS(4575), + [sym__emphasis_open_star] = ACTIONS(4575), + [sym__emphasis_open_underscore] = ACTIONS(4575), + [sym__strikeout_open] = ACTIONS(4575), + [sym__latex_span_start] = ACTIONS(4575), + [sym__single_quote_open] = ACTIONS(4575), + [sym__double_quote_open] = ACTIONS(4575), + [sym__superscript_open] = ACTIONS(4575), + [sym__subscript_open] = ACTIONS(4575), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), + [sym__cite_author_in_text] = ACTIONS(4575), + [sym__cite_suppress_author] = ACTIONS(4575), + [sym__shortcode_open_escaped] = ACTIONS(4575), + [sym__shortcode_open] = ACTIONS(4575), + [sym__unclosed_span] = ACTIONS(4575), + [sym__strong_emphasis_open_star] = ACTIONS(4575), + [sym__strong_emphasis_open_underscore] = ACTIONS(4575), + }, + [STATE(1489)] = { [sym__backslash_escape] = ACTIONS(4579), [sym_entity_reference] = ACTIONS(4579), [sym_numeric_character_reference] = ACTIONS(4579), @@ -148212,7 +148345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4579), [sym__strong_emphasis_open_underscore] = ACTIONS(4579), }, - [STATE(1488)] = { + [STATE(1490)] = { [sym__backslash_escape] = ACTIONS(4583), [sym_entity_reference] = ACTIONS(4583), [sym_numeric_character_reference] = ACTIONS(4583), @@ -148279,208 +148412,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4583), [sym__strong_emphasis_open_underscore] = ACTIONS(4583), }, - [STATE(1489)] = { - [sym__backslash_escape] = ACTIONS(4587), - [sym_entity_reference] = ACTIONS(4587), - [sym_numeric_character_reference] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4589), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_DQUOTE] = ACTIONS(4587), - [anon_sym_POUND] = ACTIONS(4587), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_AMP] = ACTIONS(4589), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_COMMA] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_QMARK] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_BSLASH] = ACTIONS(4589), - [anon_sym_CARET] = ACTIONS(4589), - [anon_sym_BQUOTE] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_TILDE] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4587), - [anon_sym_RPAREN] = ACTIONS(4587), - [sym__newline_token] = ACTIONS(4587), - [aux_sym_insert_token1] = ACTIONS(4587), - [aux_sym_insert_token2] = ACTIONS(4587), - [aux_sym_delete_token1] = ACTIONS(4587), - [aux_sym_highlight_token1] = ACTIONS(4587), - [aux_sym_edit_comment_token1] = ACTIONS(4587), - [anon_sym_CARET_LBRACK] = ACTIONS(4587), - [anon_sym_LBRACK_CARET] = ACTIONS(4587), - [sym_uri_autolink] = ACTIONS(4587), - [sym_email_autolink] = ACTIONS(4587), - [sym__whitespace_ge_2] = ACTIONS(4589), - [aux_sym__whitespace_token1] = ACTIONS(4589), - [sym__word_no_digit] = ACTIONS(4587), - [sym__digits] = ACTIONS(4587), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), - [sym__code_span_start] = ACTIONS(4587), - [sym__emphasis_open_star] = ACTIONS(4587), - [sym__emphasis_open_underscore] = ACTIONS(4587), - [sym__strikeout_open] = ACTIONS(4587), - [sym__latex_span_start] = ACTIONS(4587), - [sym__single_quote_open] = ACTIONS(4587), - [sym__double_quote_open] = ACTIONS(4587), - [sym__superscript_open] = ACTIONS(4587), - [sym__subscript_open] = ACTIONS(4587), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), - [sym__cite_author_in_text] = ACTIONS(4587), - [sym__cite_suppress_author] = ACTIONS(4587), - [sym__shortcode_open_escaped] = ACTIONS(4587), - [sym__shortcode_open] = ACTIONS(4587), - [sym__unclosed_span] = ACTIONS(4587), - [sym__strong_emphasis_open_star] = ACTIONS(4587), - [sym__strong_emphasis_open_underscore] = ACTIONS(4587), - }, - [STATE(1490)] = { - [sym__backslash_escape] = ACTIONS(4623), - [sym_entity_reference] = ACTIONS(4623), - [sym_numeric_character_reference] = ACTIONS(4623), - [anon_sym_LT] = ACTIONS(4625), - [anon_sym_GT] = ACTIONS(4623), - [anon_sym_BANG] = ACTIONS(4623), - [anon_sym_DQUOTE] = ACTIONS(4623), - [anon_sym_POUND] = ACTIONS(4623), - [anon_sym_DOLLAR] = ACTIONS(4623), - [anon_sym_PERCENT] = ACTIONS(4623), - [anon_sym_AMP] = ACTIONS(4625), - [anon_sym_SQUOTE] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4623), - [anon_sym_COMMA] = ACTIONS(4623), - [anon_sym_DASH] = ACTIONS(4625), - [anon_sym_DOT] = ACTIONS(4625), - [anon_sym_SLASH] = ACTIONS(4623), - [anon_sym_COLON] = ACTIONS(4623), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_EQ] = ACTIONS(4623), - [anon_sym_QMARK] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4625), - [anon_sym_BSLASH] = ACTIONS(4625), - [anon_sym_CARET] = ACTIONS(4625), - [anon_sym_BQUOTE] = ACTIONS(4623), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_PIPE] = ACTIONS(4623), - [anon_sym_TILDE] = ACTIONS(4623), - [anon_sym_LPAREN] = ACTIONS(4623), - [anon_sym_RPAREN] = ACTIONS(4623), - [sym__newline_token] = ACTIONS(4623), - [aux_sym_insert_token1] = ACTIONS(4623), - [aux_sym_delete_token1] = ACTIONS(4623), - [aux_sym_highlight_token1] = ACTIONS(4623), - [aux_sym_edit_comment_token1] = ACTIONS(4623), - [anon_sym_CARET_LBRACK] = ACTIONS(4623), - [anon_sym_LBRACK_CARET] = ACTIONS(4623), - [sym_uri_autolink] = ACTIONS(4623), - [sym_email_autolink] = ACTIONS(4623), - [sym__whitespace_ge_2] = ACTIONS(4623), - [aux_sym__whitespace_token1] = ACTIONS(4625), - [sym__word_no_digit] = ACTIONS(4623), - [sym__digits] = ACTIONS(4623), - [anon_sym_DASH_DASH] = ACTIONS(4625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4623), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4623), - [sym__code_span_start] = ACTIONS(4623), - [sym__emphasis_open_star] = ACTIONS(4623), - [sym__emphasis_open_underscore] = ACTIONS(4623), - [sym__emphasis_close_underscore] = ACTIONS(4623), - [sym__strikeout_open] = ACTIONS(4623), - [sym__latex_span_start] = ACTIONS(4623), - [sym__single_quote_open] = ACTIONS(4623), - [sym__double_quote_open] = ACTIONS(4623), - [sym__superscript_open] = ACTIONS(4623), - [sym__subscript_open] = ACTIONS(4623), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4623), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4623), - [sym__cite_author_in_text] = ACTIONS(4623), - [sym__cite_suppress_author] = ACTIONS(4623), - [sym__shortcode_open_escaped] = ACTIONS(4623), - [sym__shortcode_open] = ACTIONS(4623), - [sym__unclosed_span] = ACTIONS(4623), - [sym__strong_emphasis_open_star] = ACTIONS(4623), - [sym__strong_emphasis_open_underscore] = ACTIONS(4623), - }, [STATE(1491)] = { - [sym__backslash_escape] = ACTIONS(4627), - [sym_entity_reference] = ACTIONS(4627), - [sym_numeric_character_reference] = ACTIONS(4627), - [anon_sym_LT] = ACTIONS(4629), - [anon_sym_GT] = ACTIONS(4627), - [anon_sym_BANG] = ACTIONS(4627), - [anon_sym_DQUOTE] = ACTIONS(4627), - [anon_sym_POUND] = ACTIONS(4627), - [anon_sym_DOLLAR] = ACTIONS(4627), - [anon_sym_PERCENT] = ACTIONS(4627), - [anon_sym_AMP] = ACTIONS(4629), - [anon_sym_SQUOTE] = ACTIONS(4627), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_SLASH] = ACTIONS(4627), - [anon_sym_COLON] = ACTIONS(4627), - [anon_sym_SEMI] = ACTIONS(4627), - [anon_sym_EQ] = ACTIONS(4627), - [anon_sym_QMARK] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4629), - [anon_sym_BSLASH] = ACTIONS(4629), - [anon_sym_CARET] = ACTIONS(4629), - [anon_sym_BQUOTE] = ACTIONS(4627), - [anon_sym_LBRACE] = ACTIONS(4627), - [anon_sym_PIPE] = ACTIONS(4627), - [anon_sym_TILDE] = ACTIONS(4627), - [anon_sym_LPAREN] = ACTIONS(4627), - [anon_sym_RPAREN] = ACTIONS(4627), - [sym__newline_token] = ACTIONS(4627), - [aux_sym_insert_token1] = ACTIONS(4627), - [aux_sym_delete_token1] = ACTIONS(4627), - [aux_sym_highlight_token1] = ACTIONS(4627), - [aux_sym_edit_comment_token1] = ACTIONS(4627), - [anon_sym_CARET_LBRACK] = ACTIONS(4627), - [anon_sym_LBRACK_CARET] = ACTIONS(4627), - [sym_uri_autolink] = ACTIONS(4627), - [sym_email_autolink] = ACTIONS(4627), - [sym__whitespace_ge_2] = ACTIONS(4627), - [aux_sym__whitespace_token1] = ACTIONS(4629), - [sym__word_no_digit] = ACTIONS(4627), - [sym__digits] = ACTIONS(4627), - [anon_sym_DASH_DASH] = ACTIONS(4629), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4627), - [sym__code_span_start] = ACTIONS(4627), - [sym__emphasis_open_star] = ACTIONS(4627), - [sym__emphasis_open_underscore] = ACTIONS(4627), - [sym__emphasis_close_underscore] = ACTIONS(4627), - [sym__strikeout_open] = ACTIONS(4627), - [sym__latex_span_start] = ACTIONS(4627), - [sym__single_quote_open] = ACTIONS(4627), - [sym__double_quote_open] = ACTIONS(4627), - [sym__superscript_open] = ACTIONS(4627), - [sym__subscript_open] = ACTIONS(4627), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4627), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4627), - [sym__cite_author_in_text] = ACTIONS(4627), - [sym__cite_suppress_author] = ACTIONS(4627), - [sym__shortcode_open_escaped] = ACTIONS(4627), - [sym__shortcode_open] = ACTIONS(4627), - [sym__unclosed_span] = ACTIONS(4627), - [sym__strong_emphasis_open_star] = ACTIONS(4627), - [sym__strong_emphasis_open_underscore] = ACTIONS(4627), + [ts_builtin_sym_end] = ACTIONS(4695), + [sym__backslash_escape] = ACTIONS(4695), + [sym_entity_reference] = ACTIONS(4695), + [sym_numeric_character_reference] = ACTIONS(4695), + [anon_sym_LT] = ACTIONS(4697), + [anon_sym_GT] = ACTIONS(4695), + [anon_sym_BANG] = ACTIONS(4695), + [anon_sym_DQUOTE] = ACTIONS(4695), + [anon_sym_POUND] = ACTIONS(4695), + [anon_sym_DOLLAR] = ACTIONS(4695), + [anon_sym_PERCENT] = ACTIONS(4695), + [anon_sym_AMP] = ACTIONS(4697), + [anon_sym_SQUOTE] = ACTIONS(4695), + [anon_sym_PLUS] = ACTIONS(4695), + [anon_sym_COMMA] = ACTIONS(4695), + [anon_sym_DASH] = ACTIONS(4697), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_SLASH] = ACTIONS(4695), + [anon_sym_COLON] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4695), + [anon_sym_EQ] = ACTIONS(4695), + [anon_sym_QMARK] = ACTIONS(4695), + [anon_sym_LBRACK] = ACTIONS(4697), + [anon_sym_BSLASH] = ACTIONS(4697), + [anon_sym_CARET] = ACTIONS(4697), + [anon_sym_BQUOTE] = ACTIONS(4695), + [anon_sym_LBRACE] = ACTIONS(4695), + [anon_sym_PIPE] = ACTIONS(4695), + [anon_sym_TILDE] = ACTIONS(4695), + [anon_sym_LPAREN] = ACTIONS(4695), + [anon_sym_RPAREN] = ACTIONS(4695), + [sym__newline_token] = ACTIONS(4695), + [aux_sym_insert_token1] = ACTIONS(4695), + [aux_sym_delete_token1] = ACTIONS(4695), + [aux_sym_highlight_token1] = ACTIONS(4695), + [aux_sym_edit_comment_token1] = ACTIONS(4695), + [anon_sym_CARET_LBRACK] = ACTIONS(4695), + [anon_sym_LBRACK_CARET] = ACTIONS(4695), + [sym_uri_autolink] = ACTIONS(4695), + [sym_email_autolink] = ACTIONS(4695), + [sym__whitespace_ge_2] = ACTIONS(4695), + [aux_sym__whitespace_token1] = ACTIONS(4697), + [sym__word_no_digit] = ACTIONS(4695), + [sym__digits] = ACTIONS(4695), + [anon_sym_DASH_DASH] = ACTIONS(4697), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4695), + [sym__code_span_start] = ACTIONS(4695), + [sym__emphasis_open_star] = ACTIONS(4695), + [sym__emphasis_open_underscore] = ACTIONS(4695), + [sym__strikeout_open] = ACTIONS(4695), + [sym__latex_span_start] = ACTIONS(4695), + [sym__single_quote_open] = ACTIONS(4695), + [sym__double_quote_open] = ACTIONS(4695), + [sym__superscript_open] = ACTIONS(4695), + [sym__subscript_open] = ACTIONS(4695), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4695), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4695), + [sym__cite_author_in_text] = ACTIONS(4695), + [sym__cite_suppress_author] = ACTIONS(4695), + [sym__shortcode_open_escaped] = ACTIONS(4695), + [sym__shortcode_open] = ACTIONS(4695), + [sym__unclosed_span] = ACTIONS(4695), + [sym__strong_emphasis_open_star] = ACTIONS(4695), + [sym__strong_emphasis_open_underscore] = ACTIONS(4695), }, [STATE(1492)] = { + [ts_builtin_sym_end] = ACTIONS(4699), + [sym__backslash_escape] = ACTIONS(4699), + [sym_entity_reference] = ACTIONS(4699), + [sym_numeric_character_reference] = ACTIONS(4699), + [anon_sym_LT] = ACTIONS(4701), + [anon_sym_GT] = ACTIONS(4699), + [anon_sym_BANG] = ACTIONS(4699), + [anon_sym_DQUOTE] = ACTIONS(4699), + [anon_sym_POUND] = ACTIONS(4699), + [anon_sym_DOLLAR] = ACTIONS(4699), + [anon_sym_PERCENT] = ACTIONS(4699), + [anon_sym_AMP] = ACTIONS(4701), + [anon_sym_SQUOTE] = ACTIONS(4699), + [anon_sym_PLUS] = ACTIONS(4699), + [anon_sym_COMMA] = ACTIONS(4699), + [anon_sym_DASH] = ACTIONS(4701), + [anon_sym_DOT] = ACTIONS(4701), + [anon_sym_SLASH] = ACTIONS(4699), + [anon_sym_COLON] = ACTIONS(4699), + [anon_sym_SEMI] = ACTIONS(4699), + [anon_sym_EQ] = ACTIONS(4699), + [anon_sym_QMARK] = ACTIONS(4699), + [anon_sym_LBRACK] = ACTIONS(4701), + [anon_sym_BSLASH] = ACTIONS(4701), + [anon_sym_CARET] = ACTIONS(4701), + [anon_sym_BQUOTE] = ACTIONS(4699), + [anon_sym_LBRACE] = ACTIONS(4699), + [anon_sym_PIPE] = ACTIONS(4699), + [anon_sym_TILDE] = ACTIONS(4699), + [anon_sym_LPAREN] = ACTIONS(4699), + [anon_sym_RPAREN] = ACTIONS(4699), + [sym__newline_token] = ACTIONS(4699), + [aux_sym_insert_token1] = ACTIONS(4699), + [aux_sym_delete_token1] = ACTIONS(4699), + [aux_sym_highlight_token1] = ACTIONS(4699), + [aux_sym_edit_comment_token1] = ACTIONS(4699), + [anon_sym_CARET_LBRACK] = ACTIONS(4699), + [anon_sym_LBRACK_CARET] = ACTIONS(4699), + [sym_uri_autolink] = ACTIONS(4699), + [sym_email_autolink] = ACTIONS(4699), + [sym__whitespace_ge_2] = ACTIONS(4699), + [aux_sym__whitespace_token1] = ACTIONS(4701), + [sym__word_no_digit] = ACTIONS(4699), + [sym__digits] = ACTIONS(4699), + [anon_sym_DASH_DASH] = ACTIONS(4701), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4699), + [sym__code_span_start] = ACTIONS(4699), + [sym__emphasis_open_star] = ACTIONS(4699), + [sym__emphasis_open_underscore] = ACTIONS(4699), + [sym__strikeout_open] = ACTIONS(4699), + [sym__latex_span_start] = ACTIONS(4699), + [sym__single_quote_open] = ACTIONS(4699), + [sym__double_quote_open] = ACTIONS(4699), + [sym__superscript_open] = ACTIONS(4699), + [sym__subscript_open] = ACTIONS(4699), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4699), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4699), + [sym__cite_author_in_text] = ACTIONS(4699), + [sym__cite_suppress_author] = ACTIONS(4699), + [sym__shortcode_open_escaped] = ACTIONS(4699), + [sym__shortcode_open] = ACTIONS(4699), + [sym__unclosed_span] = ACTIONS(4699), + [sym__strong_emphasis_open_star] = ACTIONS(4699), + [sym__strong_emphasis_open_underscore] = ACTIONS(4699), + }, + [STATE(1493)] = { + [sym__backslash_escape] = ACTIONS(4635), + [sym_entity_reference] = ACTIONS(4635), + [sym_numeric_character_reference] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4637), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4635), + [anon_sym_POUND] = ACTIONS(4635), + [anon_sym_DOLLAR] = ACTIONS(4635), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_AMP] = ACTIONS(4637), + [anon_sym_SQUOTE] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(4635), + [anon_sym_DASH] = ACTIONS(4637), + [anon_sym_DOT] = ACTIONS(4637), + [anon_sym_SLASH] = ACTIONS(4635), + [anon_sym_COLON] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_QMARK] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_BSLASH] = ACTIONS(4637), + [anon_sym_RBRACK] = ACTIONS(4635), + [anon_sym_CARET] = ACTIONS(4637), + [anon_sym_BQUOTE] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_TILDE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_RPAREN] = ACTIONS(4635), + [sym__newline_token] = ACTIONS(4635), + [aux_sym_insert_token1] = ACTIONS(4635), + [aux_sym_delete_token1] = ACTIONS(4635), + [aux_sym_highlight_token1] = ACTIONS(4635), + [aux_sym_edit_comment_token1] = ACTIONS(4635), + [anon_sym_CARET_LBRACK] = ACTIONS(4635), + [anon_sym_LBRACK_CARET] = ACTIONS(4635), + [sym_uri_autolink] = ACTIONS(4635), + [sym_email_autolink] = ACTIONS(4635), + [sym__whitespace_ge_2] = ACTIONS(4635), + [aux_sym__whitespace_token1] = ACTIONS(4637), + [sym__word_no_digit] = ACTIONS(4635), + [sym__digits] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4635), + [sym__code_span_start] = ACTIONS(4635), + [sym__emphasis_open_star] = ACTIONS(4635), + [sym__emphasis_open_underscore] = ACTIONS(4635), + [sym__strikeout_open] = ACTIONS(4635), + [sym__latex_span_start] = ACTIONS(4635), + [sym__single_quote_open] = ACTIONS(4635), + [sym__double_quote_open] = ACTIONS(4635), + [sym__superscript_open] = ACTIONS(4635), + [sym__subscript_open] = ACTIONS(4635), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4635), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4635), + [sym__cite_author_in_text] = ACTIONS(4635), + [sym__cite_suppress_author] = ACTIONS(4635), + [sym__shortcode_open_escaped] = ACTIONS(4635), + [sym__shortcode_open] = ACTIONS(4635), + [sym__unclosed_span] = ACTIONS(4635), + [sym__strong_emphasis_open_star] = ACTIONS(4635), + [sym__strong_emphasis_open_underscore] = ACTIONS(4635), + }, + [STATE(1494)] = { [sym__backslash_escape] = ACTIONS(4639), [sym_entity_reference] = ACTIONS(4639), [sym_numeric_character_reference] = ACTIONS(4639), @@ -148547,208 +148680,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4639), [sym__strong_emphasis_open_underscore] = ACTIONS(4639), }, - [STATE(1493)] = { - [sym__backslash_escape] = ACTIONS(4643), - [sym_entity_reference] = ACTIONS(4643), - [sym_numeric_character_reference] = ACTIONS(4643), - [anon_sym_LT] = ACTIONS(4645), - [anon_sym_GT] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(4643), - [anon_sym_DQUOTE] = ACTIONS(4643), - [anon_sym_POUND] = ACTIONS(4643), - [anon_sym_DOLLAR] = ACTIONS(4643), - [anon_sym_PERCENT] = ACTIONS(4643), - [anon_sym_AMP] = ACTIONS(4645), - [anon_sym_SQUOTE] = ACTIONS(4643), - [anon_sym_PLUS] = ACTIONS(4643), - [anon_sym_COMMA] = ACTIONS(4643), - [anon_sym_DASH] = ACTIONS(4645), - [anon_sym_DOT] = ACTIONS(4645), - [anon_sym_SLASH] = ACTIONS(4643), - [anon_sym_COLON] = ACTIONS(4643), - [anon_sym_SEMI] = ACTIONS(4643), - [anon_sym_EQ] = ACTIONS(4643), - [anon_sym_QMARK] = ACTIONS(4643), - [anon_sym_LBRACK] = ACTIONS(4645), - [anon_sym_BSLASH] = ACTIONS(4645), - [anon_sym_RBRACK] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4645), - [anon_sym_BQUOTE] = ACTIONS(4643), - [anon_sym_LBRACE] = ACTIONS(4643), - [anon_sym_PIPE] = ACTIONS(4643), - [anon_sym_TILDE] = ACTIONS(4643), - [anon_sym_LPAREN] = ACTIONS(4643), - [anon_sym_RPAREN] = ACTIONS(4643), - [sym__newline_token] = ACTIONS(4643), - [aux_sym_insert_token1] = ACTIONS(4643), - [aux_sym_delete_token1] = ACTIONS(4643), - [aux_sym_highlight_token1] = ACTIONS(4643), - [aux_sym_edit_comment_token1] = ACTIONS(4643), - [anon_sym_CARET_LBRACK] = ACTIONS(4643), - [anon_sym_LBRACK_CARET] = ACTIONS(4643), - [sym_uri_autolink] = ACTIONS(4643), - [sym_email_autolink] = ACTIONS(4643), - [sym__whitespace_ge_2] = ACTIONS(4643), - [aux_sym__whitespace_token1] = ACTIONS(4645), - [sym__word_no_digit] = ACTIONS(4643), - [sym__digits] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4645), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4643), - [sym__code_span_start] = ACTIONS(4643), - [sym__emphasis_open_star] = ACTIONS(4643), - [sym__emphasis_open_underscore] = ACTIONS(4643), - [sym__strikeout_open] = ACTIONS(4643), - [sym__latex_span_start] = ACTIONS(4643), - [sym__single_quote_open] = ACTIONS(4643), - [sym__double_quote_open] = ACTIONS(4643), - [sym__superscript_open] = ACTIONS(4643), - [sym__subscript_open] = ACTIONS(4643), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4643), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4643), - [sym__cite_author_in_text] = ACTIONS(4643), - [sym__cite_suppress_author] = ACTIONS(4643), - [sym__shortcode_open_escaped] = ACTIONS(4643), - [sym__shortcode_open] = ACTIONS(4643), - [sym__unclosed_span] = ACTIONS(4643), - [sym__strong_emphasis_open_star] = ACTIONS(4643), - [sym__strong_emphasis_open_underscore] = ACTIONS(4643), - }, - [STATE(1494)] = { - [ts_builtin_sym_end] = ACTIONS(4615), - [sym__backslash_escape] = ACTIONS(4615), - [sym_entity_reference] = ACTIONS(4615), - [sym_numeric_character_reference] = ACTIONS(4615), - [anon_sym_LT] = ACTIONS(4617), - [anon_sym_GT] = ACTIONS(4615), - [anon_sym_BANG] = ACTIONS(4615), - [anon_sym_DQUOTE] = ACTIONS(4615), - [anon_sym_POUND] = ACTIONS(4615), - [anon_sym_DOLLAR] = ACTIONS(4615), - [anon_sym_PERCENT] = ACTIONS(4615), - [anon_sym_AMP] = ACTIONS(4617), - [anon_sym_SQUOTE] = ACTIONS(4615), - [anon_sym_PLUS] = ACTIONS(4615), - [anon_sym_COMMA] = ACTIONS(4615), - [anon_sym_DASH] = ACTIONS(4617), - [anon_sym_DOT] = ACTIONS(4617), - [anon_sym_SLASH] = ACTIONS(4615), - [anon_sym_COLON] = ACTIONS(4615), - [anon_sym_SEMI] = ACTIONS(4615), - [anon_sym_EQ] = ACTIONS(4615), - [anon_sym_QMARK] = ACTIONS(4615), - [anon_sym_LBRACK] = ACTIONS(4617), - [anon_sym_BSLASH] = ACTIONS(4617), - [anon_sym_CARET] = ACTIONS(4617), - [anon_sym_BQUOTE] = ACTIONS(4615), - [anon_sym_LBRACE] = ACTIONS(4615), - [anon_sym_PIPE] = ACTIONS(4615), - [anon_sym_TILDE] = ACTIONS(4615), - [anon_sym_LPAREN] = ACTIONS(4615), - [anon_sym_RPAREN] = ACTIONS(4615), - [sym__newline_token] = ACTIONS(4615), - [aux_sym_insert_token1] = ACTIONS(4615), - [aux_sym_delete_token1] = ACTIONS(4615), - [aux_sym_highlight_token1] = ACTIONS(4615), - [aux_sym_edit_comment_token1] = ACTIONS(4615), - [anon_sym_CARET_LBRACK] = ACTIONS(4615), - [anon_sym_LBRACK_CARET] = ACTIONS(4615), - [sym_uri_autolink] = ACTIONS(4615), - [sym_email_autolink] = ACTIONS(4615), - [sym__whitespace_ge_2] = ACTIONS(4615), - [aux_sym__whitespace_token1] = ACTIONS(4617), - [sym__word_no_digit] = ACTIONS(4615), - [sym__digits] = ACTIONS(4615), - [anon_sym_DASH_DASH] = ACTIONS(4617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4615), - [sym__code_span_start] = ACTIONS(4615), - [sym__emphasis_open_star] = ACTIONS(4615), - [sym__emphasis_open_underscore] = ACTIONS(4615), - [sym__strikeout_open] = ACTIONS(4615), - [sym__latex_span_start] = ACTIONS(4615), - [sym__single_quote_open] = ACTIONS(4615), - [sym__double_quote_open] = ACTIONS(4615), - [sym__superscript_open] = ACTIONS(4615), - [sym__subscript_open] = ACTIONS(4615), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4615), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4615), - [sym__cite_author_in_text] = ACTIONS(4615), - [sym__cite_suppress_author] = ACTIONS(4615), - [sym__shortcode_open_escaped] = ACTIONS(4615), - [sym__shortcode_open] = ACTIONS(4615), - [sym__unclosed_span] = ACTIONS(4615), - [sym__strong_emphasis_open_star] = ACTIONS(4615), - [sym__strong_emphasis_open_underscore] = ACTIONS(4615), - }, [STATE(1495)] = { - [sym__backslash_escape] = ACTIONS(4631), - [sym_entity_reference] = ACTIONS(4631), - [sym_numeric_character_reference] = ACTIONS(4631), - [anon_sym_LT] = ACTIONS(4633), - [anon_sym_GT] = ACTIONS(4631), - [anon_sym_BANG] = ACTIONS(4631), - [anon_sym_DQUOTE] = ACTIONS(4631), - [anon_sym_POUND] = ACTIONS(4631), - [anon_sym_DOLLAR] = ACTIONS(4631), - [anon_sym_PERCENT] = ACTIONS(4631), - [anon_sym_AMP] = ACTIONS(4633), - [anon_sym_SQUOTE] = ACTIONS(4631), - [anon_sym_PLUS] = ACTIONS(4631), - [anon_sym_COMMA] = ACTIONS(4631), - [anon_sym_DASH] = ACTIONS(4633), - [anon_sym_DOT] = ACTIONS(4633), - [anon_sym_SLASH] = ACTIONS(4631), - [anon_sym_COLON] = ACTIONS(4631), - [anon_sym_SEMI] = ACTIONS(4631), - [anon_sym_EQ] = ACTIONS(4631), - [anon_sym_QMARK] = ACTIONS(4631), - [anon_sym_LBRACK] = ACTIONS(4633), - [anon_sym_BSLASH] = ACTIONS(4633), - [anon_sym_CARET] = ACTIONS(4633), - [anon_sym_BQUOTE] = ACTIONS(4631), - [anon_sym_LBRACE] = ACTIONS(4631), - [anon_sym_PIPE] = ACTIONS(4631), - [anon_sym_TILDE] = ACTIONS(4631), - [anon_sym_LPAREN] = ACTIONS(4631), - [anon_sym_RPAREN] = ACTIONS(4631), - [sym__newline_token] = ACTIONS(4631), - [aux_sym_insert_token1] = ACTIONS(4631), - [aux_sym_delete_token1] = ACTIONS(4631), - [aux_sym_highlight_token1] = ACTIONS(4631), - [aux_sym_edit_comment_token1] = ACTIONS(4631), - [anon_sym_CARET_LBRACK] = ACTIONS(4631), - [anon_sym_LBRACK_CARET] = ACTIONS(4631), - [sym_uri_autolink] = ACTIONS(4631), - [sym_email_autolink] = ACTIONS(4631), - [sym__whitespace_ge_2] = ACTIONS(4631), - [aux_sym__whitespace_token1] = ACTIONS(4633), - [sym__word_no_digit] = ACTIONS(4631), - [sym__digits] = ACTIONS(4631), - [anon_sym_DASH_DASH] = ACTIONS(4633), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4631), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4631), - [sym__code_span_start] = ACTIONS(4631), - [sym__emphasis_open_star] = ACTIONS(4631), - [sym__emphasis_open_underscore] = ACTIONS(4631), - [sym__emphasis_close_underscore] = ACTIONS(4631), - [sym__strikeout_open] = ACTIONS(4631), - [sym__latex_span_start] = ACTIONS(4631), - [sym__single_quote_open] = ACTIONS(4631), - [sym__double_quote_open] = ACTIONS(4631), - [sym__superscript_open] = ACTIONS(4631), - [sym__subscript_open] = ACTIONS(4631), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4631), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4631), - [sym__cite_author_in_text] = ACTIONS(4631), - [sym__cite_suppress_author] = ACTIONS(4631), - [sym__shortcode_open_escaped] = ACTIONS(4631), - [sym__shortcode_open] = ACTIONS(4631), - [sym__unclosed_span] = ACTIONS(4631), - [sym__strong_emphasis_open_star] = ACTIONS(4631), - [sym__strong_emphasis_open_underscore] = ACTIONS(4631), + [ts_builtin_sym_end] = ACTIONS(4703), + [sym__backslash_escape] = ACTIONS(4703), + [sym_entity_reference] = ACTIONS(4703), + [sym_numeric_character_reference] = ACTIONS(4703), + [anon_sym_LT] = ACTIONS(4705), + [anon_sym_GT] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(4703), + [anon_sym_DQUOTE] = ACTIONS(4703), + [anon_sym_POUND] = ACTIONS(4703), + [anon_sym_DOLLAR] = ACTIONS(4703), + [anon_sym_PERCENT] = ACTIONS(4703), + [anon_sym_AMP] = ACTIONS(4705), + [anon_sym_SQUOTE] = ACTIONS(4703), + [anon_sym_PLUS] = ACTIONS(4703), + [anon_sym_COMMA] = ACTIONS(4703), + [anon_sym_DASH] = ACTIONS(4705), + [anon_sym_DOT] = ACTIONS(4705), + [anon_sym_SLASH] = ACTIONS(4703), + [anon_sym_COLON] = ACTIONS(4703), + [anon_sym_SEMI] = ACTIONS(4703), + [anon_sym_EQ] = ACTIONS(4703), + [anon_sym_QMARK] = ACTIONS(4703), + [anon_sym_LBRACK] = ACTIONS(4705), + [anon_sym_BSLASH] = ACTIONS(4705), + [anon_sym_CARET] = ACTIONS(4705), + [anon_sym_BQUOTE] = ACTIONS(4703), + [anon_sym_LBRACE] = ACTIONS(4703), + [anon_sym_PIPE] = ACTIONS(4703), + [anon_sym_TILDE] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(4703), + [anon_sym_RPAREN] = ACTIONS(4703), + [sym__newline_token] = ACTIONS(4703), + [aux_sym_insert_token1] = ACTIONS(4703), + [aux_sym_delete_token1] = ACTIONS(4703), + [aux_sym_highlight_token1] = ACTIONS(4703), + [aux_sym_edit_comment_token1] = ACTIONS(4703), + [anon_sym_CARET_LBRACK] = ACTIONS(4703), + [anon_sym_LBRACK_CARET] = ACTIONS(4703), + [sym_uri_autolink] = ACTIONS(4703), + [sym_email_autolink] = ACTIONS(4703), + [sym__whitespace_ge_2] = ACTIONS(4703), + [aux_sym__whitespace_token1] = ACTIONS(4705), + [sym__word_no_digit] = ACTIONS(4703), + [sym__digits] = ACTIONS(4703), + [anon_sym_DASH_DASH] = ACTIONS(4705), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4703), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4703), + [sym__code_span_start] = ACTIONS(4703), + [sym__emphasis_open_star] = ACTIONS(4703), + [sym__emphasis_open_underscore] = ACTIONS(4703), + [sym__strikeout_open] = ACTIONS(4703), + [sym__latex_span_start] = ACTIONS(4703), + [sym__single_quote_open] = ACTIONS(4703), + [sym__double_quote_open] = ACTIONS(4703), + [sym__superscript_open] = ACTIONS(4703), + [sym__subscript_open] = ACTIONS(4703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4703), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4703), + [sym__cite_author_in_text] = ACTIONS(4703), + [sym__cite_suppress_author] = ACTIONS(4703), + [sym__shortcode_open_escaped] = ACTIONS(4703), + [sym__shortcode_open] = ACTIONS(4703), + [sym__unclosed_span] = ACTIONS(4703), + [sym__strong_emphasis_open_star] = ACTIONS(4703), + [sym__strong_emphasis_open_underscore] = ACTIONS(4703), }, [STATE(1496)] = { + [sym__backslash_escape] = ACTIONS(4635), + [sym_entity_reference] = ACTIONS(4635), + [sym_numeric_character_reference] = ACTIONS(4635), + [anon_sym_LT] = ACTIONS(4637), + [anon_sym_GT] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4635), + [anon_sym_DQUOTE] = ACTIONS(4635), + [anon_sym_POUND] = ACTIONS(4635), + [anon_sym_DOLLAR] = ACTIONS(4635), + [anon_sym_PERCENT] = ACTIONS(4635), + [anon_sym_AMP] = ACTIONS(4637), + [anon_sym_SQUOTE] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4635), + [anon_sym_COMMA] = ACTIONS(4635), + [anon_sym_DASH] = ACTIONS(4637), + [anon_sym_DOT] = ACTIONS(4637), + [anon_sym_SLASH] = ACTIONS(4635), + [anon_sym_COLON] = ACTIONS(4635), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_QMARK] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4637), + [anon_sym_BSLASH] = ACTIONS(4637), + [anon_sym_CARET] = ACTIONS(4637), + [anon_sym_BQUOTE] = ACTIONS(4635), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_PIPE] = ACTIONS(4635), + [anon_sym_TILDE] = ACTIONS(4635), + [anon_sym_LPAREN] = ACTIONS(4635), + [anon_sym_RPAREN] = ACTIONS(4635), + [sym__newline_token] = ACTIONS(4635), + [aux_sym_insert_token1] = ACTIONS(4635), + [aux_sym_insert_token2] = ACTIONS(4635), + [aux_sym_delete_token1] = ACTIONS(4635), + [aux_sym_highlight_token1] = ACTIONS(4635), + [aux_sym_edit_comment_token1] = ACTIONS(4635), + [anon_sym_CARET_LBRACK] = ACTIONS(4635), + [anon_sym_LBRACK_CARET] = ACTIONS(4635), + [sym_uri_autolink] = ACTIONS(4635), + [sym_email_autolink] = ACTIONS(4635), + [sym__whitespace_ge_2] = ACTIONS(4637), + [aux_sym__whitespace_token1] = ACTIONS(4637), + [sym__word_no_digit] = ACTIONS(4635), + [sym__digits] = ACTIONS(4635), + [anon_sym_DASH_DASH] = ACTIONS(4637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4635), + [sym__code_span_start] = ACTIONS(4635), + [sym__emphasis_open_star] = ACTIONS(4635), + [sym__emphasis_open_underscore] = ACTIONS(4635), + [sym__strikeout_open] = ACTIONS(4635), + [sym__latex_span_start] = ACTIONS(4635), + [sym__single_quote_open] = ACTIONS(4635), + [sym__double_quote_open] = ACTIONS(4635), + [sym__superscript_open] = ACTIONS(4635), + [sym__subscript_open] = ACTIONS(4635), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4635), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4635), + [sym__cite_author_in_text] = ACTIONS(4635), + [sym__cite_suppress_author] = ACTIONS(4635), + [sym__shortcode_open_escaped] = ACTIONS(4635), + [sym__shortcode_open] = ACTIONS(4635), + [sym__unclosed_span] = ACTIONS(4635), + [sym__strong_emphasis_open_star] = ACTIONS(4635), + [sym__strong_emphasis_open_underscore] = ACTIONS(4635), + }, + [STATE(1497)] = { [sym__backslash_escape] = ACTIONS(4639), [sym_entity_reference] = ACTIONS(4639), [sym_numeric_character_reference] = ACTIONS(4639), @@ -148815,141 +148881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4639), [sym__strong_emphasis_open_underscore] = ACTIONS(4639), }, - [STATE(1497)] = { - [sym__backslash_escape] = ACTIONS(4643), - [sym_entity_reference] = ACTIONS(4643), - [sym_numeric_character_reference] = ACTIONS(4643), - [anon_sym_LT] = ACTIONS(4645), - [anon_sym_GT] = ACTIONS(4643), - [anon_sym_BANG] = ACTIONS(4643), - [anon_sym_DQUOTE] = ACTIONS(4643), - [anon_sym_POUND] = ACTIONS(4643), - [anon_sym_DOLLAR] = ACTIONS(4643), - [anon_sym_PERCENT] = ACTIONS(4643), - [anon_sym_AMP] = ACTIONS(4645), - [anon_sym_SQUOTE] = ACTIONS(4643), - [anon_sym_PLUS] = ACTIONS(4643), - [anon_sym_COMMA] = ACTIONS(4643), - [anon_sym_DASH] = ACTIONS(4645), - [anon_sym_DOT] = ACTIONS(4645), - [anon_sym_SLASH] = ACTIONS(4643), - [anon_sym_COLON] = ACTIONS(4643), - [anon_sym_SEMI] = ACTIONS(4643), - [anon_sym_EQ] = ACTIONS(4643), - [anon_sym_QMARK] = ACTIONS(4643), - [anon_sym_LBRACK] = ACTIONS(4645), - [anon_sym_BSLASH] = ACTIONS(4645), - [anon_sym_CARET] = ACTIONS(4645), - [anon_sym_BQUOTE] = ACTIONS(4643), - [anon_sym_LBRACE] = ACTIONS(4643), - [anon_sym_PIPE] = ACTIONS(4643), - [anon_sym_TILDE] = ACTIONS(4643), - [anon_sym_LPAREN] = ACTIONS(4643), - [anon_sym_RPAREN] = ACTIONS(4643), - [sym__newline_token] = ACTIONS(4643), - [aux_sym_insert_token1] = ACTIONS(4643), - [aux_sym_insert_token2] = ACTIONS(4643), - [aux_sym_delete_token1] = ACTIONS(4643), - [aux_sym_highlight_token1] = ACTIONS(4643), - [aux_sym_edit_comment_token1] = ACTIONS(4643), - [anon_sym_CARET_LBRACK] = ACTIONS(4643), - [anon_sym_LBRACK_CARET] = ACTIONS(4643), - [sym_uri_autolink] = ACTIONS(4643), - [sym_email_autolink] = ACTIONS(4643), - [sym__whitespace_ge_2] = ACTIONS(4645), - [aux_sym__whitespace_token1] = ACTIONS(4645), - [sym__word_no_digit] = ACTIONS(4643), - [sym__digits] = ACTIONS(4643), - [anon_sym_DASH_DASH] = ACTIONS(4645), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4643), - [sym__code_span_start] = ACTIONS(4643), - [sym__emphasis_open_star] = ACTIONS(4643), - [sym__emphasis_open_underscore] = ACTIONS(4643), - [sym__strikeout_open] = ACTIONS(4643), - [sym__latex_span_start] = ACTIONS(4643), - [sym__single_quote_open] = ACTIONS(4643), - [sym__double_quote_open] = ACTIONS(4643), - [sym__superscript_open] = ACTIONS(4643), - [sym__subscript_open] = ACTIONS(4643), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4643), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4643), - [sym__cite_author_in_text] = ACTIONS(4643), - [sym__cite_suppress_author] = ACTIONS(4643), - [sym__shortcode_open_escaped] = ACTIONS(4643), - [sym__shortcode_open] = ACTIONS(4643), - [sym__unclosed_span] = ACTIONS(4643), - [sym__strong_emphasis_open_star] = ACTIONS(4643), - [sym__strong_emphasis_open_underscore] = ACTIONS(4643), - }, [STATE(1498)] = { - [sym__backslash_escape] = ACTIONS(4635), - [sym_entity_reference] = ACTIONS(4635), - [sym_numeric_character_reference] = ACTIONS(4635), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4635), - [anon_sym_BANG] = ACTIONS(4635), - [anon_sym_DQUOTE] = ACTIONS(4635), - [anon_sym_POUND] = ACTIONS(4635), - [anon_sym_DOLLAR] = ACTIONS(4635), - [anon_sym_PERCENT] = ACTIONS(4635), - [anon_sym_AMP] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4635), - [anon_sym_PLUS] = ACTIONS(4635), - [anon_sym_COMMA] = ACTIONS(4635), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4635), - [anon_sym_COLON] = ACTIONS(4635), - [anon_sym_SEMI] = ACTIONS(4635), - [anon_sym_EQ] = ACTIONS(4635), - [anon_sym_QMARK] = ACTIONS(4635), - [anon_sym_LBRACK] = ACTIONS(4637), - [anon_sym_BSLASH] = ACTIONS(4637), - [anon_sym_CARET] = ACTIONS(4637), - [anon_sym_BQUOTE] = ACTIONS(4635), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4635), - [anon_sym_TILDE] = ACTIONS(4635), - [anon_sym_LPAREN] = ACTIONS(4635), - [anon_sym_RPAREN] = ACTIONS(4635), - [sym__newline_token] = ACTIONS(4635), - [aux_sym_insert_token1] = ACTIONS(4635), - [aux_sym_delete_token1] = ACTIONS(4635), - [aux_sym_highlight_token1] = ACTIONS(4635), - [aux_sym_edit_comment_token1] = ACTIONS(4635), - [anon_sym_CARET_LBRACK] = ACTIONS(4635), - [anon_sym_LBRACK_CARET] = ACTIONS(4635), - [sym_uri_autolink] = ACTIONS(4635), - [sym_email_autolink] = ACTIONS(4635), - [sym__whitespace_ge_2] = ACTIONS(4635), - [aux_sym__whitespace_token1] = ACTIONS(4637), - [sym__word_no_digit] = ACTIONS(4635), - [sym__digits] = ACTIONS(4635), - [anon_sym_DASH_DASH] = ACTIONS(4637), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4635), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4635), - [sym__code_span_start] = ACTIONS(4635), - [sym__emphasis_open_star] = ACTIONS(4635), - [sym__emphasis_open_underscore] = ACTIONS(4635), - [sym__emphasis_close_underscore] = ACTIONS(4635), - [sym__strikeout_open] = ACTIONS(4635), - [sym__latex_span_start] = ACTIONS(4635), - [sym__single_quote_open] = ACTIONS(4635), - [sym__double_quote_open] = ACTIONS(4635), - [sym__superscript_open] = ACTIONS(4635), - [sym__subscript_open] = ACTIONS(4635), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4635), - [sym__cite_author_in_text] = ACTIONS(4635), - [sym__cite_suppress_author] = ACTIONS(4635), - [sym__shortcode_open_escaped] = ACTIONS(4635), - [sym__shortcode_open] = ACTIONS(4635), - [sym__unclosed_span] = ACTIONS(4635), - [sym__strong_emphasis_open_star] = ACTIONS(4635), - [sym__strong_emphasis_open_underscore] = ACTIONS(4635), - }, - [STATE(1499)] = { [sym__backslash_escape] = ACTIONS(4639), [sym_entity_reference] = ACTIONS(4639), [sym_numeric_character_reference] = ACTIONS(4639), @@ -149016,208 +148948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4639), [sym__strong_emphasis_open_underscore] = ACTIONS(4639), }, - [STATE(1500)] = { - [ts_builtin_sym_end] = ACTIONS(4699), - [sym__backslash_escape] = ACTIONS(4699), - [sym_entity_reference] = ACTIONS(4699), - [sym_numeric_character_reference] = ACTIONS(4699), - [anon_sym_LT] = ACTIONS(4701), - [anon_sym_GT] = ACTIONS(4699), - [anon_sym_BANG] = ACTIONS(4699), - [anon_sym_DQUOTE] = ACTIONS(4699), - [anon_sym_POUND] = ACTIONS(4699), - [anon_sym_DOLLAR] = ACTIONS(4699), - [anon_sym_PERCENT] = ACTIONS(4699), - [anon_sym_AMP] = ACTIONS(4701), - [anon_sym_SQUOTE] = ACTIONS(4699), - [anon_sym_PLUS] = ACTIONS(4699), - [anon_sym_COMMA] = ACTIONS(4699), - [anon_sym_DASH] = ACTIONS(4701), - [anon_sym_DOT] = ACTIONS(4701), - [anon_sym_SLASH] = ACTIONS(4699), - [anon_sym_COLON] = ACTIONS(4699), - [anon_sym_SEMI] = ACTIONS(4699), - [anon_sym_EQ] = ACTIONS(4699), - [anon_sym_QMARK] = ACTIONS(4699), - [anon_sym_LBRACK] = ACTIONS(4701), - [anon_sym_BSLASH] = ACTIONS(4701), - [anon_sym_CARET] = ACTIONS(4701), - [anon_sym_BQUOTE] = ACTIONS(4699), - [anon_sym_LBRACE] = ACTIONS(4699), - [anon_sym_PIPE] = ACTIONS(4699), - [anon_sym_TILDE] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4699), - [anon_sym_RPAREN] = ACTIONS(4699), - [sym__newline_token] = ACTIONS(4699), - [aux_sym_insert_token1] = ACTIONS(4699), - [aux_sym_delete_token1] = ACTIONS(4699), - [aux_sym_highlight_token1] = ACTIONS(4699), - [aux_sym_edit_comment_token1] = ACTIONS(4699), - [anon_sym_CARET_LBRACK] = ACTIONS(4699), - [anon_sym_LBRACK_CARET] = ACTIONS(4699), - [sym_uri_autolink] = ACTIONS(4699), - [sym_email_autolink] = ACTIONS(4699), - [sym__whitespace_ge_2] = ACTIONS(4699), - [aux_sym__whitespace_token1] = ACTIONS(4701), - [sym__word_no_digit] = ACTIONS(4699), - [sym__digits] = ACTIONS(4699), - [anon_sym_DASH_DASH] = ACTIONS(4701), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4699), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4699), - [sym__code_span_start] = ACTIONS(4699), - [sym__emphasis_open_star] = ACTIONS(4699), - [sym__emphasis_open_underscore] = ACTIONS(4699), - [sym__strikeout_open] = ACTIONS(4699), - [sym__latex_span_start] = ACTIONS(4699), - [sym__single_quote_open] = ACTIONS(4699), - [sym__double_quote_open] = ACTIONS(4699), - [sym__superscript_open] = ACTIONS(4699), - [sym__subscript_open] = ACTIONS(4699), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4699), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4699), - [sym__cite_author_in_text] = ACTIONS(4699), - [sym__cite_suppress_author] = ACTIONS(4699), - [sym__shortcode_open_escaped] = ACTIONS(4699), - [sym__shortcode_open] = ACTIONS(4699), - [sym__unclosed_span] = ACTIONS(4699), - [sym__strong_emphasis_open_star] = ACTIONS(4699), - [sym__strong_emphasis_open_underscore] = ACTIONS(4699), - }, - [STATE(1501)] = { - [ts_builtin_sym_end] = ACTIONS(4703), - [sym__backslash_escape] = ACTIONS(4703), - [sym_entity_reference] = ACTIONS(4703), - [sym_numeric_character_reference] = ACTIONS(4703), - [anon_sym_LT] = ACTIONS(4705), - [anon_sym_GT] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4703), - [anon_sym_DQUOTE] = ACTIONS(4703), - [anon_sym_POUND] = ACTIONS(4703), - [anon_sym_DOLLAR] = ACTIONS(4703), - [anon_sym_PERCENT] = ACTIONS(4703), - [anon_sym_AMP] = ACTIONS(4705), - [anon_sym_SQUOTE] = ACTIONS(4703), - [anon_sym_PLUS] = ACTIONS(4703), - [anon_sym_COMMA] = ACTIONS(4703), - [anon_sym_DASH] = ACTIONS(4705), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_SLASH] = ACTIONS(4703), - [anon_sym_COLON] = ACTIONS(4703), - [anon_sym_SEMI] = ACTIONS(4703), - [anon_sym_EQ] = ACTIONS(4703), - [anon_sym_QMARK] = ACTIONS(4703), - [anon_sym_LBRACK] = ACTIONS(4705), - [anon_sym_BSLASH] = ACTIONS(4705), - [anon_sym_CARET] = ACTIONS(4705), - [anon_sym_BQUOTE] = ACTIONS(4703), - [anon_sym_LBRACE] = ACTIONS(4703), - [anon_sym_PIPE] = ACTIONS(4703), - [anon_sym_TILDE] = ACTIONS(4703), - [anon_sym_LPAREN] = ACTIONS(4703), - [anon_sym_RPAREN] = ACTIONS(4703), - [sym__newline_token] = ACTIONS(4703), - [aux_sym_insert_token1] = ACTIONS(4703), - [aux_sym_delete_token1] = ACTIONS(4703), - [aux_sym_highlight_token1] = ACTIONS(4703), - [aux_sym_edit_comment_token1] = ACTIONS(4703), - [anon_sym_CARET_LBRACK] = ACTIONS(4703), - [anon_sym_LBRACK_CARET] = ACTIONS(4703), - [sym_uri_autolink] = ACTIONS(4703), - [sym_email_autolink] = ACTIONS(4703), - [sym__whitespace_ge_2] = ACTIONS(4703), - [aux_sym__whitespace_token1] = ACTIONS(4705), - [sym__word_no_digit] = ACTIONS(4703), - [sym__digits] = ACTIONS(4703), - [anon_sym_DASH_DASH] = ACTIONS(4705), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4703), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4703), - [sym__code_span_start] = ACTIONS(4703), - [sym__emphasis_open_star] = ACTIONS(4703), - [sym__emphasis_open_underscore] = ACTIONS(4703), - [sym__strikeout_open] = ACTIONS(4703), - [sym__latex_span_start] = ACTIONS(4703), - [sym__single_quote_open] = ACTIONS(4703), - [sym__double_quote_open] = ACTIONS(4703), - [sym__superscript_open] = ACTIONS(4703), - [sym__subscript_open] = ACTIONS(4703), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4703), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4703), - [sym__cite_author_in_text] = ACTIONS(4703), - [sym__cite_suppress_author] = ACTIONS(4703), - [sym__shortcode_open_escaped] = ACTIONS(4703), - [sym__shortcode_open] = ACTIONS(4703), - [sym__unclosed_span] = ACTIONS(4703), - [sym__strong_emphasis_open_star] = ACTIONS(4703), - [sym__strong_emphasis_open_underscore] = ACTIONS(4703), - }, - [STATE(1502)] = { - [ts_builtin_sym_end] = ACTIONS(4707), - [sym__backslash_escape] = ACTIONS(4707), - [sym_entity_reference] = ACTIONS(4707), - [sym_numeric_character_reference] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4709), - [anon_sym_GT] = ACTIONS(4707), - [anon_sym_BANG] = ACTIONS(4707), - [anon_sym_DQUOTE] = ACTIONS(4707), - [anon_sym_POUND] = ACTIONS(4707), - [anon_sym_DOLLAR] = ACTIONS(4707), - [anon_sym_PERCENT] = ACTIONS(4707), - [anon_sym_AMP] = ACTIONS(4709), - [anon_sym_SQUOTE] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4709), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4707), - [anon_sym_COLON] = ACTIONS(4707), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_EQ] = ACTIONS(4707), - [anon_sym_QMARK] = ACTIONS(4707), - [anon_sym_LBRACK] = ACTIONS(4709), - [anon_sym_BSLASH] = ACTIONS(4709), - [anon_sym_CARET] = ACTIONS(4709), - [anon_sym_BQUOTE] = ACTIONS(4707), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_PIPE] = ACTIONS(4707), - [anon_sym_TILDE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_RPAREN] = ACTIONS(4707), - [sym__newline_token] = ACTIONS(4707), - [aux_sym_insert_token1] = ACTIONS(4707), - [aux_sym_delete_token1] = ACTIONS(4707), - [aux_sym_highlight_token1] = ACTIONS(4707), - [aux_sym_edit_comment_token1] = ACTIONS(4707), - [anon_sym_CARET_LBRACK] = ACTIONS(4707), - [anon_sym_LBRACK_CARET] = ACTIONS(4707), - [sym_uri_autolink] = ACTIONS(4707), - [sym_email_autolink] = ACTIONS(4707), - [sym__whitespace_ge_2] = ACTIONS(4707), - [aux_sym__whitespace_token1] = ACTIONS(4709), - [sym__word_no_digit] = ACTIONS(4707), - [sym__digits] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4709), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4707), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4707), - [sym__code_span_start] = ACTIONS(4707), - [sym__emphasis_open_star] = ACTIONS(4707), - [sym__emphasis_open_underscore] = ACTIONS(4707), - [sym__strikeout_open] = ACTIONS(4707), - [sym__latex_span_start] = ACTIONS(4707), - [sym__single_quote_open] = ACTIONS(4707), - [sym__double_quote_open] = ACTIONS(4707), - [sym__superscript_open] = ACTIONS(4707), - [sym__subscript_open] = ACTIONS(4707), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4707), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4707), - [sym__cite_author_in_text] = ACTIONS(4707), - [sym__cite_suppress_author] = ACTIONS(4707), - [sym__shortcode_open_escaped] = ACTIONS(4707), - [sym__shortcode_open] = ACTIONS(4707), - [sym__unclosed_span] = ACTIONS(4707), - [sym__strong_emphasis_open_star] = ACTIONS(4707), - [sym__strong_emphasis_open_underscore] = ACTIONS(4707), - }, - [STATE(1503)] = { + [STATE(1499)] = { [sym__backslash_escape] = ACTIONS(4643), [sym_entity_reference] = ACTIONS(4643), [sym_numeric_character_reference] = ACTIONS(4643), @@ -149267,7 +148998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4643), [sym__emphasis_open_star] = ACTIONS(4643), [sym__emphasis_open_underscore] = ACTIONS(4643), - [sym__emphasis_close_star] = ACTIONS(4643), + [sym__emphasis_close_underscore] = ACTIONS(4643), [sym__strikeout_open] = ACTIONS(4643), [sym__latex_span_start] = ACTIONS(4643), [sym__single_quote_open] = ACTIONS(4643), @@ -149284,74 +149015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4643), [sym__strong_emphasis_open_underscore] = ACTIONS(4643), }, - [STATE(1504)] = { - [sym__backslash_escape] = ACTIONS(4647), - [sym_entity_reference] = ACTIONS(4647), - [sym_numeric_character_reference] = ACTIONS(4647), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4647), - [anon_sym_BANG] = ACTIONS(4647), - [anon_sym_DQUOTE] = ACTIONS(4647), - [anon_sym_POUND] = ACTIONS(4647), - [anon_sym_DOLLAR] = ACTIONS(4647), - [anon_sym_PERCENT] = ACTIONS(4647), - [anon_sym_AMP] = ACTIONS(4649), - [anon_sym_SQUOTE] = ACTIONS(4647), - [anon_sym_PLUS] = ACTIONS(4647), - [anon_sym_COMMA] = ACTIONS(4647), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_SLASH] = ACTIONS(4647), - [anon_sym_COLON] = ACTIONS(4647), - [anon_sym_SEMI] = ACTIONS(4647), - [anon_sym_EQ] = ACTIONS(4647), - [anon_sym_QMARK] = ACTIONS(4647), - [anon_sym_LBRACK] = ACTIONS(4649), - [anon_sym_BSLASH] = ACTIONS(4649), - [anon_sym_CARET] = ACTIONS(4649), - [anon_sym_BQUOTE] = ACTIONS(4647), - [anon_sym_LBRACE] = ACTIONS(4647), - [anon_sym_PIPE] = ACTIONS(4647), - [anon_sym_TILDE] = ACTIONS(4647), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_RPAREN] = ACTIONS(4647), - [sym__newline_token] = ACTIONS(4647), - [aux_sym_insert_token1] = ACTIONS(4647), - [aux_sym_delete_token1] = ACTIONS(4647), - [aux_sym_highlight_token1] = ACTIONS(4647), - [aux_sym_edit_comment_token1] = ACTIONS(4647), - [anon_sym_CARET_LBRACK] = ACTIONS(4647), - [anon_sym_LBRACK_CARET] = ACTIONS(4647), - [sym_uri_autolink] = ACTIONS(4647), - [sym_email_autolink] = ACTIONS(4647), - [sym__whitespace_ge_2] = ACTIONS(4647), - [aux_sym__whitespace_token1] = ACTIONS(4649), - [sym__word_no_digit] = ACTIONS(4647), - [sym__digits] = ACTIONS(4647), - [anon_sym_DASH_DASH] = ACTIONS(4649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4647), - [sym__code_span_start] = ACTIONS(4647), - [sym__emphasis_open_star] = ACTIONS(4647), - [sym__emphasis_open_underscore] = ACTIONS(4647), - [sym__emphasis_close_underscore] = ACTIONS(4647), - [sym__strikeout_open] = ACTIONS(4647), - [sym__latex_span_start] = ACTIONS(4647), - [sym__single_quote_open] = ACTIONS(4647), - [sym__double_quote_open] = ACTIONS(4647), - [sym__superscript_open] = ACTIONS(4647), - [sym__subscript_open] = ACTIONS(4647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4647), - [sym__cite_author_in_text] = ACTIONS(4647), - [sym__cite_suppress_author] = ACTIONS(4647), - [sym__shortcode_open_escaped] = ACTIONS(4647), - [sym__shortcode_open] = ACTIONS(4647), - [sym__unclosed_span] = ACTIONS(4647), - [sym__strong_emphasis_open_star] = ACTIONS(4647), - [sym__strong_emphasis_open_underscore] = ACTIONS(4647), - }, - [STATE(1505)] = { + [STATE(1500)] = { [sym__backslash_escape] = ACTIONS(4181), [sym_entity_reference] = ACTIONS(4181), [sym_numeric_character_reference] = ACTIONS(4181), @@ -149418,7 +149082,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4181), [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, - [STATE(1506)] = { + [STATE(1501)] = { + [sym__backslash_escape] = ACTIONS(4647), + [sym_entity_reference] = ACTIONS(4647), + [sym_numeric_character_reference] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_POUND] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [anon_sym_PERCENT] = ACTIONS(4647), + [anon_sym_AMP] = ACTIONS(4649), + [anon_sym_SQUOTE] = ACTIONS(4647), + [anon_sym_PLUS] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4647), + [anon_sym_DASH] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4649), + [anon_sym_SLASH] = ACTIONS(4647), + [anon_sym_COLON] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_LBRACK] = ACTIONS(4649), + [anon_sym_BSLASH] = ACTIONS(4649), + [anon_sym_CARET] = ACTIONS(4649), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LBRACE] = ACTIONS(4647), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_TILDE] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4647), + [anon_sym_RPAREN] = ACTIONS(4647), + [sym__newline_token] = ACTIONS(4647), + [aux_sym_insert_token1] = ACTIONS(4647), + [aux_sym_delete_token1] = ACTIONS(4647), + [aux_sym_highlight_token1] = ACTIONS(4647), + [aux_sym_edit_comment_token1] = ACTIONS(4647), + [anon_sym_CARET_LBRACK] = ACTIONS(4647), + [anon_sym_LBRACK_CARET] = ACTIONS(4647), + [sym_uri_autolink] = ACTIONS(4647), + [sym_email_autolink] = ACTIONS(4647), + [sym__whitespace_ge_2] = ACTIONS(4647), + [aux_sym__whitespace_token1] = ACTIONS(4649), + [sym__word_no_digit] = ACTIONS(4647), + [sym__digits] = ACTIONS(4647), + [anon_sym_DASH_DASH] = ACTIONS(4649), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4647), + [sym__code_span_start] = ACTIONS(4647), + [sym__emphasis_open_star] = ACTIONS(4647), + [sym__emphasis_open_underscore] = ACTIONS(4647), + [sym__emphasis_close_underscore] = ACTIONS(4647), + [sym__strikeout_open] = ACTIONS(4647), + [sym__latex_span_start] = ACTIONS(4647), + [sym__single_quote_open] = ACTIONS(4647), + [sym__double_quote_open] = ACTIONS(4647), + [sym__superscript_open] = ACTIONS(4647), + [sym__subscript_open] = ACTIONS(4647), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4647), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4647), + [sym__cite_author_in_text] = ACTIONS(4647), + [sym__cite_suppress_author] = ACTIONS(4647), + [sym__shortcode_open_escaped] = ACTIONS(4647), + [sym__shortcode_open] = ACTIONS(4647), + [sym__unclosed_span] = ACTIONS(4647), + [sym__strong_emphasis_open_star] = ACTIONS(4647), + [sym__strong_emphasis_open_underscore] = ACTIONS(4647), + }, + [STATE(1502)] = { [sym__backslash_escape] = ACTIONS(4651), [sym_entity_reference] = ACTIONS(4651), [sym_numeric_character_reference] = ACTIONS(4651), @@ -149485,7 +149216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4651), [sym__strong_emphasis_open_underscore] = ACTIONS(4651), }, - [STATE(1507)] = { + [STATE(1503)] = { [sym__backslash_escape] = ACTIONS(4655), [sym_entity_reference] = ACTIONS(4655), [sym_numeric_character_reference] = ACTIONS(4655), @@ -149552,7 +149283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4655), [sym__strong_emphasis_open_underscore] = ACTIONS(4655), }, - [STATE(1508)] = { + [STATE(1504)] = { [sym__backslash_escape] = ACTIONS(4659), [sym_entity_reference] = ACTIONS(4659), [sym_numeric_character_reference] = ACTIONS(4659), @@ -149619,7 +149350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4659), [sym__strong_emphasis_open_underscore] = ACTIONS(4659), }, - [STATE(1509)] = { + [STATE(1505)] = { [sym__backslash_escape] = ACTIONS(4663), [sym_entity_reference] = ACTIONS(4663), [sym_numeric_character_reference] = ACTIONS(4663), @@ -149686,7 +149417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4663), [sym__strong_emphasis_open_underscore] = ACTIONS(4663), }, - [STATE(1510)] = { + [STATE(1506)] = { [sym__backslash_escape] = ACTIONS(4667), [sym_entity_reference] = ACTIONS(4667), [sym_numeric_character_reference] = ACTIONS(4667), @@ -149753,7 +149484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4667), [sym__strong_emphasis_open_underscore] = ACTIONS(4667), }, - [STATE(1511)] = { + [STATE(1507)] = { [sym__backslash_escape] = ACTIONS(4671), [sym_entity_reference] = ACTIONS(4671), [sym_numeric_character_reference] = ACTIONS(4671), @@ -149820,7 +149551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4671), [sym__strong_emphasis_open_underscore] = ACTIONS(4671), }, - [STATE(1512)] = { + [STATE(1508)] = { [sym__backslash_escape] = ACTIONS(4675), [sym_entity_reference] = ACTIONS(4675), [sym_numeric_character_reference] = ACTIONS(4675), @@ -149887,7 +149618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4675), [sym__strong_emphasis_open_underscore] = ACTIONS(4675), }, - [STATE(1513)] = { + [STATE(1509)] = { [sym__backslash_escape] = ACTIONS(4679), [sym_entity_reference] = ACTIONS(4679), [sym_numeric_character_reference] = ACTIONS(4679), @@ -149954,7 +149685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4679), [sym__strong_emphasis_open_underscore] = ACTIONS(4679), }, - [STATE(1514)] = { + [STATE(1510)] = { [sym__backslash_escape] = ACTIONS(4683), [sym_entity_reference] = ACTIONS(4683), [sym_numeric_character_reference] = ACTIONS(4683), @@ -150021,7 +149752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4683), [sym__strong_emphasis_open_underscore] = ACTIONS(4683), }, - [STATE(1515)] = { + [STATE(1511)] = { [sym__backslash_escape] = ACTIONS(4687), [sym_entity_reference] = ACTIONS(4687), [sym_numeric_character_reference] = ACTIONS(4687), @@ -150088,7 +149819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4687), [sym__strong_emphasis_open_underscore] = ACTIONS(4687), }, - [STATE(1516)] = { + [STATE(1512)] = { [sym__backslash_escape] = ACTIONS(4691), [sym_entity_reference] = ACTIONS(4691), [sym_numeric_character_reference] = ACTIONS(4691), @@ -150155,7 +149886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4691), [sym__strong_emphasis_open_underscore] = ACTIONS(4691), }, - [STATE(1517)] = { + [STATE(1513)] = { [sym__backslash_escape] = ACTIONS(4695), [sym_entity_reference] = ACTIONS(4695), [sym_numeric_character_reference] = ACTIONS(4695), @@ -150222,7 +149953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4695), [sym__strong_emphasis_open_underscore] = ACTIONS(4695), }, - [STATE(1518)] = { + [STATE(1514)] = { [sym__backslash_escape] = ACTIONS(4699), [sym_entity_reference] = ACTIONS(4699), [sym_numeric_character_reference] = ACTIONS(4699), @@ -150289,7 +150020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4699), [sym__strong_emphasis_open_underscore] = ACTIONS(4699), }, - [STATE(1519)] = { + [STATE(1515)] = { [sym__backslash_escape] = ACTIONS(4703), [sym_entity_reference] = ACTIONS(4703), [sym_numeric_character_reference] = ACTIONS(4703), @@ -150356,62 +150087,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4703), [sym__strong_emphasis_open_underscore] = ACTIONS(4703), }, - [STATE(1520)] = { - [sym__backslash_escape] = ACTIONS(4707), - [sym_entity_reference] = ACTIONS(4707), - [sym_numeric_character_reference] = ACTIONS(4707), - [anon_sym_LT] = ACTIONS(4709), - [anon_sym_GT] = ACTIONS(4707), - [anon_sym_BANG] = ACTIONS(4707), - [anon_sym_DQUOTE] = ACTIONS(4707), - [anon_sym_POUND] = ACTIONS(4707), - [anon_sym_DOLLAR] = ACTIONS(4707), - [anon_sym_PERCENT] = ACTIONS(4707), - [anon_sym_AMP] = ACTIONS(4709), - [anon_sym_SQUOTE] = ACTIONS(4707), - [anon_sym_PLUS] = ACTIONS(4707), - [anon_sym_COMMA] = ACTIONS(4707), - [anon_sym_DASH] = ACTIONS(4709), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_SLASH] = ACTIONS(4707), - [anon_sym_COLON] = ACTIONS(4707), - [anon_sym_SEMI] = ACTIONS(4707), - [anon_sym_EQ] = ACTIONS(4707), - [anon_sym_QMARK] = ACTIONS(4707), - [anon_sym_LBRACK] = ACTIONS(4709), - [anon_sym_BSLASH] = ACTIONS(4709), - [anon_sym_CARET] = ACTIONS(4709), - [anon_sym_BQUOTE] = ACTIONS(4707), - [anon_sym_LBRACE] = ACTIONS(4707), - [anon_sym_PIPE] = ACTIONS(4707), - [anon_sym_TILDE] = ACTIONS(4707), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_RPAREN] = ACTIONS(4707), - [sym__newline_token] = ACTIONS(4707), - [aux_sym_insert_token1] = ACTIONS(4707), - [aux_sym_delete_token1] = ACTIONS(4707), - [aux_sym_highlight_token1] = ACTIONS(4707), - [aux_sym_edit_comment_token1] = ACTIONS(4707), - [anon_sym_CARET_LBRACK] = ACTIONS(4707), - [anon_sym_LBRACK_CARET] = ACTIONS(4707), - [sym_uri_autolink] = ACTIONS(4707), - [sym_email_autolink] = ACTIONS(4707), - [sym__whitespace_ge_2] = ACTIONS(4707), - [aux_sym__whitespace_token1] = ACTIONS(4709), - [sym__word_no_digit] = ACTIONS(4707), - [sym__digits] = ACTIONS(4707), - [anon_sym_DASH_DASH] = ACTIONS(4709), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4707), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4707), - [sym__code_span_start] = ACTIONS(4707), - [sym__emphasis_open_star] = ACTIONS(4707), - [sym__emphasis_open_underscore] = ACTIONS(4707), - [sym__emphasis_close_underscore] = ACTIONS(4707), - [sym__strikeout_open] = ACTIONS(4707), - [sym__latex_span_start] = ACTIONS(4707), - [sym__single_quote_open] = ACTIONS(4707), - [sym__double_quote_open] = ACTIONS(4707), - [sym__superscript_open] = ACTIONS(4707), + [STATE(1516)] = { + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__emphasis_close_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + }, + [STATE(1517)] = { + [sym__backslash_escape] = ACTIONS(4707), + [sym_entity_reference] = ACTIONS(4707), + [sym_numeric_character_reference] = ACTIONS(4707), + [anon_sym_LT] = ACTIONS(4709), + [anon_sym_GT] = ACTIONS(4707), + [anon_sym_BANG] = ACTIONS(4707), + [anon_sym_DQUOTE] = ACTIONS(4707), + [anon_sym_POUND] = ACTIONS(4707), + [anon_sym_DOLLAR] = ACTIONS(4707), + [anon_sym_PERCENT] = ACTIONS(4707), + [anon_sym_AMP] = ACTIONS(4709), + [anon_sym_SQUOTE] = ACTIONS(4707), + [anon_sym_PLUS] = ACTIONS(4707), + [anon_sym_COMMA] = ACTIONS(4707), + [anon_sym_DASH] = ACTIONS(4709), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_SLASH] = ACTIONS(4707), + [anon_sym_COLON] = ACTIONS(4707), + [anon_sym_SEMI] = ACTIONS(4707), + [anon_sym_EQ] = ACTIONS(4707), + [anon_sym_QMARK] = ACTIONS(4707), + [anon_sym_LBRACK] = ACTIONS(4709), + [anon_sym_BSLASH] = ACTIONS(4709), + [anon_sym_CARET] = ACTIONS(4709), + [anon_sym_BQUOTE] = ACTIONS(4707), + [anon_sym_LBRACE] = ACTIONS(4707), + [anon_sym_PIPE] = ACTIONS(4707), + [anon_sym_TILDE] = ACTIONS(4707), + [anon_sym_LPAREN] = ACTIONS(4707), + [anon_sym_RPAREN] = ACTIONS(4707), + [sym__newline_token] = ACTIONS(4707), + [aux_sym_insert_token1] = ACTIONS(4707), + [aux_sym_delete_token1] = ACTIONS(4707), + [aux_sym_highlight_token1] = ACTIONS(4707), + [aux_sym_edit_comment_token1] = ACTIONS(4707), + [anon_sym_CARET_LBRACK] = ACTIONS(4707), + [anon_sym_LBRACK_CARET] = ACTIONS(4707), + [sym_uri_autolink] = ACTIONS(4707), + [sym_email_autolink] = ACTIONS(4707), + [sym__whitespace_ge_2] = ACTIONS(4707), + [aux_sym__whitespace_token1] = ACTIONS(4709), + [sym__word_no_digit] = ACTIONS(4707), + [sym__digits] = ACTIONS(4707), + [anon_sym_DASH_DASH] = ACTIONS(4709), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4707), + [sym__code_span_start] = ACTIONS(4707), + [sym__emphasis_open_star] = ACTIONS(4707), + [sym__emphasis_open_underscore] = ACTIONS(4707), + [sym__emphasis_close_underscore] = ACTIONS(4707), + [sym__strikeout_open] = ACTIONS(4707), + [sym__latex_span_start] = ACTIONS(4707), + [sym__single_quote_open] = ACTIONS(4707), + [sym__double_quote_open] = ACTIONS(4707), + [sym__superscript_open] = ACTIONS(4707), [sym__subscript_open] = ACTIONS(4707), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4707), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4707), @@ -150423,74 +150221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4707), [sym__strong_emphasis_open_underscore] = ACTIONS(4707), }, - [STATE(1521)] = { - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__emphasis_close_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - }, - [STATE(1522)] = { + [STATE(1518)] = { [sym__backslash_escape] = ACTIONS(4711), [sym_entity_reference] = ACTIONS(4711), [sym_numeric_character_reference] = ACTIONS(4711), @@ -150557,7 +150288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4711), [sym__strong_emphasis_open_underscore] = ACTIONS(4711), }, - [STATE(1523)] = { + [STATE(1519)] = { [sym__backslash_escape] = ACTIONS(4715), [sym_entity_reference] = ACTIONS(4715), [sym_numeric_character_reference] = ACTIONS(4715), @@ -150624,7 +150355,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4715), [sym__strong_emphasis_open_underscore] = ACTIONS(4715), }, - [STATE(1524)] = { + [STATE(1520)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__emphasis_close_underscore] = ACTIONS(4391), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), + }, + [STATE(1521)] = { [sym__backslash_escape] = ACTIONS(4719), [sym_entity_reference] = ACTIONS(4719), [sym_numeric_character_reference] = ACTIONS(4719), @@ -150691,74 +150489,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4719), [sym__strong_emphasis_open_underscore] = ACTIONS(4719), }, - [STATE(1525)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__emphasis_close_underscore] = ACTIONS(4413), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), + [STATE(1522)] = { + [ts_builtin_sym_end] = ACTIONS(4271), + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), }, - [STATE(1526)] = { + [STATE(1523)] = { + [ts_builtin_sym_end] = ACTIONS(4611), + [sym__backslash_escape] = ACTIONS(4611), + [sym_entity_reference] = ACTIONS(4611), + [sym_numeric_character_reference] = ACTIONS(4611), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_GT] = ACTIONS(4611), + [anon_sym_BANG] = ACTIONS(4611), + [anon_sym_DQUOTE] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4611), + [anon_sym_DOLLAR] = ACTIONS(4611), + [anon_sym_PERCENT] = ACTIONS(4611), + [anon_sym_AMP] = ACTIONS(4613), + [anon_sym_SQUOTE] = ACTIONS(4611), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_COMMA] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_BSLASH] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4613), + [anon_sym_BQUOTE] = ACTIONS(4611), + [anon_sym_LBRACE] = ACTIONS(4611), + [anon_sym_PIPE] = ACTIONS(4611), + [anon_sym_TILDE] = ACTIONS(4611), + [anon_sym_LPAREN] = ACTIONS(4611), + [anon_sym_RPAREN] = ACTIONS(4611), + [sym__newline_token] = ACTIONS(4611), + [aux_sym_insert_token1] = ACTIONS(4611), + [aux_sym_delete_token1] = ACTIONS(4611), + [aux_sym_highlight_token1] = ACTIONS(4611), + [aux_sym_edit_comment_token1] = ACTIONS(4611), + [anon_sym_CARET_LBRACK] = ACTIONS(4611), + [anon_sym_LBRACK_CARET] = ACTIONS(4611), + [sym_uri_autolink] = ACTIONS(4611), + [sym_email_autolink] = ACTIONS(4611), + [sym__whitespace_ge_2] = ACTIONS(4611), + [aux_sym__whitespace_token1] = ACTIONS(4613), + [sym__word_no_digit] = ACTIONS(4611), + [sym__digits] = ACTIONS(4611), + [anon_sym_DASH_DASH] = ACTIONS(4613), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4611), + [sym__code_span_start] = ACTIONS(4611), + [sym__emphasis_open_star] = ACTIONS(4611), + [sym__emphasis_open_underscore] = ACTIONS(4611), + [sym__strikeout_open] = ACTIONS(4611), + [sym__latex_span_start] = ACTIONS(4611), + [sym__single_quote_open] = ACTIONS(4611), + [sym__double_quote_open] = ACTIONS(4611), + [sym__superscript_open] = ACTIONS(4611), + [sym__subscript_open] = ACTIONS(4611), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4611), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4611), + [sym__cite_author_in_text] = ACTIONS(4611), + [sym__cite_suppress_author] = ACTIONS(4611), + [sym__shortcode_open_escaped] = ACTIONS(4611), + [sym__shortcode_open] = ACTIONS(4611), + [sym__unclosed_span] = ACTIONS(4611), + [sym__strong_emphasis_open_star] = ACTIONS(4611), + [sym__strong_emphasis_open_underscore] = ACTIONS(4611), + }, + [STATE(1524)] = { [sym__backslash_escape] = ACTIONS(4723), [sym_entity_reference] = ACTIONS(4723), [sym_numeric_character_reference] = ACTIONS(4723), @@ -150825,141 +150690,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4723), [sym__strong_emphasis_open_underscore] = ACTIONS(4723), }, - [STATE(1527)] = { - [ts_builtin_sym_end] = ACTIONS(4275), - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - }, - [STATE(1528)] = { - [ts_builtin_sym_end] = ACTIONS(4591), - [sym__backslash_escape] = ACTIONS(4591), - [sym_entity_reference] = ACTIONS(4591), - [sym_numeric_character_reference] = ACTIONS(4591), - [anon_sym_LT] = ACTIONS(4593), - [anon_sym_GT] = ACTIONS(4591), - [anon_sym_BANG] = ACTIONS(4591), - [anon_sym_DQUOTE] = ACTIONS(4591), - [anon_sym_POUND] = ACTIONS(4591), - [anon_sym_DOLLAR] = ACTIONS(4591), - [anon_sym_PERCENT] = ACTIONS(4591), - [anon_sym_AMP] = ACTIONS(4593), - [anon_sym_SQUOTE] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_COMMA] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4593), - [anon_sym_SLASH] = ACTIONS(4591), - [anon_sym_COLON] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4591), - [anon_sym_EQ] = ACTIONS(4591), - [anon_sym_QMARK] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_BSLASH] = ACTIONS(4593), - [anon_sym_CARET] = ACTIONS(4593), - [anon_sym_BQUOTE] = ACTIONS(4591), - [anon_sym_LBRACE] = ACTIONS(4591), - [anon_sym_PIPE] = ACTIONS(4591), - [anon_sym_TILDE] = ACTIONS(4591), - [anon_sym_LPAREN] = ACTIONS(4591), - [anon_sym_RPAREN] = ACTIONS(4591), - [sym__newline_token] = ACTIONS(4591), - [aux_sym_insert_token1] = ACTIONS(4591), - [aux_sym_delete_token1] = ACTIONS(4591), - [aux_sym_highlight_token1] = ACTIONS(4591), - [aux_sym_edit_comment_token1] = ACTIONS(4591), - [anon_sym_CARET_LBRACK] = ACTIONS(4591), - [anon_sym_LBRACK_CARET] = ACTIONS(4591), - [sym_uri_autolink] = ACTIONS(4591), - [sym_email_autolink] = ACTIONS(4591), - [sym__whitespace_ge_2] = ACTIONS(4591), - [aux_sym__whitespace_token1] = ACTIONS(4593), - [sym__word_no_digit] = ACTIONS(4591), - [sym__digits] = ACTIONS(4591), - [anon_sym_DASH_DASH] = ACTIONS(4593), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4591), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), - [sym__code_span_start] = ACTIONS(4591), - [sym__emphasis_open_star] = ACTIONS(4591), - [sym__emphasis_open_underscore] = ACTIONS(4591), - [sym__strikeout_open] = ACTIONS(4591), - [sym__latex_span_start] = ACTIONS(4591), - [sym__single_quote_open] = ACTIONS(4591), - [sym__double_quote_open] = ACTIONS(4591), - [sym__superscript_open] = ACTIONS(4591), - [sym__subscript_open] = ACTIONS(4591), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4591), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4591), - [sym__cite_author_in_text] = ACTIONS(4591), - [sym__cite_suppress_author] = ACTIONS(4591), - [sym__shortcode_open_escaped] = ACTIONS(4591), - [sym__shortcode_open] = ACTIONS(4591), - [sym__unclosed_span] = ACTIONS(4591), - [sym__strong_emphasis_open_star] = ACTIONS(4591), - [sym__strong_emphasis_open_underscore] = ACTIONS(4591), + [STATE(1525)] = { + [sym__backslash_escape] = ACTIONS(4527), + [sym_entity_reference] = ACTIONS(4527), + [sym_numeric_character_reference] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_POUND] = ACTIONS(4527), + [anon_sym_DOLLAR] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_BSLASH] = ACTIONS(4529), + [anon_sym_CARET] = ACTIONS(4529), + [anon_sym_BQUOTE] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_RPAREN] = ACTIONS(4527), + [sym__newline_token] = ACTIONS(4527), + [aux_sym_insert_token1] = ACTIONS(4527), + [aux_sym_delete_token1] = ACTIONS(4527), + [aux_sym_highlight_token1] = ACTIONS(4527), + [aux_sym_edit_comment_token1] = ACTIONS(4527), + [anon_sym_CARET_LBRACK] = ACTIONS(4527), + [anon_sym_LBRACK_CARET] = ACTIONS(4527), + [sym_uri_autolink] = ACTIONS(4527), + [sym_email_autolink] = ACTIONS(4527), + [sym__whitespace_ge_2] = ACTIONS(4527), + [aux_sym__whitespace_token1] = ACTIONS(4529), + [sym__word_no_digit] = ACTIONS(4527), + [sym__digits] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), + [sym__code_span_start] = ACTIONS(4527), + [sym__emphasis_open_star] = ACTIONS(4527), + [sym__emphasis_open_underscore] = ACTIONS(4527), + [sym__emphasis_close_underscore] = ACTIONS(4527), + [sym__strikeout_open] = ACTIONS(4527), + [sym__latex_span_start] = ACTIONS(4527), + [sym__single_quote_open] = ACTIONS(4527), + [sym__double_quote_open] = ACTIONS(4527), + [sym__superscript_open] = ACTIONS(4527), + [sym__subscript_open] = ACTIONS(4527), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), + [sym__cite_author_in_text] = ACTIONS(4527), + [sym__cite_suppress_author] = ACTIONS(4527), + [sym__shortcode_open_escaped] = ACTIONS(4527), + [sym__shortcode_open] = ACTIONS(4527), + [sym__unclosed_span] = ACTIONS(4527), + [sym__strong_emphasis_open_star] = ACTIONS(4527), + [sym__strong_emphasis_open_underscore] = ACTIONS(4527), }, - [STATE(1529)] = { + [STATE(1526)] = { [sym__backslash_escape] = ACTIONS(4727), [sym_entity_reference] = ACTIONS(4727), [sym_numeric_character_reference] = ACTIONS(4727), @@ -151026,7 +150824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4727), [sym__strong_emphasis_open_underscore] = ACTIONS(4727), }, - [STATE(1530)] = { + [STATE(1527)] = { [sym__backslash_escape] = ACTIONS(4731), [sym_entity_reference] = ACTIONS(4731), [sym_numeric_character_reference] = ACTIONS(4731), @@ -151093,7 +150891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4731), [sym__strong_emphasis_open_underscore] = ACTIONS(4731), }, - [STATE(1531)] = { + [STATE(1528)] = { [sym__backslash_escape] = ACTIONS(4735), [sym_entity_reference] = ACTIONS(4735), [sym_numeric_character_reference] = ACTIONS(4735), @@ -151160,7 +150958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4735), [sym__strong_emphasis_open_underscore] = ACTIONS(4735), }, - [STATE(1532)] = { + [STATE(1529)] = { [sym__backslash_escape] = ACTIONS(4739), [sym_entity_reference] = ACTIONS(4739), [sym_numeric_character_reference] = ACTIONS(4739), @@ -151227,7 +151025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4739), [sym__strong_emphasis_open_underscore] = ACTIONS(4739), }, - [STATE(1533)] = { + [STATE(1530)] = { [sym__backslash_escape] = ACTIONS(4743), [sym_entity_reference] = ACTIONS(4743), [sym_numeric_character_reference] = ACTIONS(4743), @@ -151294,7 +151092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4743), [sym__strong_emphasis_open_underscore] = ACTIONS(4743), }, - [STATE(1534)] = { + [STATE(1531)] = { [sym__backslash_escape] = ACTIONS(4747), [sym_entity_reference] = ACTIONS(4747), [sym_numeric_character_reference] = ACTIONS(4747), @@ -151361,7 +151159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4747), [sym__strong_emphasis_open_underscore] = ACTIONS(4747), }, - [STATE(1535)] = { + [STATE(1532)] = { [sym__backslash_escape] = ACTIONS(4751), [sym_entity_reference] = ACTIONS(4751), [sym_numeric_character_reference] = ACTIONS(4751), @@ -151428,7 +151226,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4751), [sym__strong_emphasis_open_underscore] = ACTIONS(4751), }, - [STATE(1536)] = { + [STATE(1533)] = { + [ts_builtin_sym_end] = ACTIONS(4707), + [sym__backslash_escape] = ACTIONS(4707), + [sym_entity_reference] = ACTIONS(4707), + [sym_numeric_character_reference] = ACTIONS(4707), + [anon_sym_LT] = ACTIONS(4709), + [anon_sym_GT] = ACTIONS(4707), + [anon_sym_BANG] = ACTIONS(4707), + [anon_sym_DQUOTE] = ACTIONS(4707), + [anon_sym_POUND] = ACTIONS(4707), + [anon_sym_DOLLAR] = ACTIONS(4707), + [anon_sym_PERCENT] = ACTIONS(4707), + [anon_sym_AMP] = ACTIONS(4709), + [anon_sym_SQUOTE] = ACTIONS(4707), + [anon_sym_PLUS] = ACTIONS(4707), + [anon_sym_COMMA] = ACTIONS(4707), + [anon_sym_DASH] = ACTIONS(4709), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_SLASH] = ACTIONS(4707), + [anon_sym_COLON] = ACTIONS(4707), + [anon_sym_SEMI] = ACTIONS(4707), + [anon_sym_EQ] = ACTIONS(4707), + [anon_sym_QMARK] = ACTIONS(4707), + [anon_sym_LBRACK] = ACTIONS(4709), + [anon_sym_BSLASH] = ACTIONS(4709), + [anon_sym_CARET] = ACTIONS(4709), + [anon_sym_BQUOTE] = ACTIONS(4707), + [anon_sym_LBRACE] = ACTIONS(4707), + [anon_sym_PIPE] = ACTIONS(4707), + [anon_sym_TILDE] = ACTIONS(4707), + [anon_sym_LPAREN] = ACTIONS(4707), + [anon_sym_RPAREN] = ACTIONS(4707), + [sym__newline_token] = ACTIONS(4707), + [aux_sym_insert_token1] = ACTIONS(4707), + [aux_sym_delete_token1] = ACTIONS(4707), + [aux_sym_highlight_token1] = ACTIONS(4707), + [aux_sym_edit_comment_token1] = ACTIONS(4707), + [anon_sym_CARET_LBRACK] = ACTIONS(4707), + [anon_sym_LBRACK_CARET] = ACTIONS(4707), + [sym_uri_autolink] = ACTIONS(4707), + [sym_email_autolink] = ACTIONS(4707), + [sym__whitespace_ge_2] = ACTIONS(4707), + [aux_sym__whitespace_token1] = ACTIONS(4709), + [sym__word_no_digit] = ACTIONS(4707), + [sym__digits] = ACTIONS(4707), + [anon_sym_DASH_DASH] = ACTIONS(4709), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4707), + [sym__code_span_start] = ACTIONS(4707), + [sym__emphasis_open_star] = ACTIONS(4707), + [sym__emphasis_open_underscore] = ACTIONS(4707), + [sym__strikeout_open] = ACTIONS(4707), + [sym__latex_span_start] = ACTIONS(4707), + [sym__single_quote_open] = ACTIONS(4707), + [sym__double_quote_open] = ACTIONS(4707), + [sym__superscript_open] = ACTIONS(4707), + [sym__subscript_open] = ACTIONS(4707), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4707), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4707), + [sym__cite_author_in_text] = ACTIONS(4707), + [sym__cite_suppress_author] = ACTIONS(4707), + [sym__shortcode_open_escaped] = ACTIONS(4707), + [sym__shortcode_open] = ACTIONS(4707), + [sym__unclosed_span] = ACTIONS(4707), + [sym__strong_emphasis_open_star] = ACTIONS(4707), + [sym__strong_emphasis_open_underscore] = ACTIONS(4707), + }, + [STATE(1534)] = { [sym__backslash_escape] = ACTIONS(4755), [sym_entity_reference] = ACTIONS(4755), [sym_numeric_character_reference] = ACTIONS(4755), @@ -151495,7 +151360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4755), [sym__strong_emphasis_open_underscore] = ACTIONS(4755), }, - [STATE(1537)] = { + [STATE(1535)] = { [sym__backslash_escape] = ACTIONS(4759), [sym_entity_reference] = ACTIONS(4759), [sym_numeric_character_reference] = ACTIONS(4759), @@ -151562,74 +151427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4759), [sym__strong_emphasis_open_underscore] = ACTIONS(4759), }, - [STATE(1538)] = { - [ts_builtin_sym_end] = ACTIONS(4711), - [sym__backslash_escape] = ACTIONS(4711), - [sym_entity_reference] = ACTIONS(4711), - [sym_numeric_character_reference] = ACTIONS(4711), - [anon_sym_LT] = ACTIONS(4713), - [anon_sym_GT] = ACTIONS(4711), - [anon_sym_BANG] = ACTIONS(4711), - [anon_sym_DQUOTE] = ACTIONS(4711), - [anon_sym_POUND] = ACTIONS(4711), - [anon_sym_DOLLAR] = ACTIONS(4711), - [anon_sym_PERCENT] = ACTIONS(4711), - [anon_sym_AMP] = ACTIONS(4713), - [anon_sym_SQUOTE] = ACTIONS(4711), - [anon_sym_PLUS] = ACTIONS(4711), - [anon_sym_COMMA] = ACTIONS(4711), - [anon_sym_DASH] = ACTIONS(4713), - [anon_sym_DOT] = ACTIONS(4713), - [anon_sym_SLASH] = ACTIONS(4711), - [anon_sym_COLON] = ACTIONS(4711), - [anon_sym_SEMI] = ACTIONS(4711), - [anon_sym_EQ] = ACTIONS(4711), - [anon_sym_QMARK] = ACTIONS(4711), - [anon_sym_LBRACK] = ACTIONS(4713), - [anon_sym_BSLASH] = ACTIONS(4713), - [anon_sym_CARET] = ACTIONS(4713), - [anon_sym_BQUOTE] = ACTIONS(4711), - [anon_sym_LBRACE] = ACTIONS(4711), - [anon_sym_PIPE] = ACTIONS(4711), - [anon_sym_TILDE] = ACTIONS(4711), - [anon_sym_LPAREN] = ACTIONS(4711), - [anon_sym_RPAREN] = ACTIONS(4711), - [sym__newline_token] = ACTIONS(4711), - [aux_sym_insert_token1] = ACTIONS(4711), - [aux_sym_delete_token1] = ACTIONS(4711), - [aux_sym_highlight_token1] = ACTIONS(4711), - [aux_sym_edit_comment_token1] = ACTIONS(4711), - [anon_sym_CARET_LBRACK] = ACTIONS(4711), - [anon_sym_LBRACK_CARET] = ACTIONS(4711), - [sym_uri_autolink] = ACTIONS(4711), - [sym_email_autolink] = ACTIONS(4711), - [sym__whitespace_ge_2] = ACTIONS(4711), - [aux_sym__whitespace_token1] = ACTIONS(4713), - [sym__word_no_digit] = ACTIONS(4711), - [sym__digits] = ACTIONS(4711), - [anon_sym_DASH_DASH] = ACTIONS(4713), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4711), - [sym__code_span_start] = ACTIONS(4711), - [sym__emphasis_open_star] = ACTIONS(4711), - [sym__emphasis_open_underscore] = ACTIONS(4711), - [sym__strikeout_open] = ACTIONS(4711), - [sym__latex_span_start] = ACTIONS(4711), - [sym__single_quote_open] = ACTIONS(4711), - [sym__double_quote_open] = ACTIONS(4711), - [sym__superscript_open] = ACTIONS(4711), - [sym__subscript_open] = ACTIONS(4711), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4711), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4711), - [sym__cite_author_in_text] = ACTIONS(4711), - [sym__cite_suppress_author] = ACTIONS(4711), - [sym__shortcode_open_escaped] = ACTIONS(4711), - [sym__shortcode_open] = ACTIONS(4711), - [sym__unclosed_span] = ACTIONS(4711), - [sym__strong_emphasis_open_star] = ACTIONS(4711), - [sym__strong_emphasis_open_underscore] = ACTIONS(4711), - }, - [STATE(1539)] = { + [STATE(1536)] = { [sym__backslash_escape] = ACTIONS(4763), [sym_entity_reference] = ACTIONS(4763), [sym_numeric_character_reference] = ACTIONS(4763), @@ -151696,141 +151494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4763), [sym__strong_emphasis_open_underscore] = ACTIONS(4763), }, - [STATE(1540)] = { - [sym__backslash_escape] = ACTIONS(4527), - [sym_entity_reference] = ACTIONS(4527), - [sym_numeric_character_reference] = ACTIONS(4527), - [anon_sym_LT] = ACTIONS(4529), - [anon_sym_GT] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(4527), - [anon_sym_DQUOTE] = ACTIONS(4527), - [anon_sym_POUND] = ACTIONS(4527), - [anon_sym_DOLLAR] = ACTIONS(4527), - [anon_sym_PERCENT] = ACTIONS(4527), - [anon_sym_AMP] = ACTIONS(4529), - [anon_sym_SQUOTE] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(4527), - [anon_sym_COMMA] = ACTIONS(4527), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_DOT] = ACTIONS(4529), - [anon_sym_SLASH] = ACTIONS(4527), - [anon_sym_COLON] = ACTIONS(4527), - [anon_sym_SEMI] = ACTIONS(4527), - [anon_sym_EQ] = ACTIONS(4527), - [anon_sym_QMARK] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4529), - [anon_sym_BSLASH] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(4529), - [anon_sym_BQUOTE] = ACTIONS(4527), - [anon_sym_LBRACE] = ACTIONS(4527), - [anon_sym_PIPE] = ACTIONS(4527), - [anon_sym_TILDE] = ACTIONS(4527), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym_RPAREN] = ACTIONS(4527), - [sym__newline_token] = ACTIONS(4527), - [aux_sym_insert_token1] = ACTIONS(4527), - [aux_sym_delete_token1] = ACTIONS(4527), - [aux_sym_highlight_token1] = ACTIONS(4527), - [aux_sym_edit_comment_token1] = ACTIONS(4527), - [anon_sym_CARET_LBRACK] = ACTIONS(4527), - [anon_sym_LBRACK_CARET] = ACTIONS(4527), - [sym_uri_autolink] = ACTIONS(4527), - [sym_email_autolink] = ACTIONS(4527), - [sym__whitespace_ge_2] = ACTIONS(4527), - [aux_sym__whitespace_token1] = ACTIONS(4529), - [sym__word_no_digit] = ACTIONS(4527), - [sym__digits] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), - [sym__code_span_start] = ACTIONS(4527), - [sym__emphasis_open_star] = ACTIONS(4527), - [sym__emphasis_open_underscore] = ACTIONS(4527), - [sym__emphasis_close_underscore] = ACTIONS(4527), - [sym__strikeout_open] = ACTIONS(4527), - [sym__latex_span_start] = ACTIONS(4527), - [sym__single_quote_open] = ACTIONS(4527), - [sym__double_quote_open] = ACTIONS(4527), - [sym__superscript_open] = ACTIONS(4527), - [sym__subscript_open] = ACTIONS(4527), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), - [sym__cite_author_in_text] = ACTIONS(4527), - [sym__cite_suppress_author] = ACTIONS(4527), - [sym__shortcode_open_escaped] = ACTIONS(4527), - [sym__shortcode_open] = ACTIONS(4527), - [sym__unclosed_span] = ACTIONS(4527), - [sym__strong_emphasis_open_star] = ACTIONS(4527), - [sym__strong_emphasis_open_underscore] = ACTIONS(4527), - }, - [STATE(1541)] = { - [sym__backslash_escape] = ACTIONS(4531), - [sym_entity_reference] = ACTIONS(4531), - [sym_numeric_character_reference] = ACTIONS(4531), - [anon_sym_LT] = ACTIONS(4533), - [anon_sym_GT] = ACTIONS(4531), - [anon_sym_BANG] = ACTIONS(4531), - [anon_sym_DQUOTE] = ACTIONS(4531), - [anon_sym_POUND] = ACTIONS(4531), - [anon_sym_DOLLAR] = ACTIONS(4531), - [anon_sym_PERCENT] = ACTIONS(4531), - [anon_sym_AMP] = ACTIONS(4533), - [anon_sym_SQUOTE] = ACTIONS(4531), - [anon_sym_PLUS] = ACTIONS(4531), - [anon_sym_COMMA] = ACTIONS(4531), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4533), - [anon_sym_SLASH] = ACTIONS(4531), - [anon_sym_COLON] = ACTIONS(4531), - [anon_sym_SEMI] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4531), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_BSLASH] = ACTIONS(4533), - [anon_sym_CARET] = ACTIONS(4533), - [anon_sym_BQUOTE] = ACTIONS(4531), - [anon_sym_LBRACE] = ACTIONS(4531), - [anon_sym_PIPE] = ACTIONS(4531), - [anon_sym_TILDE] = ACTIONS(4531), - [anon_sym_LPAREN] = ACTIONS(4531), - [anon_sym_RPAREN] = ACTIONS(4531), - [sym__newline_token] = ACTIONS(4531), - [aux_sym_insert_token1] = ACTIONS(4531), - [aux_sym_delete_token1] = ACTIONS(4531), - [aux_sym_highlight_token1] = ACTIONS(4531), - [aux_sym_edit_comment_token1] = ACTIONS(4531), - [anon_sym_CARET_LBRACK] = ACTIONS(4531), - [anon_sym_LBRACK_CARET] = ACTIONS(4531), - [sym_uri_autolink] = ACTIONS(4531), - [sym_email_autolink] = ACTIONS(4531), - [sym__whitespace_ge_2] = ACTIONS(4531), - [aux_sym__whitespace_token1] = ACTIONS(4533), - [sym__word_no_digit] = ACTIONS(4531), - [sym__digits] = ACTIONS(4531), - [anon_sym_DASH_DASH] = ACTIONS(4533), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), - [sym__code_span_start] = ACTIONS(4531), - [sym__emphasis_open_star] = ACTIONS(4531), - [sym__emphasis_open_underscore] = ACTIONS(4531), - [sym__emphasis_close_underscore] = ACTIONS(4531), - [sym__strikeout_open] = ACTIONS(4531), - [sym__latex_span_start] = ACTIONS(4531), - [sym__single_quote_open] = ACTIONS(4531), - [sym__double_quote_open] = ACTIONS(4531), - [sym__superscript_open] = ACTIONS(4531), - [sym__subscript_open] = ACTIONS(4531), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), - [sym__cite_author_in_text] = ACTIONS(4531), - [sym__cite_suppress_author] = ACTIONS(4531), - [sym__shortcode_open_escaped] = ACTIONS(4531), - [sym__shortcode_open] = ACTIONS(4531), - [sym__unclosed_span] = ACTIONS(4531), - [sym__strong_emphasis_open_star] = ACTIONS(4531), - [sym__strong_emphasis_open_underscore] = ACTIONS(4531), - }, - [STATE(1542)] = { + [STATE(1537)] = { [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), [sym_numeric_character_reference] = ACTIONS(4209), @@ -151897,7 +151561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4209), [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, - [STATE(1543)] = { + [STATE(1538)] = { [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), [sym_numeric_character_reference] = ACTIONS(4213), @@ -151964,74 +151628,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4213), [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, - [STATE(1544)] = { - [ts_builtin_sym_end] = ACTIONS(4715), - [sym__backslash_escape] = ACTIONS(4715), - [sym_entity_reference] = ACTIONS(4715), - [sym_numeric_character_reference] = ACTIONS(4715), - [anon_sym_LT] = ACTIONS(4717), - [anon_sym_GT] = ACTIONS(4715), - [anon_sym_BANG] = ACTIONS(4715), - [anon_sym_DQUOTE] = ACTIONS(4715), - [anon_sym_POUND] = ACTIONS(4715), - [anon_sym_DOLLAR] = ACTIONS(4715), - [anon_sym_PERCENT] = ACTIONS(4715), - [anon_sym_AMP] = ACTIONS(4717), - [anon_sym_SQUOTE] = ACTIONS(4715), - [anon_sym_PLUS] = ACTIONS(4715), - [anon_sym_COMMA] = ACTIONS(4715), - [anon_sym_DASH] = ACTIONS(4717), - [anon_sym_DOT] = ACTIONS(4717), - [anon_sym_SLASH] = ACTIONS(4715), - [anon_sym_COLON] = ACTIONS(4715), - [anon_sym_SEMI] = ACTIONS(4715), - [anon_sym_EQ] = ACTIONS(4715), - [anon_sym_QMARK] = ACTIONS(4715), - [anon_sym_LBRACK] = ACTIONS(4717), - [anon_sym_BSLASH] = ACTIONS(4717), - [anon_sym_CARET] = ACTIONS(4717), - [anon_sym_BQUOTE] = ACTIONS(4715), - [anon_sym_LBRACE] = ACTIONS(4715), - [anon_sym_PIPE] = ACTIONS(4715), - [anon_sym_TILDE] = ACTIONS(4715), - [anon_sym_LPAREN] = ACTIONS(4715), - [anon_sym_RPAREN] = ACTIONS(4715), - [sym__newline_token] = ACTIONS(4715), - [aux_sym_insert_token1] = ACTIONS(4715), - [aux_sym_delete_token1] = ACTIONS(4715), - [aux_sym_highlight_token1] = ACTIONS(4715), - [aux_sym_edit_comment_token1] = ACTIONS(4715), - [anon_sym_CARET_LBRACK] = ACTIONS(4715), - [anon_sym_LBRACK_CARET] = ACTIONS(4715), - [sym_uri_autolink] = ACTIONS(4715), - [sym_email_autolink] = ACTIONS(4715), - [sym__whitespace_ge_2] = ACTIONS(4715), - [aux_sym__whitespace_token1] = ACTIONS(4717), - [sym__word_no_digit] = ACTIONS(4715), - [sym__digits] = ACTIONS(4715), - [anon_sym_DASH_DASH] = ACTIONS(4717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4715), - [sym__code_span_start] = ACTIONS(4715), - [sym__emphasis_open_star] = ACTIONS(4715), - [sym__emphasis_open_underscore] = ACTIONS(4715), - [sym__strikeout_open] = ACTIONS(4715), - [sym__latex_span_start] = ACTIONS(4715), - [sym__single_quote_open] = ACTIONS(4715), - [sym__double_quote_open] = ACTIONS(4715), - [sym__superscript_open] = ACTIONS(4715), - [sym__subscript_open] = ACTIONS(4715), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4715), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4715), - [sym__cite_author_in_text] = ACTIONS(4715), - [sym__cite_suppress_author] = ACTIONS(4715), - [sym__shortcode_open_escaped] = ACTIONS(4715), - [sym__shortcode_open] = ACTIONS(4715), - [sym__unclosed_span] = ACTIONS(4715), - [sym__strong_emphasis_open_star] = ACTIONS(4715), - [sym__strong_emphasis_open_underscore] = ACTIONS(4715), + [STATE(1539)] = { + [ts_builtin_sym_end] = ACTIONS(4711), + [sym__backslash_escape] = ACTIONS(4711), + [sym_entity_reference] = ACTIONS(4711), + [sym_numeric_character_reference] = ACTIONS(4711), + [anon_sym_LT] = ACTIONS(4713), + [anon_sym_GT] = ACTIONS(4711), + [anon_sym_BANG] = ACTIONS(4711), + [anon_sym_DQUOTE] = ACTIONS(4711), + [anon_sym_POUND] = ACTIONS(4711), + [anon_sym_DOLLAR] = ACTIONS(4711), + [anon_sym_PERCENT] = ACTIONS(4711), + [anon_sym_AMP] = ACTIONS(4713), + [anon_sym_SQUOTE] = ACTIONS(4711), + [anon_sym_PLUS] = ACTIONS(4711), + [anon_sym_COMMA] = ACTIONS(4711), + [anon_sym_DASH] = ACTIONS(4713), + [anon_sym_DOT] = ACTIONS(4713), + [anon_sym_SLASH] = ACTIONS(4711), + [anon_sym_COLON] = ACTIONS(4711), + [anon_sym_SEMI] = ACTIONS(4711), + [anon_sym_EQ] = ACTIONS(4711), + [anon_sym_QMARK] = ACTIONS(4711), + [anon_sym_LBRACK] = ACTIONS(4713), + [anon_sym_BSLASH] = ACTIONS(4713), + [anon_sym_CARET] = ACTIONS(4713), + [anon_sym_BQUOTE] = ACTIONS(4711), + [anon_sym_LBRACE] = ACTIONS(4711), + [anon_sym_PIPE] = ACTIONS(4711), + [anon_sym_TILDE] = ACTIONS(4711), + [anon_sym_LPAREN] = ACTIONS(4711), + [anon_sym_RPAREN] = ACTIONS(4711), + [sym__newline_token] = ACTIONS(4711), + [aux_sym_insert_token1] = ACTIONS(4711), + [aux_sym_delete_token1] = ACTIONS(4711), + [aux_sym_highlight_token1] = ACTIONS(4711), + [aux_sym_edit_comment_token1] = ACTIONS(4711), + [anon_sym_CARET_LBRACK] = ACTIONS(4711), + [anon_sym_LBRACK_CARET] = ACTIONS(4711), + [sym_uri_autolink] = ACTIONS(4711), + [sym_email_autolink] = ACTIONS(4711), + [sym__whitespace_ge_2] = ACTIONS(4711), + [aux_sym__whitespace_token1] = ACTIONS(4713), + [sym__word_no_digit] = ACTIONS(4711), + [sym__digits] = ACTIONS(4711), + [anon_sym_DASH_DASH] = ACTIONS(4713), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4711), + [sym__code_span_start] = ACTIONS(4711), + [sym__emphasis_open_star] = ACTIONS(4711), + [sym__emphasis_open_underscore] = ACTIONS(4711), + [sym__strikeout_open] = ACTIONS(4711), + [sym__latex_span_start] = ACTIONS(4711), + [sym__single_quote_open] = ACTIONS(4711), + [sym__double_quote_open] = ACTIONS(4711), + [sym__superscript_open] = ACTIONS(4711), + [sym__subscript_open] = ACTIONS(4711), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4711), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4711), + [sym__cite_author_in_text] = ACTIONS(4711), + [sym__cite_suppress_author] = ACTIONS(4711), + [sym__shortcode_open_escaped] = ACTIONS(4711), + [sym__shortcode_open] = ACTIONS(4711), + [sym__unclosed_span] = ACTIONS(4711), + [sym__strong_emphasis_open_star] = ACTIONS(4711), + [sym__strong_emphasis_open_underscore] = ACTIONS(4711), }, - [STATE(1545)] = { + [STATE(1540)] = { + [sym__backslash_escape] = ACTIONS(4531), + [sym_entity_reference] = ACTIONS(4531), + [sym_numeric_character_reference] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_DQUOTE] = ACTIONS(4531), + [anon_sym_POUND] = ACTIONS(4531), + [anon_sym_DOLLAR] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4533), + [anon_sym_SQUOTE] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_DASH] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4533), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_BSLASH] = ACTIONS(4533), + [anon_sym_CARET] = ACTIONS(4533), + [anon_sym_BQUOTE] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_TILDE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_RPAREN] = ACTIONS(4531), + [sym__newline_token] = ACTIONS(4531), + [aux_sym_insert_token1] = ACTIONS(4531), + [aux_sym_delete_token1] = ACTIONS(4531), + [aux_sym_highlight_token1] = ACTIONS(4531), + [aux_sym_edit_comment_token1] = ACTIONS(4531), + [anon_sym_CARET_LBRACK] = ACTIONS(4531), + [anon_sym_LBRACK_CARET] = ACTIONS(4531), + [sym_uri_autolink] = ACTIONS(4531), + [sym_email_autolink] = ACTIONS(4531), + [sym__whitespace_ge_2] = ACTIONS(4531), + [aux_sym__whitespace_token1] = ACTIONS(4533), + [sym__word_no_digit] = ACTIONS(4531), + [sym__digits] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), + [sym__code_span_start] = ACTIONS(4531), + [sym__emphasis_open_star] = ACTIONS(4531), + [sym__emphasis_open_underscore] = ACTIONS(4531), + [sym__emphasis_close_underscore] = ACTIONS(4531), + [sym__strikeout_open] = ACTIONS(4531), + [sym__latex_span_start] = ACTIONS(4531), + [sym__single_quote_open] = ACTIONS(4531), + [sym__double_quote_open] = ACTIONS(4531), + [sym__superscript_open] = ACTIONS(4531), + [sym__subscript_open] = ACTIONS(4531), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), + [sym__cite_author_in_text] = ACTIONS(4531), + [sym__cite_suppress_author] = ACTIONS(4531), + [sym__shortcode_open_escaped] = ACTIONS(4531), + [sym__shortcode_open] = ACTIONS(4531), + [sym__unclosed_span] = ACTIONS(4531), + [sym__strong_emphasis_open_star] = ACTIONS(4531), + [sym__strong_emphasis_open_underscore] = ACTIONS(4531), + }, + [STATE(1541)] = { [sym__backslash_escape] = ACTIONS(4535), [sym_entity_reference] = ACTIONS(4535), [sym_numeric_character_reference] = ACTIONS(4535), @@ -152098,7 +151829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4535), [sym__strong_emphasis_open_underscore] = ACTIONS(4535), }, - [STATE(1546)] = { + [STATE(1542)] = { [sym__backslash_escape] = ACTIONS(4539), [sym_entity_reference] = ACTIONS(4539), [sym_numeric_character_reference] = ACTIONS(4539), @@ -152165,7 +151896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4539), [sym__strong_emphasis_open_underscore] = ACTIONS(4539), }, - [STATE(1547)] = { + [STATE(1543)] = { [sym__backslash_escape] = ACTIONS(4543), [sym_entity_reference] = ACTIONS(4543), [sym_numeric_character_reference] = ACTIONS(4543), @@ -152232,7 +151963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4543), [sym__strong_emphasis_open_underscore] = ACTIONS(4543), }, - [STATE(1548)] = { + [STATE(1544)] = { [sym__backslash_escape] = ACTIONS(4547), [sym_entity_reference] = ACTIONS(4547), [sym_numeric_character_reference] = ACTIONS(4547), @@ -152299,74 +152030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4547), [sym__strong_emphasis_open_underscore] = ACTIONS(4547), }, - [STATE(1549)] = { - [sym__backslash_escape] = ACTIONS(4551), - [sym_entity_reference] = ACTIONS(4551), - [sym_numeric_character_reference] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(4553), - [anon_sym_GT] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4551), - [anon_sym_DQUOTE] = ACTIONS(4551), - [anon_sym_POUND] = ACTIONS(4551), - [anon_sym_DOLLAR] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_AMP] = ACTIONS(4553), - [anon_sym_SQUOTE] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_COLON] = ACTIONS(4551), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_EQ] = ACTIONS(4551), - [anon_sym_QMARK] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_BSLASH] = ACTIONS(4553), - [anon_sym_CARET] = ACTIONS(4553), - [anon_sym_BQUOTE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_PIPE] = ACTIONS(4551), - [anon_sym_TILDE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_RPAREN] = ACTIONS(4551), - [sym__newline_token] = ACTIONS(4551), - [aux_sym_insert_token1] = ACTIONS(4551), - [aux_sym_delete_token1] = ACTIONS(4551), - [aux_sym_highlight_token1] = ACTIONS(4551), - [aux_sym_edit_comment_token1] = ACTIONS(4551), - [anon_sym_CARET_LBRACK] = ACTIONS(4551), - [anon_sym_LBRACK_CARET] = ACTIONS(4551), - [sym_uri_autolink] = ACTIONS(4551), - [sym_email_autolink] = ACTIONS(4551), - [sym__whitespace_ge_2] = ACTIONS(4551), - [aux_sym__whitespace_token1] = ACTIONS(4553), - [sym__word_no_digit] = ACTIONS(4551), - [sym__digits] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4553), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), - [sym__code_span_start] = ACTIONS(4551), - [sym__emphasis_open_star] = ACTIONS(4551), - [sym__emphasis_open_underscore] = ACTIONS(4551), - [sym__emphasis_close_underscore] = ACTIONS(4551), - [sym__strikeout_open] = ACTIONS(4551), - [sym__latex_span_start] = ACTIONS(4551), - [sym__single_quote_open] = ACTIONS(4551), - [sym__double_quote_open] = ACTIONS(4551), - [sym__superscript_open] = ACTIONS(4551), - [sym__subscript_open] = ACTIONS(4551), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), - [sym__cite_author_in_text] = ACTIONS(4551), - [sym__cite_suppress_author] = ACTIONS(4551), - [sym__shortcode_open_escaped] = ACTIONS(4551), - [sym__shortcode_open] = ACTIONS(4551), - [sym__unclosed_span] = ACTIONS(4551), - [sym__strong_emphasis_open_star] = ACTIONS(4551), - [sym__strong_emphasis_open_underscore] = ACTIONS(4551), - }, - [STATE(1550)] = { + [STATE(1545)] = { [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -152433,7 +152097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4217), [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, - [STATE(1551)] = { + [STATE(1546)] = { [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -152500,74 +152164,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4221), [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, - [STATE(1552)] = { - [ts_builtin_sym_end] = ACTIONS(4719), - [sym__backslash_escape] = ACTIONS(4719), - [sym_entity_reference] = ACTIONS(4719), - [sym_numeric_character_reference] = ACTIONS(4719), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(4719), - [anon_sym_DQUOTE] = ACTIONS(4719), - [anon_sym_POUND] = ACTIONS(4719), - [anon_sym_DOLLAR] = ACTIONS(4719), - [anon_sym_PERCENT] = ACTIONS(4719), - [anon_sym_AMP] = ACTIONS(4721), - [anon_sym_SQUOTE] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_SLASH] = ACTIONS(4719), - [anon_sym_COLON] = ACTIONS(4719), - [anon_sym_SEMI] = ACTIONS(4719), - [anon_sym_EQ] = ACTIONS(4719), - [anon_sym_QMARK] = ACTIONS(4719), - [anon_sym_LBRACK] = ACTIONS(4721), - [anon_sym_BSLASH] = ACTIONS(4721), - [anon_sym_CARET] = ACTIONS(4721), - [anon_sym_BQUOTE] = ACTIONS(4719), - [anon_sym_LBRACE] = ACTIONS(4719), - [anon_sym_PIPE] = ACTIONS(4719), - [anon_sym_TILDE] = ACTIONS(4719), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_RPAREN] = ACTIONS(4719), - [sym__newline_token] = ACTIONS(4719), - [aux_sym_insert_token1] = ACTIONS(4719), - [aux_sym_delete_token1] = ACTIONS(4719), - [aux_sym_highlight_token1] = ACTIONS(4719), - [aux_sym_edit_comment_token1] = ACTIONS(4719), - [anon_sym_CARET_LBRACK] = ACTIONS(4719), - [anon_sym_LBRACK_CARET] = ACTIONS(4719), - [sym_uri_autolink] = ACTIONS(4719), - [sym_email_autolink] = ACTIONS(4719), - [sym__whitespace_ge_2] = ACTIONS(4719), - [aux_sym__whitespace_token1] = ACTIONS(4721), - [sym__word_no_digit] = ACTIONS(4719), - [sym__digits] = ACTIONS(4719), - [anon_sym_DASH_DASH] = ACTIONS(4721), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4719), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4719), - [sym__code_span_start] = ACTIONS(4719), - [sym__emphasis_open_star] = ACTIONS(4719), - [sym__emphasis_open_underscore] = ACTIONS(4719), - [sym__strikeout_open] = ACTIONS(4719), - [sym__latex_span_start] = ACTIONS(4719), - [sym__single_quote_open] = ACTIONS(4719), - [sym__double_quote_open] = ACTIONS(4719), - [sym__superscript_open] = ACTIONS(4719), - [sym__subscript_open] = ACTIONS(4719), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4719), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4719), - [sym__cite_author_in_text] = ACTIONS(4719), - [sym__cite_suppress_author] = ACTIONS(4719), - [sym__shortcode_open_escaped] = ACTIONS(4719), - [sym__shortcode_open] = ACTIONS(4719), - [sym__unclosed_span] = ACTIONS(4719), - [sym__strong_emphasis_open_star] = ACTIONS(4719), - [sym__strong_emphasis_open_underscore] = ACTIONS(4719), + [STATE(1547)] = { + [ts_builtin_sym_end] = ACTIONS(4715), + [sym__backslash_escape] = ACTIONS(4715), + [sym_entity_reference] = ACTIONS(4715), + [sym_numeric_character_reference] = ACTIONS(4715), + [anon_sym_LT] = ACTIONS(4717), + [anon_sym_GT] = ACTIONS(4715), + [anon_sym_BANG] = ACTIONS(4715), + [anon_sym_DQUOTE] = ACTIONS(4715), + [anon_sym_POUND] = ACTIONS(4715), + [anon_sym_DOLLAR] = ACTIONS(4715), + [anon_sym_PERCENT] = ACTIONS(4715), + [anon_sym_AMP] = ACTIONS(4717), + [anon_sym_SQUOTE] = ACTIONS(4715), + [anon_sym_PLUS] = ACTIONS(4715), + [anon_sym_COMMA] = ACTIONS(4715), + [anon_sym_DASH] = ACTIONS(4717), + [anon_sym_DOT] = ACTIONS(4717), + [anon_sym_SLASH] = ACTIONS(4715), + [anon_sym_COLON] = ACTIONS(4715), + [anon_sym_SEMI] = ACTIONS(4715), + [anon_sym_EQ] = ACTIONS(4715), + [anon_sym_QMARK] = ACTIONS(4715), + [anon_sym_LBRACK] = ACTIONS(4717), + [anon_sym_BSLASH] = ACTIONS(4717), + [anon_sym_CARET] = ACTIONS(4717), + [anon_sym_BQUOTE] = ACTIONS(4715), + [anon_sym_LBRACE] = ACTIONS(4715), + [anon_sym_PIPE] = ACTIONS(4715), + [anon_sym_TILDE] = ACTIONS(4715), + [anon_sym_LPAREN] = ACTIONS(4715), + [anon_sym_RPAREN] = ACTIONS(4715), + [sym__newline_token] = ACTIONS(4715), + [aux_sym_insert_token1] = ACTIONS(4715), + [aux_sym_delete_token1] = ACTIONS(4715), + [aux_sym_highlight_token1] = ACTIONS(4715), + [aux_sym_edit_comment_token1] = ACTIONS(4715), + [anon_sym_CARET_LBRACK] = ACTIONS(4715), + [anon_sym_LBRACK_CARET] = ACTIONS(4715), + [sym_uri_autolink] = ACTIONS(4715), + [sym_email_autolink] = ACTIONS(4715), + [sym__whitespace_ge_2] = ACTIONS(4715), + [aux_sym__whitespace_token1] = ACTIONS(4717), + [sym__word_no_digit] = ACTIONS(4715), + [sym__digits] = ACTIONS(4715), + [anon_sym_DASH_DASH] = ACTIONS(4717), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4715), + [sym__code_span_start] = ACTIONS(4715), + [sym__emphasis_open_star] = ACTIONS(4715), + [sym__emphasis_open_underscore] = ACTIONS(4715), + [sym__strikeout_open] = ACTIONS(4715), + [sym__latex_span_start] = ACTIONS(4715), + [sym__single_quote_open] = ACTIONS(4715), + [sym__double_quote_open] = ACTIONS(4715), + [sym__superscript_open] = ACTIONS(4715), + [sym__subscript_open] = ACTIONS(4715), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4715), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4715), + [sym__cite_author_in_text] = ACTIONS(4715), + [sym__cite_suppress_author] = ACTIONS(4715), + [sym__shortcode_open_escaped] = ACTIONS(4715), + [sym__shortcode_open] = ACTIONS(4715), + [sym__unclosed_span] = ACTIONS(4715), + [sym__strong_emphasis_open_star] = ACTIONS(4715), + [sym__strong_emphasis_open_underscore] = ACTIONS(4715), }, - [STATE(1553)] = { + [STATE(1548)] = { + [sym__backslash_escape] = ACTIONS(4551), + [sym_entity_reference] = ACTIONS(4551), + [sym_numeric_character_reference] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_POUND] = ACTIONS(4551), + [anon_sym_DOLLAR] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4553), + [anon_sym_SQUOTE] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_BSLASH] = ACTIONS(4553), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_BQUOTE] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_RPAREN] = ACTIONS(4551), + [sym__newline_token] = ACTIONS(4551), + [aux_sym_insert_token1] = ACTIONS(4551), + [aux_sym_delete_token1] = ACTIONS(4551), + [aux_sym_highlight_token1] = ACTIONS(4551), + [aux_sym_edit_comment_token1] = ACTIONS(4551), + [anon_sym_CARET_LBRACK] = ACTIONS(4551), + [anon_sym_LBRACK_CARET] = ACTIONS(4551), + [sym_uri_autolink] = ACTIONS(4551), + [sym_email_autolink] = ACTIONS(4551), + [sym__whitespace_ge_2] = ACTIONS(4551), + [aux_sym__whitespace_token1] = ACTIONS(4553), + [sym__word_no_digit] = ACTIONS(4551), + [sym__digits] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), + [sym__code_span_start] = ACTIONS(4551), + [sym__emphasis_open_star] = ACTIONS(4551), + [sym__emphasis_open_underscore] = ACTIONS(4551), + [sym__emphasis_close_underscore] = ACTIONS(4551), + [sym__strikeout_open] = ACTIONS(4551), + [sym__latex_span_start] = ACTIONS(4551), + [sym__single_quote_open] = ACTIONS(4551), + [sym__double_quote_open] = ACTIONS(4551), + [sym__superscript_open] = ACTIONS(4551), + [sym__subscript_open] = ACTIONS(4551), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), + [sym__cite_author_in_text] = ACTIONS(4551), + [sym__cite_suppress_author] = ACTIONS(4551), + [sym__shortcode_open_escaped] = ACTIONS(4551), + [sym__shortcode_open] = ACTIONS(4551), + [sym__unclosed_span] = ACTIONS(4551), + [sym__strong_emphasis_open_star] = ACTIONS(4551), + [sym__strong_emphasis_open_underscore] = ACTIONS(4551), + }, + [STATE(1549)] = { [sym__backslash_escape] = ACTIONS(4555), [sym_entity_reference] = ACTIONS(4555), [sym_numeric_character_reference] = ACTIONS(4555), @@ -152634,7 +152365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4555), [sym__strong_emphasis_open_underscore] = ACTIONS(4555), }, - [STATE(1554)] = { + [STATE(1550)] = { [sym__backslash_escape] = ACTIONS(4559), [sym_entity_reference] = ACTIONS(4559), [sym_numeric_character_reference] = ACTIONS(4559), @@ -152701,7 +152432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4559), [sym__strong_emphasis_open_underscore] = ACTIONS(4559), }, - [STATE(1555)] = { + [STATE(1551)] = { [sym__backslash_escape] = ACTIONS(4563), [sym_entity_reference] = ACTIONS(4563), [sym_numeric_character_reference] = ACTIONS(4563), @@ -152768,74 +152499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4563), [sym__strong_emphasis_open_underscore] = ACTIONS(4563), }, - [STATE(1556)] = { - [sym__backslash_escape] = ACTIONS(4567), - [sym_entity_reference] = ACTIONS(4567), - [sym_numeric_character_reference] = ACTIONS(4567), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4567), - [anon_sym_BANG] = ACTIONS(4567), - [anon_sym_DQUOTE] = ACTIONS(4567), - [anon_sym_POUND] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_COLON] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_QMARK] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4569), - [anon_sym_BSLASH] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym_BQUOTE] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_PIPE] = ACTIONS(4567), - [anon_sym_TILDE] = ACTIONS(4567), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [sym__newline_token] = ACTIONS(4567), - [aux_sym_insert_token1] = ACTIONS(4567), - [aux_sym_delete_token1] = ACTIONS(4567), - [aux_sym_highlight_token1] = ACTIONS(4567), - [aux_sym_edit_comment_token1] = ACTIONS(4567), - [anon_sym_CARET_LBRACK] = ACTIONS(4567), - [anon_sym_LBRACK_CARET] = ACTIONS(4567), - [sym_uri_autolink] = ACTIONS(4567), - [sym_email_autolink] = ACTIONS(4567), - [sym__whitespace_ge_2] = ACTIONS(4567), - [aux_sym__whitespace_token1] = ACTIONS(4569), - [sym__word_no_digit] = ACTIONS(4567), - [sym__digits] = ACTIONS(4567), - [anon_sym_DASH_DASH] = ACTIONS(4569), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), - [sym__code_span_start] = ACTIONS(4567), - [sym__emphasis_open_star] = ACTIONS(4567), - [sym__emphasis_open_underscore] = ACTIONS(4567), - [sym__emphasis_close_underscore] = ACTIONS(4567), - [sym__strikeout_open] = ACTIONS(4567), - [sym__latex_span_start] = ACTIONS(4567), - [sym__single_quote_open] = ACTIONS(4567), - [sym__double_quote_open] = ACTIONS(4567), - [sym__superscript_open] = ACTIONS(4567), - [sym__subscript_open] = ACTIONS(4567), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), - [sym__cite_author_in_text] = ACTIONS(4567), - [sym__cite_suppress_author] = ACTIONS(4567), - [sym__shortcode_open_escaped] = ACTIONS(4567), - [sym__shortcode_open] = ACTIONS(4567), - [sym__unclosed_span] = ACTIONS(4567), - [sym__strong_emphasis_open_star] = ACTIONS(4567), - [sym__strong_emphasis_open_underscore] = ACTIONS(4567), - }, - [STATE(1557)] = { + [STATE(1552)] = { [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -152902,74 +152566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4225), [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, - [STATE(1558)] = { - [ts_builtin_sym_end] = ACTIONS(4619), - [sym__backslash_escape] = ACTIONS(4619), - [sym_entity_reference] = ACTIONS(4619), - [sym_numeric_character_reference] = ACTIONS(4619), - [anon_sym_LT] = ACTIONS(4621), - [anon_sym_GT] = ACTIONS(4619), - [anon_sym_BANG] = ACTIONS(4619), - [anon_sym_DQUOTE] = ACTIONS(4619), - [anon_sym_POUND] = ACTIONS(4619), - [anon_sym_DOLLAR] = ACTIONS(4619), - [anon_sym_PERCENT] = ACTIONS(4619), - [anon_sym_AMP] = ACTIONS(4621), - [anon_sym_SQUOTE] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4619), - [anon_sym_COMMA] = ACTIONS(4619), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_DOT] = ACTIONS(4621), - [anon_sym_SLASH] = ACTIONS(4619), - [anon_sym_COLON] = ACTIONS(4619), - [anon_sym_SEMI] = ACTIONS(4619), - [anon_sym_EQ] = ACTIONS(4619), - [anon_sym_QMARK] = ACTIONS(4619), - [anon_sym_LBRACK] = ACTIONS(4621), - [anon_sym_BSLASH] = ACTIONS(4621), - [anon_sym_CARET] = ACTIONS(4621), - [anon_sym_BQUOTE] = ACTIONS(4619), - [anon_sym_LBRACE] = ACTIONS(4619), - [anon_sym_PIPE] = ACTIONS(4619), - [anon_sym_TILDE] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(4619), - [anon_sym_RPAREN] = ACTIONS(4619), - [sym__newline_token] = ACTIONS(4619), - [aux_sym_insert_token1] = ACTIONS(4619), - [aux_sym_delete_token1] = ACTIONS(4619), - [aux_sym_highlight_token1] = ACTIONS(4619), - [aux_sym_edit_comment_token1] = ACTIONS(4619), - [anon_sym_CARET_LBRACK] = ACTIONS(4619), - [anon_sym_LBRACK_CARET] = ACTIONS(4619), - [sym_uri_autolink] = ACTIONS(4619), - [sym_email_autolink] = ACTIONS(4619), - [sym__whitespace_ge_2] = ACTIONS(4619), - [aux_sym__whitespace_token1] = ACTIONS(4621), - [sym__word_no_digit] = ACTIONS(4619), - [sym__digits] = ACTIONS(4619), - [anon_sym_DASH_DASH] = ACTIONS(4621), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4619), - [sym__code_span_start] = ACTIONS(4619), - [sym__emphasis_open_star] = ACTIONS(4619), - [sym__emphasis_open_underscore] = ACTIONS(4619), - [sym__strikeout_open] = ACTIONS(4619), - [sym__latex_span_start] = ACTIONS(4619), - [sym__single_quote_open] = ACTIONS(4619), - [sym__double_quote_open] = ACTIONS(4619), - [sym__superscript_open] = ACTIONS(4619), - [sym__subscript_open] = ACTIONS(4619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4619), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4619), - [sym__cite_author_in_text] = ACTIONS(4619), - [sym__cite_suppress_author] = ACTIONS(4619), - [sym__shortcode_open_escaped] = ACTIONS(4619), - [sym__shortcode_open] = ACTIONS(4619), - [sym__unclosed_span] = ACTIONS(4619), - [sym__strong_emphasis_open_star] = ACTIONS(4619), - [sym__strong_emphasis_open_underscore] = ACTIONS(4619), - }, - [STATE(1559)] = { + [STATE(1553)] = { [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -153036,74 +152633,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4229), [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, - [STATE(1560)] = { - [ts_builtin_sym_end] = ACTIONS(4623), - [sym__backslash_escape] = ACTIONS(4623), - [sym_entity_reference] = ACTIONS(4623), - [sym_numeric_character_reference] = ACTIONS(4623), - [anon_sym_LT] = ACTIONS(4625), - [anon_sym_GT] = ACTIONS(4623), - [anon_sym_BANG] = ACTIONS(4623), - [anon_sym_DQUOTE] = ACTIONS(4623), - [anon_sym_POUND] = ACTIONS(4623), - [anon_sym_DOLLAR] = ACTIONS(4623), - [anon_sym_PERCENT] = ACTIONS(4623), - [anon_sym_AMP] = ACTIONS(4625), - [anon_sym_SQUOTE] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4623), - [anon_sym_COMMA] = ACTIONS(4623), - [anon_sym_DASH] = ACTIONS(4625), - [anon_sym_DOT] = ACTIONS(4625), - [anon_sym_SLASH] = ACTIONS(4623), - [anon_sym_COLON] = ACTIONS(4623), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_EQ] = ACTIONS(4623), - [anon_sym_QMARK] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4625), - [anon_sym_BSLASH] = ACTIONS(4625), - [anon_sym_CARET] = ACTIONS(4625), - [anon_sym_BQUOTE] = ACTIONS(4623), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_PIPE] = ACTIONS(4623), - [anon_sym_TILDE] = ACTIONS(4623), - [anon_sym_LPAREN] = ACTIONS(4623), - [anon_sym_RPAREN] = ACTIONS(4623), - [sym__newline_token] = ACTIONS(4623), - [aux_sym_insert_token1] = ACTIONS(4623), - [aux_sym_delete_token1] = ACTIONS(4623), - [aux_sym_highlight_token1] = ACTIONS(4623), - [aux_sym_edit_comment_token1] = ACTIONS(4623), - [anon_sym_CARET_LBRACK] = ACTIONS(4623), - [anon_sym_LBRACK_CARET] = ACTIONS(4623), - [sym_uri_autolink] = ACTIONS(4623), - [sym_email_autolink] = ACTIONS(4623), - [sym__whitespace_ge_2] = ACTIONS(4623), - [aux_sym__whitespace_token1] = ACTIONS(4625), - [sym__word_no_digit] = ACTIONS(4623), - [sym__digits] = ACTIONS(4623), - [anon_sym_DASH_DASH] = ACTIONS(4625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4623), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4623), - [sym__code_span_start] = ACTIONS(4623), - [sym__emphasis_open_star] = ACTIONS(4623), - [sym__emphasis_open_underscore] = ACTIONS(4623), - [sym__strikeout_open] = ACTIONS(4623), - [sym__latex_span_start] = ACTIONS(4623), - [sym__single_quote_open] = ACTIONS(4623), - [sym__double_quote_open] = ACTIONS(4623), - [sym__superscript_open] = ACTIONS(4623), - [sym__subscript_open] = ACTIONS(4623), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4623), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4623), - [sym__cite_author_in_text] = ACTIONS(4623), - [sym__cite_suppress_author] = ACTIONS(4623), - [sym__shortcode_open_escaped] = ACTIONS(4623), - [sym__shortcode_open] = ACTIONS(4623), - [sym__unclosed_span] = ACTIONS(4623), - [sym__strong_emphasis_open_star] = ACTIONS(4623), - [sym__strong_emphasis_open_underscore] = ACTIONS(4623), + [STATE(1554)] = { + [ts_builtin_sym_end] = ACTIONS(4615), + [sym__backslash_escape] = ACTIONS(4615), + [sym_entity_reference] = ACTIONS(4615), + [sym_numeric_character_reference] = ACTIONS(4615), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_GT] = ACTIONS(4615), + [anon_sym_BANG] = ACTIONS(4615), + [anon_sym_DQUOTE] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4615), + [anon_sym_DOLLAR] = ACTIONS(4615), + [anon_sym_PERCENT] = ACTIONS(4615), + [anon_sym_AMP] = ACTIONS(4617), + [anon_sym_SQUOTE] = ACTIONS(4615), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_COMMA] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [anon_sym_LBRACK] = ACTIONS(4617), + [anon_sym_BSLASH] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4617), + [anon_sym_BQUOTE] = ACTIONS(4615), + [anon_sym_LBRACE] = ACTIONS(4615), + [anon_sym_PIPE] = ACTIONS(4615), + [anon_sym_TILDE] = ACTIONS(4615), + [anon_sym_LPAREN] = ACTIONS(4615), + [anon_sym_RPAREN] = ACTIONS(4615), + [sym__newline_token] = ACTIONS(4615), + [aux_sym_insert_token1] = ACTIONS(4615), + [aux_sym_delete_token1] = ACTIONS(4615), + [aux_sym_highlight_token1] = ACTIONS(4615), + [aux_sym_edit_comment_token1] = ACTIONS(4615), + [anon_sym_CARET_LBRACK] = ACTIONS(4615), + [anon_sym_LBRACK_CARET] = ACTIONS(4615), + [sym_uri_autolink] = ACTIONS(4615), + [sym_email_autolink] = ACTIONS(4615), + [sym__whitespace_ge_2] = ACTIONS(4615), + [aux_sym__whitespace_token1] = ACTIONS(4617), + [sym__word_no_digit] = ACTIONS(4615), + [sym__digits] = ACTIONS(4615), + [anon_sym_DASH_DASH] = ACTIONS(4617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4615), + [sym__code_span_start] = ACTIONS(4615), + [sym__emphasis_open_star] = ACTIONS(4615), + [sym__emphasis_open_underscore] = ACTIONS(4615), + [sym__strikeout_open] = ACTIONS(4615), + [sym__latex_span_start] = ACTIONS(4615), + [sym__single_quote_open] = ACTIONS(4615), + [sym__double_quote_open] = ACTIONS(4615), + [sym__superscript_open] = ACTIONS(4615), + [sym__subscript_open] = ACTIONS(4615), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4615), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4615), + [sym__cite_author_in_text] = ACTIONS(4615), + [sym__cite_suppress_author] = ACTIONS(4615), + [sym__shortcode_open_escaped] = ACTIONS(4615), + [sym__shortcode_open] = ACTIONS(4615), + [sym__unclosed_span] = ACTIONS(4615), + [sym__strong_emphasis_open_star] = ACTIONS(4615), + [sym__strong_emphasis_open_underscore] = ACTIONS(4615), }, - [STATE(1561)] = { + [STATE(1555)] = { + [sym__backslash_escape] = ACTIONS(4567), + [sym_entity_reference] = ACTIONS(4567), + [sym_numeric_character_reference] = ACTIONS(4567), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_DQUOTE] = ACTIONS(4567), + [anon_sym_POUND] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_BSLASH] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym_BQUOTE] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(4567), + [anon_sym_TILDE] = ACTIONS(4567), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [sym__newline_token] = ACTIONS(4567), + [aux_sym_insert_token1] = ACTIONS(4567), + [aux_sym_delete_token1] = ACTIONS(4567), + [aux_sym_highlight_token1] = ACTIONS(4567), + [aux_sym_edit_comment_token1] = ACTIONS(4567), + [anon_sym_CARET_LBRACK] = ACTIONS(4567), + [anon_sym_LBRACK_CARET] = ACTIONS(4567), + [sym_uri_autolink] = ACTIONS(4567), + [sym_email_autolink] = ACTIONS(4567), + [sym__whitespace_ge_2] = ACTIONS(4567), + [aux_sym__whitespace_token1] = ACTIONS(4569), + [sym__word_no_digit] = ACTIONS(4567), + [sym__digits] = ACTIONS(4567), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), + [sym__code_span_start] = ACTIONS(4567), + [sym__emphasis_open_star] = ACTIONS(4567), + [sym__emphasis_open_underscore] = ACTIONS(4567), + [sym__emphasis_close_underscore] = ACTIONS(4567), + [sym__strikeout_open] = ACTIONS(4567), + [sym__latex_span_start] = ACTIONS(4567), + [sym__single_quote_open] = ACTIONS(4567), + [sym__double_quote_open] = ACTIONS(4567), + [sym__superscript_open] = ACTIONS(4567), + [sym__subscript_open] = ACTIONS(4567), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), + [sym__cite_author_in_text] = ACTIONS(4567), + [sym__cite_suppress_author] = ACTIONS(4567), + [sym__shortcode_open_escaped] = ACTIONS(4567), + [sym__shortcode_open] = ACTIONS(4567), + [sym__unclosed_span] = ACTIONS(4567), + [sym__strong_emphasis_open_star] = ACTIONS(4567), + [sym__strong_emphasis_open_underscore] = ACTIONS(4567), + }, + [STATE(1556)] = { [sym__backslash_escape] = ACTIONS(4571), [sym_entity_reference] = ACTIONS(4571), [sym_numeric_character_reference] = ACTIONS(4571), @@ -153170,74 +152834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4571), [sym__strong_emphasis_open_underscore] = ACTIONS(4571), }, - [STATE(1562)] = { - [sym__backslash_escape] = ACTIONS(4575), - [sym_entity_reference] = ACTIONS(4575), - [sym_numeric_character_reference] = ACTIONS(4575), - [anon_sym_LT] = ACTIONS(4577), - [anon_sym_GT] = ACTIONS(4575), - [anon_sym_BANG] = ACTIONS(4575), - [anon_sym_DQUOTE] = ACTIONS(4575), - [anon_sym_POUND] = ACTIONS(4575), - [anon_sym_DOLLAR] = ACTIONS(4575), - [anon_sym_PERCENT] = ACTIONS(4575), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_SQUOTE] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4575), - [anon_sym_COMMA] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4577), - [anon_sym_SLASH] = ACTIONS(4575), - [anon_sym_COLON] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4575), - [anon_sym_EQ] = ACTIONS(4575), - [anon_sym_QMARK] = ACTIONS(4575), - [anon_sym_LBRACK] = ACTIONS(4577), - [anon_sym_BSLASH] = ACTIONS(4577), - [anon_sym_CARET] = ACTIONS(4577), - [anon_sym_BQUOTE] = ACTIONS(4575), - [anon_sym_LBRACE] = ACTIONS(4575), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_TILDE] = ACTIONS(4575), - [anon_sym_LPAREN] = ACTIONS(4575), - [anon_sym_RPAREN] = ACTIONS(4575), - [sym__newline_token] = ACTIONS(4575), - [aux_sym_insert_token1] = ACTIONS(4575), - [aux_sym_delete_token1] = ACTIONS(4575), - [aux_sym_highlight_token1] = ACTIONS(4575), - [aux_sym_edit_comment_token1] = ACTIONS(4575), - [anon_sym_CARET_LBRACK] = ACTIONS(4575), - [anon_sym_LBRACK_CARET] = ACTIONS(4575), - [sym_uri_autolink] = ACTIONS(4575), - [sym_email_autolink] = ACTIONS(4575), - [sym__whitespace_ge_2] = ACTIONS(4575), - [aux_sym__whitespace_token1] = ACTIONS(4577), - [sym__word_no_digit] = ACTIONS(4575), - [sym__digits] = ACTIONS(4575), - [anon_sym_DASH_DASH] = ACTIONS(4577), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), - [sym__code_span_start] = ACTIONS(4575), - [sym__emphasis_open_star] = ACTIONS(4575), - [sym__emphasis_open_underscore] = ACTIONS(4575), - [sym__emphasis_close_underscore] = ACTIONS(4575), - [sym__strikeout_open] = ACTIONS(4575), - [sym__latex_span_start] = ACTIONS(4575), - [sym__single_quote_open] = ACTIONS(4575), - [sym__double_quote_open] = ACTIONS(4575), - [sym__superscript_open] = ACTIONS(4575), - [sym__subscript_open] = ACTIONS(4575), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), - [sym__cite_author_in_text] = ACTIONS(4575), - [sym__cite_suppress_author] = ACTIONS(4575), - [sym__shortcode_open_escaped] = ACTIONS(4575), - [sym__shortcode_open] = ACTIONS(4575), - [sym__unclosed_span] = ACTIONS(4575), - [sym__strong_emphasis_open_star] = ACTIONS(4575), - [sym__strong_emphasis_open_underscore] = ACTIONS(4575), - }, - [STATE(1563)] = { + [STATE(1557)] = { [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -153304,7 +152901,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4233), [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, - [STATE(1564)] = { + [STATE(1558)] = { + [ts_builtin_sym_end] = ACTIONS(4619), + [sym__backslash_escape] = ACTIONS(4619), + [sym_entity_reference] = ACTIONS(4619), + [sym_numeric_character_reference] = ACTIONS(4619), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_GT] = ACTIONS(4619), + [anon_sym_BANG] = ACTIONS(4619), + [anon_sym_DQUOTE] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4619), + [anon_sym_DOLLAR] = ACTIONS(4619), + [anon_sym_PERCENT] = ACTIONS(4619), + [anon_sym_AMP] = ACTIONS(4621), + [anon_sym_SQUOTE] = ACTIONS(4619), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_COMMA] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [anon_sym_LBRACK] = ACTIONS(4621), + [anon_sym_BSLASH] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4621), + [anon_sym_BQUOTE] = ACTIONS(4619), + [anon_sym_LBRACE] = ACTIONS(4619), + [anon_sym_PIPE] = ACTIONS(4619), + [anon_sym_TILDE] = ACTIONS(4619), + [anon_sym_LPAREN] = ACTIONS(4619), + [anon_sym_RPAREN] = ACTIONS(4619), + [sym__newline_token] = ACTIONS(4619), + [aux_sym_insert_token1] = ACTIONS(4619), + [aux_sym_delete_token1] = ACTIONS(4619), + [aux_sym_highlight_token1] = ACTIONS(4619), + [aux_sym_edit_comment_token1] = ACTIONS(4619), + [anon_sym_CARET_LBRACK] = ACTIONS(4619), + [anon_sym_LBRACK_CARET] = ACTIONS(4619), + [sym_uri_autolink] = ACTIONS(4619), + [sym_email_autolink] = ACTIONS(4619), + [sym__whitespace_ge_2] = ACTIONS(4619), + [aux_sym__whitespace_token1] = ACTIONS(4621), + [sym__word_no_digit] = ACTIONS(4619), + [sym__digits] = ACTIONS(4619), + [anon_sym_DASH_DASH] = ACTIONS(4621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4619), + [sym__code_span_start] = ACTIONS(4619), + [sym__emphasis_open_star] = ACTIONS(4619), + [sym__emphasis_open_underscore] = ACTIONS(4619), + [sym__strikeout_open] = ACTIONS(4619), + [sym__latex_span_start] = ACTIONS(4619), + [sym__single_quote_open] = ACTIONS(4619), + [sym__double_quote_open] = ACTIONS(4619), + [sym__superscript_open] = ACTIONS(4619), + [sym__subscript_open] = ACTIONS(4619), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4619), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4619), + [sym__cite_author_in_text] = ACTIONS(4619), + [sym__cite_suppress_author] = ACTIONS(4619), + [sym__shortcode_open_escaped] = ACTIONS(4619), + [sym__shortcode_open] = ACTIONS(4619), + [sym__unclosed_span] = ACTIONS(4619), + [sym__strong_emphasis_open_star] = ACTIONS(4619), + [sym__strong_emphasis_open_underscore] = ACTIONS(4619), + }, + [STATE(1559)] = { [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -153371,74 +153035,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4237), [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, - [STATE(1565)] = { - [ts_builtin_sym_end] = ACTIONS(4413), - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), + [STATE(1560)] = { + [ts_builtin_sym_end] = ACTIONS(4391), + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), }, - [STATE(1566)] = { + [STATE(1561)] = { [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -153505,7 +153169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4241), [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, - [STATE(1567)] = { + [STATE(1562)] = { [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -153572,74 +153236,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4245), [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, - [STATE(1568)] = { - [ts_builtin_sym_end] = ACTIONS(4723), - [sym__backslash_escape] = ACTIONS(4723), - [sym_entity_reference] = ACTIONS(4723), - [sym_numeric_character_reference] = ACTIONS(4723), - [anon_sym_LT] = ACTIONS(4725), - [anon_sym_GT] = ACTIONS(4723), - [anon_sym_BANG] = ACTIONS(4723), - [anon_sym_DQUOTE] = ACTIONS(4723), - [anon_sym_POUND] = ACTIONS(4723), - [anon_sym_DOLLAR] = ACTIONS(4723), - [anon_sym_PERCENT] = ACTIONS(4723), - [anon_sym_AMP] = ACTIONS(4725), - [anon_sym_SQUOTE] = ACTIONS(4723), - [anon_sym_PLUS] = ACTIONS(4723), - [anon_sym_COMMA] = ACTIONS(4723), - [anon_sym_DASH] = ACTIONS(4725), - [anon_sym_DOT] = ACTIONS(4725), - [anon_sym_SLASH] = ACTIONS(4723), - [anon_sym_COLON] = ACTIONS(4723), - [anon_sym_SEMI] = ACTIONS(4723), - [anon_sym_EQ] = ACTIONS(4723), - [anon_sym_QMARK] = ACTIONS(4723), - [anon_sym_LBRACK] = ACTIONS(4725), - [anon_sym_BSLASH] = ACTIONS(4725), - [anon_sym_CARET] = ACTIONS(4725), - [anon_sym_BQUOTE] = ACTIONS(4723), - [anon_sym_LBRACE] = ACTIONS(4723), - [anon_sym_PIPE] = ACTIONS(4723), - [anon_sym_TILDE] = ACTIONS(4723), - [anon_sym_LPAREN] = ACTIONS(4723), - [anon_sym_RPAREN] = ACTIONS(4723), - [sym__newline_token] = ACTIONS(4723), - [aux_sym_insert_token1] = ACTIONS(4723), - [aux_sym_delete_token1] = ACTIONS(4723), - [aux_sym_highlight_token1] = ACTIONS(4723), - [aux_sym_edit_comment_token1] = ACTIONS(4723), - [anon_sym_CARET_LBRACK] = ACTIONS(4723), - [anon_sym_LBRACK_CARET] = ACTIONS(4723), - [sym_uri_autolink] = ACTIONS(4723), - [sym_email_autolink] = ACTIONS(4723), - [sym__whitespace_ge_2] = ACTIONS(4723), - [aux_sym__whitespace_token1] = ACTIONS(4725), - [sym__word_no_digit] = ACTIONS(4723), - [sym__digits] = ACTIONS(4723), - [anon_sym_DASH_DASH] = ACTIONS(4725), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4723), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4723), - [sym__code_span_start] = ACTIONS(4723), - [sym__emphasis_open_star] = ACTIONS(4723), - [sym__emphasis_open_underscore] = ACTIONS(4723), - [sym__strikeout_open] = ACTIONS(4723), - [sym__latex_span_start] = ACTIONS(4723), - [sym__single_quote_open] = ACTIONS(4723), - [sym__double_quote_open] = ACTIONS(4723), - [sym__superscript_open] = ACTIONS(4723), - [sym__subscript_open] = ACTIONS(4723), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4723), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4723), - [sym__cite_author_in_text] = ACTIONS(4723), - [sym__cite_suppress_author] = ACTIONS(4723), - [sym__shortcode_open_escaped] = ACTIONS(4723), - [sym__shortcode_open] = ACTIONS(4723), - [sym__unclosed_span] = ACTIONS(4723), - [sym__strong_emphasis_open_star] = ACTIONS(4723), - [sym__strong_emphasis_open_underscore] = ACTIONS(4723), + [STATE(1563)] = { + [ts_builtin_sym_end] = ACTIONS(4719), + [sym__backslash_escape] = ACTIONS(4719), + [sym_entity_reference] = ACTIONS(4719), + [sym_numeric_character_reference] = ACTIONS(4719), + [anon_sym_LT] = ACTIONS(4721), + [anon_sym_GT] = ACTIONS(4719), + [anon_sym_BANG] = ACTIONS(4719), + [anon_sym_DQUOTE] = ACTIONS(4719), + [anon_sym_POUND] = ACTIONS(4719), + [anon_sym_DOLLAR] = ACTIONS(4719), + [anon_sym_PERCENT] = ACTIONS(4719), + [anon_sym_AMP] = ACTIONS(4721), + [anon_sym_SQUOTE] = ACTIONS(4719), + [anon_sym_PLUS] = ACTIONS(4719), + [anon_sym_COMMA] = ACTIONS(4719), + [anon_sym_DASH] = ACTIONS(4721), + [anon_sym_DOT] = ACTIONS(4721), + [anon_sym_SLASH] = ACTIONS(4719), + [anon_sym_COLON] = ACTIONS(4719), + [anon_sym_SEMI] = ACTIONS(4719), + [anon_sym_EQ] = ACTIONS(4719), + [anon_sym_QMARK] = ACTIONS(4719), + [anon_sym_LBRACK] = ACTIONS(4721), + [anon_sym_BSLASH] = ACTIONS(4721), + [anon_sym_CARET] = ACTIONS(4721), + [anon_sym_BQUOTE] = ACTIONS(4719), + [anon_sym_LBRACE] = ACTIONS(4719), + [anon_sym_PIPE] = ACTIONS(4719), + [anon_sym_TILDE] = ACTIONS(4719), + [anon_sym_LPAREN] = ACTIONS(4719), + [anon_sym_RPAREN] = ACTIONS(4719), + [sym__newline_token] = ACTIONS(4719), + [aux_sym_insert_token1] = ACTIONS(4719), + [aux_sym_delete_token1] = ACTIONS(4719), + [aux_sym_highlight_token1] = ACTIONS(4719), + [aux_sym_edit_comment_token1] = ACTIONS(4719), + [anon_sym_CARET_LBRACK] = ACTIONS(4719), + [anon_sym_LBRACK_CARET] = ACTIONS(4719), + [sym_uri_autolink] = ACTIONS(4719), + [sym_email_autolink] = ACTIONS(4719), + [sym__whitespace_ge_2] = ACTIONS(4719), + [aux_sym__whitespace_token1] = ACTIONS(4721), + [sym__word_no_digit] = ACTIONS(4719), + [sym__digits] = ACTIONS(4719), + [anon_sym_DASH_DASH] = ACTIONS(4721), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4719), + [sym__code_span_start] = ACTIONS(4719), + [sym__emphasis_open_star] = ACTIONS(4719), + [sym__emphasis_open_underscore] = ACTIONS(4719), + [sym__strikeout_open] = ACTIONS(4719), + [sym__latex_span_start] = ACTIONS(4719), + [sym__single_quote_open] = ACTIONS(4719), + [sym__double_quote_open] = ACTIONS(4719), + [sym__superscript_open] = ACTIONS(4719), + [sym__subscript_open] = ACTIONS(4719), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4719), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4719), + [sym__cite_author_in_text] = ACTIONS(4719), + [sym__cite_suppress_author] = ACTIONS(4719), + [sym__shortcode_open_escaped] = ACTIONS(4719), + [sym__shortcode_open] = ACTIONS(4719), + [sym__unclosed_span] = ACTIONS(4719), + [sym__strong_emphasis_open_star] = ACTIONS(4719), + [sym__strong_emphasis_open_underscore] = ACTIONS(4719), }, - [STATE(1569)] = { + [STATE(1564)] = { + [sym__backslash_escape] = ACTIONS(4575), + [sym_entity_reference] = ACTIONS(4575), + [sym_numeric_character_reference] = ACTIONS(4575), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4575), + [anon_sym_DQUOTE] = ACTIONS(4575), + [anon_sym_POUND] = ACTIONS(4575), + [anon_sym_DOLLAR] = ACTIONS(4575), + [anon_sym_PERCENT] = ACTIONS(4575), + [anon_sym_AMP] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4575), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_EQ] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4577), + [anon_sym_BSLASH] = ACTIONS(4577), + [anon_sym_CARET] = ACTIONS(4577), + [anon_sym_BQUOTE] = ACTIONS(4575), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_PIPE] = ACTIONS(4575), + [anon_sym_TILDE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_RPAREN] = ACTIONS(4575), + [sym__newline_token] = ACTIONS(4575), + [aux_sym_insert_token1] = ACTIONS(4575), + [aux_sym_delete_token1] = ACTIONS(4575), + [aux_sym_highlight_token1] = ACTIONS(4575), + [aux_sym_edit_comment_token1] = ACTIONS(4575), + [anon_sym_CARET_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_CARET] = ACTIONS(4575), + [sym_uri_autolink] = ACTIONS(4575), + [sym_email_autolink] = ACTIONS(4575), + [sym__whitespace_ge_2] = ACTIONS(4575), + [aux_sym__whitespace_token1] = ACTIONS(4577), + [sym__word_no_digit] = ACTIONS(4575), + [sym__digits] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4577), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), + [sym__code_span_start] = ACTIONS(4575), + [sym__emphasis_open_star] = ACTIONS(4575), + [sym__emphasis_open_underscore] = ACTIONS(4575), + [sym__emphasis_close_underscore] = ACTIONS(4575), + [sym__strikeout_open] = ACTIONS(4575), + [sym__latex_span_start] = ACTIONS(4575), + [sym__single_quote_open] = ACTIONS(4575), + [sym__double_quote_open] = ACTIONS(4575), + [sym__superscript_open] = ACTIONS(4575), + [sym__subscript_open] = ACTIONS(4575), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), + [sym__cite_author_in_text] = ACTIONS(4575), + [sym__cite_suppress_author] = ACTIONS(4575), + [sym__shortcode_open_escaped] = ACTIONS(4575), + [sym__shortcode_open] = ACTIONS(4575), + [sym__unclosed_span] = ACTIONS(4575), + [sym__strong_emphasis_open_star] = ACTIONS(4575), + [sym__strong_emphasis_open_underscore] = ACTIONS(4575), + }, + [STATE(1565)] = { [sym__backslash_escape] = ACTIONS(4579), [sym_entity_reference] = ACTIONS(4579), [sym_numeric_character_reference] = ACTIONS(4579), @@ -153706,7 +153437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4579), [sym__strong_emphasis_open_underscore] = ACTIONS(4579), }, - [STATE(1570)] = { + [STATE(1566)] = { [sym__backslash_escape] = ACTIONS(4583), [sym_entity_reference] = ACTIONS(4583), [sym_numeric_character_reference] = ACTIONS(4583), @@ -153756,8 +153487,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4583), [sym__emphasis_open_star] = ACTIONS(4583), [sym__emphasis_open_underscore] = ACTIONS(4583), - [sym__emphasis_close_underscore] = ACTIONS(4583), [sym__strikeout_open] = ACTIONS(4583), + [sym__strikeout_close] = ACTIONS(4583), [sym__latex_span_start] = ACTIONS(4583), [sym__single_quote_open] = ACTIONS(4583), [sym__double_quote_open] = ACTIONS(4583), @@ -153773,7 +153504,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4583), [sym__strong_emphasis_open_underscore] = ACTIONS(4583), }, - [STATE(1571)] = { + [STATE(1567)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__strikeout_open] = ACTIONS(4329), + [sym__strikeout_close] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), + }, + [STATE(1568)] = { [sym__backslash_escape] = ACTIONS(4587), [sym_entity_reference] = ACTIONS(4587), [sym_numeric_character_reference] = ACTIONS(4587), @@ -153840,74 +153638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4587), [sym__strong_emphasis_open_underscore] = ACTIONS(4587), }, - [STATE(1572)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__strikeout_open] = ACTIONS(4335), - [sym__strikeout_close] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(1573)] = { + [STATE(1569)] = { [sym__backslash_escape] = ACTIONS(4591), [sym_entity_reference] = ACTIONS(4591), [sym_numeric_character_reference] = ACTIONS(4591), @@ -153974,7 +153705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4591), [sym__strong_emphasis_open_underscore] = ACTIONS(4591), }, - [STATE(1574)] = { + [STATE(1570)] = { [sym__backslash_escape] = ACTIONS(4595), [sym_entity_reference] = ACTIONS(4595), [sym_numeric_character_reference] = ACTIONS(4595), @@ -154041,7 +153772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4595), [sym__strong_emphasis_open_underscore] = ACTIONS(4595), }, - [STATE(1575)] = { + [STATE(1571)] = { [sym__backslash_escape] = ACTIONS(4599), [sym_entity_reference] = ACTIONS(4599), [sym_numeric_character_reference] = ACTIONS(4599), @@ -154108,7 +153839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4599), [sym__strong_emphasis_open_underscore] = ACTIONS(4599), }, - [STATE(1576)] = { + [STATE(1572)] = { [sym__backslash_escape] = ACTIONS(4603), [sym_entity_reference] = ACTIONS(4603), [sym_numeric_character_reference] = ACTIONS(4603), @@ -154175,7 +153906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4603), [sym__strong_emphasis_open_underscore] = ACTIONS(4603), }, - [STATE(1577)] = { + [STATE(1573)] = { [sym__backslash_escape] = ACTIONS(4607), [sym_entity_reference] = ACTIONS(4607), [sym_numeric_character_reference] = ACTIONS(4607), @@ -154242,7 +153973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4607), [sym__strong_emphasis_open_underscore] = ACTIONS(4607), }, - [STATE(1578)] = { + [STATE(1574)] = { [sym__backslash_escape] = ACTIONS(4611), [sym_entity_reference] = ACTIONS(4611), [sym_numeric_character_reference] = ACTIONS(4611), @@ -154309,7 +154040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4611), [sym__strong_emphasis_open_underscore] = ACTIONS(4611), }, - [STATE(1579)] = { + [STATE(1575)] = { [sym__backslash_escape] = ACTIONS(4615), [sym_entity_reference] = ACTIONS(4615), [sym_numeric_character_reference] = ACTIONS(4615), @@ -154376,7 +154107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4615), [sym__strong_emphasis_open_underscore] = ACTIONS(4615), }, - [STATE(1580)] = { + [STATE(1576)] = { [sym__backslash_escape] = ACTIONS(4619), [sym_entity_reference] = ACTIONS(4619), [sym_numeric_character_reference] = ACTIONS(4619), @@ -154443,7 +154174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4619), [sym__strong_emphasis_open_underscore] = ACTIONS(4619), }, - [STATE(1581)] = { + [STATE(1577)] = { [sym__backslash_escape] = ACTIONS(4623), [sym_entity_reference] = ACTIONS(4623), [sym_numeric_character_reference] = ACTIONS(4623), @@ -154510,7 +154241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4623), [sym__strong_emphasis_open_underscore] = ACTIONS(4623), }, - [STATE(1582)] = { + [STATE(1578)] = { [sym__backslash_escape] = ACTIONS(4627), [sym_entity_reference] = ACTIONS(4627), [sym_numeric_character_reference] = ACTIONS(4627), @@ -154577,7 +154308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4627), [sym__strong_emphasis_open_underscore] = ACTIONS(4627), }, - [STATE(1583)] = { + [STATE(1579)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -154644,7 +154375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4631), [sym__strong_emphasis_open_underscore] = ACTIONS(4631), }, - [STATE(1584)] = { + [STATE(1580)] = { [sym__backslash_escape] = ACTIONS(4635), [sym_entity_reference] = ACTIONS(4635), [sym_numeric_character_reference] = ACTIONS(4635), @@ -154694,8 +154425,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4635), [sym__emphasis_open_star] = ACTIONS(4635), [sym__emphasis_open_underscore] = ACTIONS(4635), + [sym__emphasis_close_underscore] = ACTIONS(4635), [sym__strikeout_open] = ACTIONS(4635), - [sym__strikeout_close] = ACTIONS(4635), [sym__latex_span_start] = ACTIONS(4635), [sym__single_quote_open] = ACTIONS(4635), [sym__double_quote_open] = ACTIONS(4635), @@ -154711,7 +154442,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4635), [sym__strong_emphasis_open_underscore] = ACTIONS(4635), }, - [STATE(1585)] = { + [STATE(1581)] = { + [ts_builtin_sym_end] = ACTIONS(4587), + [sym__backslash_escape] = ACTIONS(4587), + [sym_entity_reference] = ACTIONS(4587), + [sym_numeric_character_reference] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4587), + [anon_sym_DQUOTE] = ACTIONS(4587), + [anon_sym_POUND] = ACTIONS(4587), + [anon_sym_DOLLAR] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4587), + [anon_sym_AMP] = ACTIONS(4589), + [anon_sym_SQUOTE] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_BSLASH] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4589), + [anon_sym_BQUOTE] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_PIPE] = ACTIONS(4587), + [anon_sym_TILDE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4587), + [sym__newline_token] = ACTIONS(4587), + [aux_sym_insert_token1] = ACTIONS(4587), + [aux_sym_delete_token1] = ACTIONS(4587), + [aux_sym_highlight_token1] = ACTIONS(4587), + [aux_sym_edit_comment_token1] = ACTIONS(4587), + [anon_sym_CARET_LBRACK] = ACTIONS(4587), + [anon_sym_LBRACK_CARET] = ACTIONS(4587), + [sym_uri_autolink] = ACTIONS(4587), + [sym_email_autolink] = ACTIONS(4587), + [sym__whitespace_ge_2] = ACTIONS(4587), + [aux_sym__whitespace_token1] = ACTIONS(4589), + [sym__word_no_digit] = ACTIONS(4587), + [sym__digits] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), + [sym__code_span_start] = ACTIONS(4587), + [sym__emphasis_open_star] = ACTIONS(4587), + [sym__emphasis_open_underscore] = ACTIONS(4587), + [sym__strikeout_open] = ACTIONS(4587), + [sym__latex_span_start] = ACTIONS(4587), + [sym__single_quote_open] = ACTIONS(4587), + [sym__double_quote_open] = ACTIONS(4587), + [sym__superscript_open] = ACTIONS(4587), + [sym__subscript_open] = ACTIONS(4587), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), + [sym__cite_author_in_text] = ACTIONS(4587), + [sym__cite_suppress_author] = ACTIONS(4587), + [sym__shortcode_open_escaped] = ACTIONS(4587), + [sym__shortcode_open] = ACTIONS(4587), + [sym__unclosed_span] = ACTIONS(4587), + [sym__strong_emphasis_open_star] = ACTIONS(4587), + [sym__strong_emphasis_open_underscore] = ACTIONS(4587), + }, + [STATE(1582)] = { [sym__backslash_escape] = ACTIONS(4639), [sym_entity_reference] = ACTIONS(4639), [sym_numeric_character_reference] = ACTIONS(4639), @@ -154778,74 +154576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4639), [sym__strong_emphasis_open_underscore] = ACTIONS(4639), }, - [STATE(1586)] = { - [ts_builtin_sym_end] = ACTIONS(4595), - [sym__backslash_escape] = ACTIONS(4595), - [sym_entity_reference] = ACTIONS(4595), - [sym_numeric_character_reference] = ACTIONS(4595), - [anon_sym_LT] = ACTIONS(4597), - [anon_sym_GT] = ACTIONS(4595), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_DQUOTE] = ACTIONS(4595), - [anon_sym_POUND] = ACTIONS(4595), - [anon_sym_DOLLAR] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4597), - [anon_sym_SQUOTE] = ACTIONS(4595), - [anon_sym_PLUS] = ACTIONS(4595), - [anon_sym_COMMA] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4597), - [anon_sym_DOT] = ACTIONS(4597), - [anon_sym_SLASH] = ACTIONS(4595), - [anon_sym_COLON] = ACTIONS(4595), - [anon_sym_SEMI] = ACTIONS(4595), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_QMARK] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_BSLASH] = ACTIONS(4597), - [anon_sym_CARET] = ACTIONS(4597), - [anon_sym_BQUOTE] = ACTIONS(4595), - [anon_sym_LBRACE] = ACTIONS(4595), - [anon_sym_PIPE] = ACTIONS(4595), - [anon_sym_TILDE] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(4595), - [anon_sym_RPAREN] = ACTIONS(4595), - [sym__newline_token] = ACTIONS(4595), - [aux_sym_insert_token1] = ACTIONS(4595), - [aux_sym_delete_token1] = ACTIONS(4595), - [aux_sym_highlight_token1] = ACTIONS(4595), - [aux_sym_edit_comment_token1] = ACTIONS(4595), - [anon_sym_CARET_LBRACK] = ACTIONS(4595), - [anon_sym_LBRACK_CARET] = ACTIONS(4595), - [sym_uri_autolink] = ACTIONS(4595), - [sym_email_autolink] = ACTIONS(4595), - [sym__whitespace_ge_2] = ACTIONS(4595), - [aux_sym__whitespace_token1] = ACTIONS(4597), - [sym__word_no_digit] = ACTIONS(4595), - [sym__digits] = ACTIONS(4595), - [anon_sym_DASH_DASH] = ACTIONS(4597), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4595), - [sym__code_span_start] = ACTIONS(4595), - [sym__emphasis_open_star] = ACTIONS(4595), - [sym__emphasis_open_underscore] = ACTIONS(4595), - [sym__strikeout_open] = ACTIONS(4595), - [sym__latex_span_start] = ACTIONS(4595), - [sym__single_quote_open] = ACTIONS(4595), - [sym__double_quote_open] = ACTIONS(4595), - [sym__superscript_open] = ACTIONS(4595), - [sym__subscript_open] = ACTIONS(4595), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4595), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4595), - [sym__cite_author_in_text] = ACTIONS(4595), - [sym__cite_suppress_author] = ACTIONS(4595), - [sym__shortcode_open_escaped] = ACTIONS(4595), - [sym__shortcode_open] = ACTIONS(4595), - [sym__unclosed_span] = ACTIONS(4595), - [sym__strong_emphasis_open_star] = ACTIONS(4595), - [sym__strong_emphasis_open_underscore] = ACTIONS(4595), - }, - [STATE(1587)] = { + [STATE(1583)] = { [sym__backslash_escape] = ACTIONS(4643), [sym_entity_reference] = ACTIONS(4643), [sym_numeric_character_reference] = ACTIONS(4643), @@ -154895,8 +154626,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(4643), [sym__emphasis_open_star] = ACTIONS(4643), [sym__emphasis_open_underscore] = ACTIONS(4643), - [sym__emphasis_close_underscore] = ACTIONS(4643), [sym__strikeout_open] = ACTIONS(4643), + [sym__strikeout_close] = ACTIONS(4643), [sym__latex_span_start] = ACTIONS(4643), [sym__single_quote_open] = ACTIONS(4643), [sym__double_quote_open] = ACTIONS(4643), @@ -154912,7 +154643,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4643), [sym__strong_emphasis_open_underscore] = ACTIONS(4643), }, - [STATE(1588)] = { + [STATE(1584)] = { + [sym__backslash_escape] = ACTIONS(4181), + [sym_entity_reference] = ACTIONS(4181), + [sym_numeric_character_reference] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4181), + [anon_sym_DQUOTE] = ACTIONS(4181), + [anon_sym_POUND] = ACTIONS(4181), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_PERCENT] = ACTIONS(4181), + [anon_sym_AMP] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_EQ] = ACTIONS(4181), + [anon_sym_QMARK] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(4183), + [anon_sym_BSLASH] = ACTIONS(4183), + [anon_sym_CARET] = ACTIONS(4183), + [anon_sym_BQUOTE] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_TILDE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(4181), + [sym__newline_token] = ACTIONS(4181), + [aux_sym_insert_token1] = ACTIONS(4181), + [aux_sym_delete_token1] = ACTIONS(4181), + [aux_sym_highlight_token1] = ACTIONS(4181), + [aux_sym_edit_comment_token1] = ACTIONS(4181), + [anon_sym_CARET_LBRACK] = ACTIONS(4181), + [anon_sym_LBRACK_CARET] = ACTIONS(4181), + [sym_uri_autolink] = ACTIONS(4181), + [sym_email_autolink] = ACTIONS(4181), + [sym__whitespace_ge_2] = ACTIONS(4181), + [aux_sym__whitespace_token1] = ACTIONS(4183), + [sym__word_no_digit] = ACTIONS(4181), + [sym__digits] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4183), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4181), + [sym__code_span_start] = ACTIONS(4181), + [sym__emphasis_open_star] = ACTIONS(4181), + [sym__emphasis_open_underscore] = ACTIONS(4181), + [sym__strikeout_open] = ACTIONS(4181), + [sym__strikeout_close] = ACTIONS(4181), + [sym__latex_span_start] = ACTIONS(4181), + [sym__single_quote_open] = ACTIONS(4181), + [sym__double_quote_open] = ACTIONS(4181), + [sym__superscript_open] = ACTIONS(4181), + [sym__subscript_open] = ACTIONS(4181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4181), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4181), + [sym__cite_author_in_text] = ACTIONS(4181), + [sym__cite_suppress_author] = ACTIONS(4181), + [sym__shortcode_open_escaped] = ACTIONS(4181), + [sym__shortcode_open] = ACTIONS(4181), + [sym__unclosed_span] = ACTIONS(4181), + [sym__strong_emphasis_open_star] = ACTIONS(4181), + [sym__strong_emphasis_open_underscore] = ACTIONS(4181), + }, + [STATE(1585)] = { [sym__backslash_escape] = ACTIONS(4647), [sym_entity_reference] = ACTIONS(4647), [sym_numeric_character_reference] = ACTIONS(4647), @@ -154979,74 +154777,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4647), [sym__strong_emphasis_open_underscore] = ACTIONS(4647), }, - [STATE(1589)] = { - [sym__backslash_escape] = ACTIONS(4181), - [sym_entity_reference] = ACTIONS(4181), - [sym_numeric_character_reference] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4181), - [anon_sym_POUND] = ACTIONS(4181), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_AMP] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_COLON] = ACTIONS(4181), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_QMARK] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_BSLASH] = ACTIONS(4183), - [anon_sym_CARET] = ACTIONS(4183), - [anon_sym_BQUOTE] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4181), - [anon_sym_PIPE] = ACTIONS(4181), - [anon_sym_TILDE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_RPAREN] = ACTIONS(4181), - [sym__newline_token] = ACTIONS(4181), - [aux_sym_insert_token1] = ACTIONS(4181), - [aux_sym_delete_token1] = ACTIONS(4181), - [aux_sym_highlight_token1] = ACTIONS(4181), - [aux_sym_edit_comment_token1] = ACTIONS(4181), - [anon_sym_CARET_LBRACK] = ACTIONS(4181), - [anon_sym_LBRACK_CARET] = ACTIONS(4181), - [sym_uri_autolink] = ACTIONS(4181), - [sym_email_autolink] = ACTIONS(4181), - [sym__whitespace_ge_2] = ACTIONS(4181), - [aux_sym__whitespace_token1] = ACTIONS(4183), - [sym__word_no_digit] = ACTIONS(4181), - [sym__digits] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4183), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4181), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4181), - [sym__code_span_start] = ACTIONS(4181), - [sym__emphasis_open_star] = ACTIONS(4181), - [sym__emphasis_open_underscore] = ACTIONS(4181), - [sym__strikeout_open] = ACTIONS(4181), - [sym__strikeout_close] = ACTIONS(4181), - [sym__latex_span_start] = ACTIONS(4181), - [sym__single_quote_open] = ACTIONS(4181), - [sym__double_quote_open] = ACTIONS(4181), - [sym__superscript_open] = ACTIONS(4181), - [sym__subscript_open] = ACTIONS(4181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4181), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4181), - [sym__cite_author_in_text] = ACTIONS(4181), - [sym__cite_suppress_author] = ACTIONS(4181), - [sym__shortcode_open_escaped] = ACTIONS(4181), - [sym__shortcode_open] = ACTIONS(4181), - [sym__unclosed_span] = ACTIONS(4181), - [sym__strong_emphasis_open_star] = ACTIONS(4181), - [sym__strong_emphasis_open_underscore] = ACTIONS(4181), + [STATE(1586)] = { + [ts_builtin_sym_end] = ACTIONS(4723), + [sym__backslash_escape] = ACTIONS(4723), + [sym_entity_reference] = ACTIONS(4723), + [sym_numeric_character_reference] = ACTIONS(4723), + [anon_sym_LT] = ACTIONS(4725), + [anon_sym_GT] = ACTIONS(4723), + [anon_sym_BANG] = ACTIONS(4723), + [anon_sym_DQUOTE] = ACTIONS(4723), + [anon_sym_POUND] = ACTIONS(4723), + [anon_sym_DOLLAR] = ACTIONS(4723), + [anon_sym_PERCENT] = ACTIONS(4723), + [anon_sym_AMP] = ACTIONS(4725), + [anon_sym_SQUOTE] = ACTIONS(4723), + [anon_sym_PLUS] = ACTIONS(4723), + [anon_sym_COMMA] = ACTIONS(4723), + [anon_sym_DASH] = ACTIONS(4725), + [anon_sym_DOT] = ACTIONS(4725), + [anon_sym_SLASH] = ACTIONS(4723), + [anon_sym_COLON] = ACTIONS(4723), + [anon_sym_SEMI] = ACTIONS(4723), + [anon_sym_EQ] = ACTIONS(4723), + [anon_sym_QMARK] = ACTIONS(4723), + [anon_sym_LBRACK] = ACTIONS(4725), + [anon_sym_BSLASH] = ACTIONS(4725), + [anon_sym_CARET] = ACTIONS(4725), + [anon_sym_BQUOTE] = ACTIONS(4723), + [anon_sym_LBRACE] = ACTIONS(4723), + [anon_sym_PIPE] = ACTIONS(4723), + [anon_sym_TILDE] = ACTIONS(4723), + [anon_sym_LPAREN] = ACTIONS(4723), + [anon_sym_RPAREN] = ACTIONS(4723), + [sym__newline_token] = ACTIONS(4723), + [aux_sym_insert_token1] = ACTIONS(4723), + [aux_sym_delete_token1] = ACTIONS(4723), + [aux_sym_highlight_token1] = ACTIONS(4723), + [aux_sym_edit_comment_token1] = ACTIONS(4723), + [anon_sym_CARET_LBRACK] = ACTIONS(4723), + [anon_sym_LBRACK_CARET] = ACTIONS(4723), + [sym_uri_autolink] = ACTIONS(4723), + [sym_email_autolink] = ACTIONS(4723), + [sym__whitespace_ge_2] = ACTIONS(4723), + [aux_sym__whitespace_token1] = ACTIONS(4725), + [sym__word_no_digit] = ACTIONS(4723), + [sym__digits] = ACTIONS(4723), + [anon_sym_DASH_DASH] = ACTIONS(4725), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4723), + [sym__code_span_start] = ACTIONS(4723), + [sym__emphasis_open_star] = ACTIONS(4723), + [sym__emphasis_open_underscore] = ACTIONS(4723), + [sym__strikeout_open] = ACTIONS(4723), + [sym__latex_span_start] = ACTIONS(4723), + [sym__single_quote_open] = ACTIONS(4723), + [sym__double_quote_open] = ACTIONS(4723), + [sym__superscript_open] = ACTIONS(4723), + [sym__subscript_open] = ACTIONS(4723), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4723), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4723), + [sym__cite_author_in_text] = ACTIONS(4723), + [sym__cite_suppress_author] = ACTIONS(4723), + [sym__shortcode_open_escaped] = ACTIONS(4723), + [sym__shortcode_open] = ACTIONS(4723), + [sym__unclosed_span] = ACTIONS(4723), + [sym__strong_emphasis_open_star] = ACTIONS(4723), + [sym__strong_emphasis_open_underscore] = ACTIONS(4723), }, - [STATE(1590)] = { + [STATE(1587)] = { [sym__backslash_escape] = ACTIONS(4651), [sym_entity_reference] = ACTIONS(4651), [sym_numeric_character_reference] = ACTIONS(4651), @@ -155113,74 +154911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4651), [sym__strong_emphasis_open_underscore] = ACTIONS(4651), }, - [STATE(1591)] = { - [ts_builtin_sym_end] = ACTIONS(4727), - [sym__backslash_escape] = ACTIONS(4727), - [sym_entity_reference] = ACTIONS(4727), - [sym_numeric_character_reference] = ACTIONS(4727), - [anon_sym_LT] = ACTIONS(4729), - [anon_sym_GT] = ACTIONS(4727), - [anon_sym_BANG] = ACTIONS(4727), - [anon_sym_DQUOTE] = ACTIONS(4727), - [anon_sym_POUND] = ACTIONS(4727), - [anon_sym_DOLLAR] = ACTIONS(4727), - [anon_sym_PERCENT] = ACTIONS(4727), - [anon_sym_AMP] = ACTIONS(4729), - [anon_sym_SQUOTE] = ACTIONS(4727), - [anon_sym_PLUS] = ACTIONS(4727), - [anon_sym_COMMA] = ACTIONS(4727), - [anon_sym_DASH] = ACTIONS(4729), - [anon_sym_DOT] = ACTIONS(4729), - [anon_sym_SLASH] = ACTIONS(4727), - [anon_sym_COLON] = ACTIONS(4727), - [anon_sym_SEMI] = ACTIONS(4727), - [anon_sym_EQ] = ACTIONS(4727), - [anon_sym_QMARK] = ACTIONS(4727), - [anon_sym_LBRACK] = ACTIONS(4729), - [anon_sym_BSLASH] = ACTIONS(4729), - [anon_sym_CARET] = ACTIONS(4729), - [anon_sym_BQUOTE] = ACTIONS(4727), - [anon_sym_LBRACE] = ACTIONS(4727), - [anon_sym_PIPE] = ACTIONS(4727), - [anon_sym_TILDE] = ACTIONS(4727), - [anon_sym_LPAREN] = ACTIONS(4727), - [anon_sym_RPAREN] = ACTIONS(4727), - [sym__newline_token] = ACTIONS(4727), - [aux_sym_insert_token1] = ACTIONS(4727), - [aux_sym_delete_token1] = ACTIONS(4727), - [aux_sym_highlight_token1] = ACTIONS(4727), - [aux_sym_edit_comment_token1] = ACTIONS(4727), - [anon_sym_CARET_LBRACK] = ACTIONS(4727), - [anon_sym_LBRACK_CARET] = ACTIONS(4727), - [sym_uri_autolink] = ACTIONS(4727), - [sym_email_autolink] = ACTIONS(4727), - [sym__whitespace_ge_2] = ACTIONS(4727), - [aux_sym__whitespace_token1] = ACTIONS(4729), - [sym__word_no_digit] = ACTIONS(4727), - [sym__digits] = ACTIONS(4727), - [anon_sym_DASH_DASH] = ACTIONS(4729), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4727), - [sym__code_span_start] = ACTIONS(4727), - [sym__emphasis_open_star] = ACTIONS(4727), - [sym__emphasis_open_underscore] = ACTIONS(4727), - [sym__strikeout_open] = ACTIONS(4727), - [sym__latex_span_start] = ACTIONS(4727), - [sym__single_quote_open] = ACTIONS(4727), - [sym__double_quote_open] = ACTIONS(4727), - [sym__superscript_open] = ACTIONS(4727), - [sym__subscript_open] = ACTIONS(4727), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4727), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4727), - [sym__cite_author_in_text] = ACTIONS(4727), - [sym__cite_suppress_author] = ACTIONS(4727), - [sym__shortcode_open_escaped] = ACTIONS(4727), - [sym__shortcode_open] = ACTIONS(4727), - [sym__unclosed_span] = ACTIONS(4727), - [sym__strong_emphasis_open_star] = ACTIONS(4727), - [sym__strong_emphasis_open_underscore] = ACTIONS(4727), - }, - [STATE(1592)] = { + [STATE(1588)] = { [sym__backslash_escape] = ACTIONS(4655), [sym_entity_reference] = ACTIONS(4655), [sym_numeric_character_reference] = ACTIONS(4655), @@ -155247,7 +154978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4655), [sym__strong_emphasis_open_underscore] = ACTIONS(4655), }, - [STATE(1593)] = { + [STATE(1589)] = { [sym__backslash_escape] = ACTIONS(4659), [sym_entity_reference] = ACTIONS(4659), [sym_numeric_character_reference] = ACTIONS(4659), @@ -155314,7 +155045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4659), [sym__strong_emphasis_open_underscore] = ACTIONS(4659), }, - [STATE(1594)] = { + [STATE(1590)] = { [sym__backslash_escape] = ACTIONS(4663), [sym_entity_reference] = ACTIONS(4663), [sym_numeric_character_reference] = ACTIONS(4663), @@ -155381,74 +155112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4663), [sym__strong_emphasis_open_underscore] = ACTIONS(4663), }, - [STATE(1595)] = { - [ts_builtin_sym_end] = ACTIONS(4731), - [sym__backslash_escape] = ACTIONS(4731), - [sym_entity_reference] = ACTIONS(4731), - [sym_numeric_character_reference] = ACTIONS(4731), - [anon_sym_LT] = ACTIONS(4733), - [anon_sym_GT] = ACTIONS(4731), - [anon_sym_BANG] = ACTIONS(4731), - [anon_sym_DQUOTE] = ACTIONS(4731), - [anon_sym_POUND] = ACTIONS(4731), - [anon_sym_DOLLAR] = ACTIONS(4731), - [anon_sym_PERCENT] = ACTIONS(4731), - [anon_sym_AMP] = ACTIONS(4733), - [anon_sym_SQUOTE] = ACTIONS(4731), - [anon_sym_PLUS] = ACTIONS(4731), - [anon_sym_COMMA] = ACTIONS(4731), - [anon_sym_DASH] = ACTIONS(4733), - [anon_sym_DOT] = ACTIONS(4733), - [anon_sym_SLASH] = ACTIONS(4731), - [anon_sym_COLON] = ACTIONS(4731), - [anon_sym_SEMI] = ACTIONS(4731), - [anon_sym_EQ] = ACTIONS(4731), - [anon_sym_QMARK] = ACTIONS(4731), - [anon_sym_LBRACK] = ACTIONS(4733), - [anon_sym_BSLASH] = ACTIONS(4733), - [anon_sym_CARET] = ACTIONS(4733), - [anon_sym_BQUOTE] = ACTIONS(4731), - [anon_sym_LBRACE] = ACTIONS(4731), - [anon_sym_PIPE] = ACTIONS(4731), - [anon_sym_TILDE] = ACTIONS(4731), - [anon_sym_LPAREN] = ACTIONS(4731), - [anon_sym_RPAREN] = ACTIONS(4731), - [sym__newline_token] = ACTIONS(4731), - [aux_sym_insert_token1] = ACTIONS(4731), - [aux_sym_delete_token1] = ACTIONS(4731), - [aux_sym_highlight_token1] = ACTIONS(4731), - [aux_sym_edit_comment_token1] = ACTIONS(4731), - [anon_sym_CARET_LBRACK] = ACTIONS(4731), - [anon_sym_LBRACK_CARET] = ACTIONS(4731), - [sym_uri_autolink] = ACTIONS(4731), - [sym_email_autolink] = ACTIONS(4731), - [sym__whitespace_ge_2] = ACTIONS(4731), - [aux_sym__whitespace_token1] = ACTIONS(4733), - [sym__word_no_digit] = ACTIONS(4731), - [sym__digits] = ACTIONS(4731), - [anon_sym_DASH_DASH] = ACTIONS(4733), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4731), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4731), - [sym__code_span_start] = ACTIONS(4731), - [sym__emphasis_open_star] = ACTIONS(4731), - [sym__emphasis_open_underscore] = ACTIONS(4731), - [sym__strikeout_open] = ACTIONS(4731), - [sym__latex_span_start] = ACTIONS(4731), - [sym__single_quote_open] = ACTIONS(4731), - [sym__double_quote_open] = ACTIONS(4731), - [sym__superscript_open] = ACTIONS(4731), - [sym__subscript_open] = ACTIONS(4731), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4731), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4731), - [sym__cite_author_in_text] = ACTIONS(4731), - [sym__cite_suppress_author] = ACTIONS(4731), - [sym__shortcode_open_escaped] = ACTIONS(4731), - [sym__shortcode_open] = ACTIONS(4731), - [sym__unclosed_span] = ACTIONS(4731), - [sym__strong_emphasis_open_star] = ACTIONS(4731), - [sym__strong_emphasis_open_underscore] = ACTIONS(4731), - }, - [STATE(1596)] = { + [STATE(1591)] = { [sym__backslash_escape] = ACTIONS(4667), [sym_entity_reference] = ACTIONS(4667), [sym_numeric_character_reference] = ACTIONS(4667), @@ -155515,7 +155179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4667), [sym__strong_emphasis_open_underscore] = ACTIONS(4667), }, - [STATE(1597)] = { + [STATE(1592)] = { [sym__backslash_escape] = ACTIONS(4671), [sym_entity_reference] = ACTIONS(4671), [sym_numeric_character_reference] = ACTIONS(4671), @@ -155582,7 +155246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4671), [sym__strong_emphasis_open_underscore] = ACTIONS(4671), }, - [STATE(1598)] = { + [STATE(1593)] = { [sym__backslash_escape] = ACTIONS(4675), [sym_entity_reference] = ACTIONS(4675), [sym_numeric_character_reference] = ACTIONS(4675), @@ -155649,7 +155313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4675), [sym__strong_emphasis_open_underscore] = ACTIONS(4675), }, - [STATE(1599)] = { + [STATE(1594)] = { [sym__backslash_escape] = ACTIONS(4679), [sym_entity_reference] = ACTIONS(4679), [sym_numeric_character_reference] = ACTIONS(4679), @@ -155716,7 +155380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4679), [sym__strong_emphasis_open_underscore] = ACTIONS(4679), }, - [STATE(1600)] = { + [STATE(1595)] = { [sym__backslash_escape] = ACTIONS(4683), [sym_entity_reference] = ACTIONS(4683), [sym_numeric_character_reference] = ACTIONS(4683), @@ -155783,7 +155447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4683), [sym__strong_emphasis_open_underscore] = ACTIONS(4683), }, - [STATE(1601)] = { + [STATE(1596)] = { [sym__backslash_escape] = ACTIONS(4687), [sym_entity_reference] = ACTIONS(4687), [sym_numeric_character_reference] = ACTIONS(4687), @@ -155850,7 +155514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4687), [sym__strong_emphasis_open_underscore] = ACTIONS(4687), }, - [STATE(1602)] = { + [STATE(1597)] = { [sym__backslash_escape] = ACTIONS(4691), [sym_entity_reference] = ACTIONS(4691), [sym_numeric_character_reference] = ACTIONS(4691), @@ -155917,7 +155581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4691), [sym__strong_emphasis_open_underscore] = ACTIONS(4691), }, - [STATE(1603)] = { + [STATE(1598)] = { [sym__backslash_escape] = ACTIONS(4695), [sym_entity_reference] = ACTIONS(4695), [sym_numeric_character_reference] = ACTIONS(4695), @@ -155984,7 +155648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4695), [sym__strong_emphasis_open_underscore] = ACTIONS(4695), }, - [STATE(1604)] = { + [STATE(1599)] = { [sym__backslash_escape] = ACTIONS(4699), [sym_entity_reference] = ACTIONS(4699), [sym_numeric_character_reference] = ACTIONS(4699), @@ -156051,7 +155715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4699), [sym__strong_emphasis_open_underscore] = ACTIONS(4699), }, - [STATE(1605)] = { + [STATE(1600)] = { [sym__backslash_escape] = ACTIONS(4703), [sym_entity_reference] = ACTIONS(4703), [sym_numeric_character_reference] = ACTIONS(4703), @@ -156118,7 +155782,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4703), [sym__strong_emphasis_open_underscore] = ACTIONS(4703), }, - [STATE(1606)] = { + [STATE(1601)] = { + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__strikeout_close] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + }, + [STATE(1602)] = { + [ts_builtin_sym_end] = ACTIONS(4727), + [sym__backslash_escape] = ACTIONS(4727), + [sym_entity_reference] = ACTIONS(4727), + [sym_numeric_character_reference] = ACTIONS(4727), + [anon_sym_LT] = ACTIONS(4729), + [anon_sym_GT] = ACTIONS(4727), + [anon_sym_BANG] = ACTIONS(4727), + [anon_sym_DQUOTE] = ACTIONS(4727), + [anon_sym_POUND] = ACTIONS(4727), + [anon_sym_DOLLAR] = ACTIONS(4727), + [anon_sym_PERCENT] = ACTIONS(4727), + [anon_sym_AMP] = ACTIONS(4729), + [anon_sym_SQUOTE] = ACTIONS(4727), + [anon_sym_PLUS] = ACTIONS(4727), + [anon_sym_COMMA] = ACTIONS(4727), + [anon_sym_DASH] = ACTIONS(4729), + [anon_sym_DOT] = ACTIONS(4729), + [anon_sym_SLASH] = ACTIONS(4727), + [anon_sym_COLON] = ACTIONS(4727), + [anon_sym_SEMI] = ACTIONS(4727), + [anon_sym_EQ] = ACTIONS(4727), + [anon_sym_QMARK] = ACTIONS(4727), + [anon_sym_LBRACK] = ACTIONS(4729), + [anon_sym_BSLASH] = ACTIONS(4729), + [anon_sym_CARET] = ACTIONS(4729), + [anon_sym_BQUOTE] = ACTIONS(4727), + [anon_sym_LBRACE] = ACTIONS(4727), + [anon_sym_PIPE] = ACTIONS(4727), + [anon_sym_TILDE] = ACTIONS(4727), + [anon_sym_LPAREN] = ACTIONS(4727), + [anon_sym_RPAREN] = ACTIONS(4727), + [sym__newline_token] = ACTIONS(4727), + [aux_sym_insert_token1] = ACTIONS(4727), + [aux_sym_delete_token1] = ACTIONS(4727), + [aux_sym_highlight_token1] = ACTIONS(4727), + [aux_sym_edit_comment_token1] = ACTIONS(4727), + [anon_sym_CARET_LBRACK] = ACTIONS(4727), + [anon_sym_LBRACK_CARET] = ACTIONS(4727), + [sym_uri_autolink] = ACTIONS(4727), + [sym_email_autolink] = ACTIONS(4727), + [sym__whitespace_ge_2] = ACTIONS(4727), + [aux_sym__whitespace_token1] = ACTIONS(4729), + [sym__word_no_digit] = ACTIONS(4727), + [sym__digits] = ACTIONS(4727), + [anon_sym_DASH_DASH] = ACTIONS(4729), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4727), + [sym__code_span_start] = ACTIONS(4727), + [sym__emphasis_open_star] = ACTIONS(4727), + [sym__emphasis_open_underscore] = ACTIONS(4727), + [sym__strikeout_open] = ACTIONS(4727), + [sym__latex_span_start] = ACTIONS(4727), + [sym__single_quote_open] = ACTIONS(4727), + [sym__double_quote_open] = ACTIONS(4727), + [sym__superscript_open] = ACTIONS(4727), + [sym__subscript_open] = ACTIONS(4727), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4727), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4727), + [sym__cite_author_in_text] = ACTIONS(4727), + [sym__cite_suppress_author] = ACTIONS(4727), + [sym__shortcode_open_escaped] = ACTIONS(4727), + [sym__shortcode_open] = ACTIONS(4727), + [sym__unclosed_span] = ACTIONS(4727), + [sym__strong_emphasis_open_star] = ACTIONS(4727), + [sym__strong_emphasis_open_underscore] = ACTIONS(4727), + }, + [STATE(1603)] = { [sym__backslash_escape] = ACTIONS(4707), [sym_entity_reference] = ACTIONS(4707), [sym_numeric_character_reference] = ACTIONS(4707), @@ -156185,141 +155983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4707), [sym__strong_emphasis_open_underscore] = ACTIONS(4707), }, - [STATE(1607)] = { - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__strikeout_close] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - }, - [STATE(1608)] = { - [ts_builtin_sym_end] = ACTIONS(4735), - [sym__backslash_escape] = ACTIONS(4735), - [sym_entity_reference] = ACTIONS(4735), - [sym_numeric_character_reference] = ACTIONS(4735), - [anon_sym_LT] = ACTIONS(4737), - [anon_sym_GT] = ACTIONS(4735), - [anon_sym_BANG] = ACTIONS(4735), - [anon_sym_DQUOTE] = ACTIONS(4735), - [anon_sym_POUND] = ACTIONS(4735), - [anon_sym_DOLLAR] = ACTIONS(4735), - [anon_sym_PERCENT] = ACTIONS(4735), - [anon_sym_AMP] = ACTIONS(4737), - [anon_sym_SQUOTE] = ACTIONS(4735), - [anon_sym_PLUS] = ACTIONS(4735), - [anon_sym_COMMA] = ACTIONS(4735), - [anon_sym_DASH] = ACTIONS(4737), - [anon_sym_DOT] = ACTIONS(4737), - [anon_sym_SLASH] = ACTIONS(4735), - [anon_sym_COLON] = ACTIONS(4735), - [anon_sym_SEMI] = ACTIONS(4735), - [anon_sym_EQ] = ACTIONS(4735), - [anon_sym_QMARK] = ACTIONS(4735), - [anon_sym_LBRACK] = ACTIONS(4737), - [anon_sym_BSLASH] = ACTIONS(4737), - [anon_sym_CARET] = ACTIONS(4737), - [anon_sym_BQUOTE] = ACTIONS(4735), - [anon_sym_LBRACE] = ACTIONS(4735), - [anon_sym_PIPE] = ACTIONS(4735), - [anon_sym_TILDE] = ACTIONS(4735), - [anon_sym_LPAREN] = ACTIONS(4735), - [anon_sym_RPAREN] = ACTIONS(4735), - [sym__newline_token] = ACTIONS(4735), - [aux_sym_insert_token1] = ACTIONS(4735), - [aux_sym_delete_token1] = ACTIONS(4735), - [aux_sym_highlight_token1] = ACTIONS(4735), - [aux_sym_edit_comment_token1] = ACTIONS(4735), - [anon_sym_CARET_LBRACK] = ACTIONS(4735), - [anon_sym_LBRACK_CARET] = ACTIONS(4735), - [sym_uri_autolink] = ACTIONS(4735), - [sym_email_autolink] = ACTIONS(4735), - [sym__whitespace_ge_2] = ACTIONS(4735), - [aux_sym__whitespace_token1] = ACTIONS(4737), - [sym__word_no_digit] = ACTIONS(4735), - [sym__digits] = ACTIONS(4735), - [anon_sym_DASH_DASH] = ACTIONS(4737), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4735), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4735), - [sym__code_span_start] = ACTIONS(4735), - [sym__emphasis_open_star] = ACTIONS(4735), - [sym__emphasis_open_underscore] = ACTIONS(4735), - [sym__strikeout_open] = ACTIONS(4735), - [sym__latex_span_start] = ACTIONS(4735), - [sym__single_quote_open] = ACTIONS(4735), - [sym__double_quote_open] = ACTIONS(4735), - [sym__superscript_open] = ACTIONS(4735), - [sym__subscript_open] = ACTIONS(4735), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4735), - [sym__cite_author_in_text] = ACTIONS(4735), - [sym__cite_suppress_author] = ACTIONS(4735), - [sym__shortcode_open_escaped] = ACTIONS(4735), - [sym__shortcode_open] = ACTIONS(4735), - [sym__unclosed_span] = ACTIONS(4735), - [sym__strong_emphasis_open_star] = ACTIONS(4735), - [sym__strong_emphasis_open_underscore] = ACTIONS(4735), - }, - [STATE(1609)] = { + [STATE(1604)] = { [sym__backslash_escape] = ACTIONS(4711), [sym_entity_reference] = ACTIONS(4711), [sym_numeric_character_reference] = ACTIONS(4711), @@ -156386,7 +156050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4711), [sym__strong_emphasis_open_underscore] = ACTIONS(4711), }, - [STATE(1610)] = { + [STATE(1605)] = { [sym__backslash_escape] = ACTIONS(4715), [sym_entity_reference] = ACTIONS(4715), [sym_numeric_character_reference] = ACTIONS(4715), @@ -156453,7 +156117,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4715), [sym__strong_emphasis_open_underscore] = ACTIONS(4715), }, - [STATE(1611)] = { + [STATE(1606)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__strikeout_open] = ACTIONS(4391), + [sym__strikeout_close] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), + }, + [STATE(1607)] = { [sym__backslash_escape] = ACTIONS(4719), [sym_entity_reference] = ACTIONS(4719), [sym_numeric_character_reference] = ACTIONS(4719), @@ -156520,74 +156251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4719), [sym__strong_emphasis_open_underscore] = ACTIONS(4719), }, - [STATE(1612)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__strikeout_open] = ACTIONS(4413), - [sym__strikeout_close] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), - }, - [STATE(1613)] = { + [STATE(1608)] = { [sym__backslash_escape] = ACTIONS(4723), [sym_entity_reference] = ACTIONS(4723), [sym_numeric_character_reference] = ACTIONS(4723), @@ -156654,7 +156318,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4723), [sym__strong_emphasis_open_underscore] = ACTIONS(4723), }, - [STATE(1614)] = { + [STATE(1609)] = { + [sym__backslash_escape] = ACTIONS(4527), + [sym_entity_reference] = ACTIONS(4527), + [sym_numeric_character_reference] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_POUND] = ACTIONS(4527), + [anon_sym_DOLLAR] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_BSLASH] = ACTIONS(4529), + [anon_sym_CARET] = ACTIONS(4529), + [anon_sym_BQUOTE] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_RPAREN] = ACTIONS(4527), + [sym__newline_token] = ACTIONS(4527), + [aux_sym_insert_token1] = ACTIONS(4527), + [aux_sym_delete_token1] = ACTIONS(4527), + [aux_sym_highlight_token1] = ACTIONS(4527), + [aux_sym_edit_comment_token1] = ACTIONS(4527), + [anon_sym_CARET_LBRACK] = ACTIONS(4527), + [anon_sym_LBRACK_CARET] = ACTIONS(4527), + [sym_uri_autolink] = ACTIONS(4527), + [sym_email_autolink] = ACTIONS(4527), + [sym__whitespace_ge_2] = ACTIONS(4527), + [aux_sym__whitespace_token1] = ACTIONS(4529), + [sym__word_no_digit] = ACTIONS(4527), + [sym__digits] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), + [sym__code_span_start] = ACTIONS(4527), + [sym__emphasis_open_star] = ACTIONS(4527), + [sym__emphasis_open_underscore] = ACTIONS(4527), + [sym__strikeout_open] = ACTIONS(4527), + [sym__strikeout_close] = ACTIONS(4527), + [sym__latex_span_start] = ACTIONS(4527), + [sym__single_quote_open] = ACTIONS(4527), + [sym__double_quote_open] = ACTIONS(4527), + [sym__superscript_open] = ACTIONS(4527), + [sym__subscript_open] = ACTIONS(4527), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), + [sym__cite_author_in_text] = ACTIONS(4527), + [sym__cite_suppress_author] = ACTIONS(4527), + [sym__shortcode_open_escaped] = ACTIONS(4527), + [sym__shortcode_open] = ACTIONS(4527), + [sym__unclosed_span] = ACTIONS(4527), + [sym__strong_emphasis_open_star] = ACTIONS(4527), + [sym__strong_emphasis_open_underscore] = ACTIONS(4527), + }, + [STATE(1610)] = { [sym__backslash_escape] = ACTIONS(4727), [sym_entity_reference] = ACTIONS(4727), [sym_numeric_character_reference] = ACTIONS(4727), @@ -156721,7 +156452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4727), [sym__strong_emphasis_open_underscore] = ACTIONS(4727), }, - [STATE(1615)] = { + [STATE(1611)] = { [sym__backslash_escape] = ACTIONS(4731), [sym_entity_reference] = ACTIONS(4731), [sym_numeric_character_reference] = ACTIONS(4731), @@ -156788,7 +156519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4731), [sym__strong_emphasis_open_underscore] = ACTIONS(4731), }, - [STATE(1616)] = { + [STATE(1612)] = { [sym__backslash_escape] = ACTIONS(4735), [sym_entity_reference] = ACTIONS(4735), [sym_numeric_character_reference] = ACTIONS(4735), @@ -156855,7 +156586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4735), [sym__strong_emphasis_open_underscore] = ACTIONS(4735), }, - [STATE(1617)] = { + [STATE(1613)] = { [sym__backslash_escape] = ACTIONS(4739), [sym_entity_reference] = ACTIONS(4739), [sym_numeric_character_reference] = ACTIONS(4739), @@ -156922,7 +156653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4739), [sym__strong_emphasis_open_underscore] = ACTIONS(4739), }, - [STATE(1618)] = { + [STATE(1614)] = { [sym__backslash_escape] = ACTIONS(4743), [sym_entity_reference] = ACTIONS(4743), [sym_numeric_character_reference] = ACTIONS(4743), @@ -156989,7 +156720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4743), [sym__strong_emphasis_open_underscore] = ACTIONS(4743), }, - [STATE(1619)] = { + [STATE(1615)] = { [sym__backslash_escape] = ACTIONS(4747), [sym_entity_reference] = ACTIONS(4747), [sym_numeric_character_reference] = ACTIONS(4747), @@ -157056,7 +156787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4747), [sym__strong_emphasis_open_underscore] = ACTIONS(4747), }, - [STATE(1620)] = { + [STATE(1616)] = { [sym__backslash_escape] = ACTIONS(4751), [sym_entity_reference] = ACTIONS(4751), [sym_numeric_character_reference] = ACTIONS(4751), @@ -157123,7 +156854,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4751), [sym__strong_emphasis_open_underscore] = ACTIONS(4751), }, - [STATE(1621)] = { + [STATE(1617)] = { + [ts_builtin_sym_end] = ACTIONS(4731), + [sym__backslash_escape] = ACTIONS(4731), + [sym_entity_reference] = ACTIONS(4731), + [sym_numeric_character_reference] = ACTIONS(4731), + [anon_sym_LT] = ACTIONS(4733), + [anon_sym_GT] = ACTIONS(4731), + [anon_sym_BANG] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4731), + [anon_sym_POUND] = ACTIONS(4731), + [anon_sym_DOLLAR] = ACTIONS(4731), + [anon_sym_PERCENT] = ACTIONS(4731), + [anon_sym_AMP] = ACTIONS(4733), + [anon_sym_SQUOTE] = ACTIONS(4731), + [anon_sym_PLUS] = ACTIONS(4731), + [anon_sym_COMMA] = ACTIONS(4731), + [anon_sym_DASH] = ACTIONS(4733), + [anon_sym_DOT] = ACTIONS(4733), + [anon_sym_SLASH] = ACTIONS(4731), + [anon_sym_COLON] = ACTIONS(4731), + [anon_sym_SEMI] = ACTIONS(4731), + [anon_sym_EQ] = ACTIONS(4731), + [anon_sym_QMARK] = ACTIONS(4731), + [anon_sym_LBRACK] = ACTIONS(4733), + [anon_sym_BSLASH] = ACTIONS(4733), + [anon_sym_CARET] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4731), + [anon_sym_LBRACE] = ACTIONS(4731), + [anon_sym_PIPE] = ACTIONS(4731), + [anon_sym_TILDE] = ACTIONS(4731), + [anon_sym_LPAREN] = ACTIONS(4731), + [anon_sym_RPAREN] = ACTIONS(4731), + [sym__newline_token] = ACTIONS(4731), + [aux_sym_insert_token1] = ACTIONS(4731), + [aux_sym_delete_token1] = ACTIONS(4731), + [aux_sym_highlight_token1] = ACTIONS(4731), + [aux_sym_edit_comment_token1] = ACTIONS(4731), + [anon_sym_CARET_LBRACK] = ACTIONS(4731), + [anon_sym_LBRACK_CARET] = ACTIONS(4731), + [sym_uri_autolink] = ACTIONS(4731), + [sym_email_autolink] = ACTIONS(4731), + [sym__whitespace_ge_2] = ACTIONS(4731), + [aux_sym__whitespace_token1] = ACTIONS(4733), + [sym__word_no_digit] = ACTIONS(4731), + [sym__digits] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4733), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4731), + [sym__code_span_start] = ACTIONS(4731), + [sym__emphasis_open_star] = ACTIONS(4731), + [sym__emphasis_open_underscore] = ACTIONS(4731), + [sym__strikeout_open] = ACTIONS(4731), + [sym__latex_span_start] = ACTIONS(4731), + [sym__single_quote_open] = ACTIONS(4731), + [sym__double_quote_open] = ACTIONS(4731), + [sym__superscript_open] = ACTIONS(4731), + [sym__subscript_open] = ACTIONS(4731), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4731), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4731), + [sym__cite_author_in_text] = ACTIONS(4731), + [sym__cite_suppress_author] = ACTIONS(4731), + [sym__shortcode_open_escaped] = ACTIONS(4731), + [sym__shortcode_open] = ACTIONS(4731), + [sym__unclosed_span] = ACTIONS(4731), + [sym__strong_emphasis_open_star] = ACTIONS(4731), + [sym__strong_emphasis_open_underscore] = ACTIONS(4731), + }, + [STATE(1618)] = { [sym__backslash_escape] = ACTIONS(4755), [sym_entity_reference] = ACTIONS(4755), [sym_numeric_character_reference] = ACTIONS(4755), @@ -157190,7 +156988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4755), [sym__strong_emphasis_open_underscore] = ACTIONS(4755), }, - [STATE(1622)] = { + [STATE(1619)] = { [sym__backslash_escape] = ACTIONS(4759), [sym_entity_reference] = ACTIONS(4759), [sym_numeric_character_reference] = ACTIONS(4759), @@ -157257,74 +157055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4759), [sym__strong_emphasis_open_underscore] = ACTIONS(4759), }, - [STATE(1623)] = { - [ts_builtin_sym_end] = ACTIONS(4739), - [sym__backslash_escape] = ACTIONS(4739), - [sym_entity_reference] = ACTIONS(4739), - [sym_numeric_character_reference] = ACTIONS(4739), - [anon_sym_LT] = ACTIONS(4741), - [anon_sym_GT] = ACTIONS(4739), - [anon_sym_BANG] = ACTIONS(4739), - [anon_sym_DQUOTE] = ACTIONS(4739), - [anon_sym_POUND] = ACTIONS(4739), - [anon_sym_DOLLAR] = ACTIONS(4739), - [anon_sym_PERCENT] = ACTIONS(4739), - [anon_sym_AMP] = ACTIONS(4741), - [anon_sym_SQUOTE] = ACTIONS(4739), - [anon_sym_PLUS] = ACTIONS(4739), - [anon_sym_COMMA] = ACTIONS(4739), - [anon_sym_DASH] = ACTIONS(4741), - [anon_sym_DOT] = ACTIONS(4741), - [anon_sym_SLASH] = ACTIONS(4739), - [anon_sym_COLON] = ACTIONS(4739), - [anon_sym_SEMI] = ACTIONS(4739), - [anon_sym_EQ] = ACTIONS(4739), - [anon_sym_QMARK] = ACTIONS(4739), - [anon_sym_LBRACK] = ACTIONS(4741), - [anon_sym_BSLASH] = ACTIONS(4741), - [anon_sym_CARET] = ACTIONS(4741), - [anon_sym_BQUOTE] = ACTIONS(4739), - [anon_sym_LBRACE] = ACTIONS(4739), - [anon_sym_PIPE] = ACTIONS(4739), - [anon_sym_TILDE] = ACTIONS(4739), - [anon_sym_LPAREN] = ACTIONS(4739), - [anon_sym_RPAREN] = ACTIONS(4739), - [sym__newline_token] = ACTIONS(4739), - [aux_sym_insert_token1] = ACTIONS(4739), - [aux_sym_delete_token1] = ACTIONS(4739), - [aux_sym_highlight_token1] = ACTIONS(4739), - [aux_sym_edit_comment_token1] = ACTIONS(4739), - [anon_sym_CARET_LBRACK] = ACTIONS(4739), - [anon_sym_LBRACK_CARET] = ACTIONS(4739), - [sym_uri_autolink] = ACTIONS(4739), - [sym_email_autolink] = ACTIONS(4739), - [sym__whitespace_ge_2] = ACTIONS(4739), - [aux_sym__whitespace_token1] = ACTIONS(4741), - [sym__word_no_digit] = ACTIONS(4739), - [sym__digits] = ACTIONS(4739), - [anon_sym_DASH_DASH] = ACTIONS(4741), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4739), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4739), - [sym__code_span_start] = ACTIONS(4739), - [sym__emphasis_open_star] = ACTIONS(4739), - [sym__emphasis_open_underscore] = ACTIONS(4739), - [sym__strikeout_open] = ACTIONS(4739), - [sym__latex_span_start] = ACTIONS(4739), - [sym__single_quote_open] = ACTIONS(4739), - [sym__double_quote_open] = ACTIONS(4739), - [sym__superscript_open] = ACTIONS(4739), - [sym__subscript_open] = ACTIONS(4739), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4739), - [sym__cite_author_in_text] = ACTIONS(4739), - [sym__cite_suppress_author] = ACTIONS(4739), - [sym__shortcode_open_escaped] = ACTIONS(4739), - [sym__shortcode_open] = ACTIONS(4739), - [sym__unclosed_span] = ACTIONS(4739), - [sym__strong_emphasis_open_star] = ACTIONS(4739), - [sym__strong_emphasis_open_underscore] = ACTIONS(4739), - }, - [STATE(1624)] = { + [STATE(1620)] = { [sym__backslash_escape] = ACTIONS(4763), [sym_entity_reference] = ACTIONS(4763), [sym_numeric_character_reference] = ACTIONS(4763), @@ -157391,141 +157122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4763), [sym__strong_emphasis_open_underscore] = ACTIONS(4763), }, - [STATE(1625)] = { - [sym__backslash_escape] = ACTIONS(4527), - [sym_entity_reference] = ACTIONS(4527), - [sym_numeric_character_reference] = ACTIONS(4527), - [anon_sym_LT] = ACTIONS(4529), - [anon_sym_GT] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(4527), - [anon_sym_DQUOTE] = ACTIONS(4527), - [anon_sym_POUND] = ACTIONS(4527), - [anon_sym_DOLLAR] = ACTIONS(4527), - [anon_sym_PERCENT] = ACTIONS(4527), - [anon_sym_AMP] = ACTIONS(4529), - [anon_sym_SQUOTE] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(4527), - [anon_sym_COMMA] = ACTIONS(4527), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_DOT] = ACTIONS(4529), - [anon_sym_SLASH] = ACTIONS(4527), - [anon_sym_COLON] = ACTIONS(4527), - [anon_sym_SEMI] = ACTIONS(4527), - [anon_sym_EQ] = ACTIONS(4527), - [anon_sym_QMARK] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4529), - [anon_sym_BSLASH] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(4529), - [anon_sym_BQUOTE] = ACTIONS(4527), - [anon_sym_LBRACE] = ACTIONS(4527), - [anon_sym_PIPE] = ACTIONS(4527), - [anon_sym_TILDE] = ACTIONS(4527), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym_RPAREN] = ACTIONS(4527), - [sym__newline_token] = ACTIONS(4527), - [aux_sym_insert_token1] = ACTIONS(4527), - [aux_sym_delete_token1] = ACTIONS(4527), - [aux_sym_highlight_token1] = ACTIONS(4527), - [aux_sym_edit_comment_token1] = ACTIONS(4527), - [anon_sym_CARET_LBRACK] = ACTIONS(4527), - [anon_sym_LBRACK_CARET] = ACTIONS(4527), - [sym_uri_autolink] = ACTIONS(4527), - [sym_email_autolink] = ACTIONS(4527), - [sym__whitespace_ge_2] = ACTIONS(4527), - [aux_sym__whitespace_token1] = ACTIONS(4529), - [sym__word_no_digit] = ACTIONS(4527), - [sym__digits] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), - [sym__code_span_start] = ACTIONS(4527), - [sym__emphasis_open_star] = ACTIONS(4527), - [sym__emphasis_open_underscore] = ACTIONS(4527), - [sym__strikeout_open] = ACTIONS(4527), - [sym__strikeout_close] = ACTIONS(4527), - [sym__latex_span_start] = ACTIONS(4527), - [sym__single_quote_open] = ACTIONS(4527), - [sym__double_quote_open] = ACTIONS(4527), - [sym__superscript_open] = ACTIONS(4527), - [sym__subscript_open] = ACTIONS(4527), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), - [sym__cite_author_in_text] = ACTIONS(4527), - [sym__cite_suppress_author] = ACTIONS(4527), - [sym__shortcode_open_escaped] = ACTIONS(4527), - [sym__shortcode_open] = ACTIONS(4527), - [sym__unclosed_span] = ACTIONS(4527), - [sym__strong_emphasis_open_star] = ACTIONS(4527), - [sym__strong_emphasis_open_underscore] = ACTIONS(4527), - }, - [STATE(1626)] = { - [sym__backslash_escape] = ACTIONS(4531), - [sym_entity_reference] = ACTIONS(4531), - [sym_numeric_character_reference] = ACTIONS(4531), - [anon_sym_LT] = ACTIONS(4533), - [anon_sym_GT] = ACTIONS(4531), - [anon_sym_BANG] = ACTIONS(4531), - [anon_sym_DQUOTE] = ACTIONS(4531), - [anon_sym_POUND] = ACTIONS(4531), - [anon_sym_DOLLAR] = ACTIONS(4531), - [anon_sym_PERCENT] = ACTIONS(4531), - [anon_sym_AMP] = ACTIONS(4533), - [anon_sym_SQUOTE] = ACTIONS(4531), - [anon_sym_PLUS] = ACTIONS(4531), - [anon_sym_COMMA] = ACTIONS(4531), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4533), - [anon_sym_SLASH] = ACTIONS(4531), - [anon_sym_COLON] = ACTIONS(4531), - [anon_sym_SEMI] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4531), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_BSLASH] = ACTIONS(4533), - [anon_sym_CARET] = ACTIONS(4533), - [anon_sym_BQUOTE] = ACTIONS(4531), - [anon_sym_LBRACE] = ACTIONS(4531), - [anon_sym_PIPE] = ACTIONS(4531), - [anon_sym_TILDE] = ACTIONS(4531), - [anon_sym_LPAREN] = ACTIONS(4531), - [anon_sym_RPAREN] = ACTIONS(4531), - [sym__newline_token] = ACTIONS(4531), - [aux_sym_insert_token1] = ACTIONS(4531), - [aux_sym_delete_token1] = ACTIONS(4531), - [aux_sym_highlight_token1] = ACTIONS(4531), - [aux_sym_edit_comment_token1] = ACTIONS(4531), - [anon_sym_CARET_LBRACK] = ACTIONS(4531), - [anon_sym_LBRACK_CARET] = ACTIONS(4531), - [sym_uri_autolink] = ACTIONS(4531), - [sym_email_autolink] = ACTIONS(4531), - [sym__whitespace_ge_2] = ACTIONS(4531), - [aux_sym__whitespace_token1] = ACTIONS(4533), - [sym__word_no_digit] = ACTIONS(4531), - [sym__digits] = ACTIONS(4531), - [anon_sym_DASH_DASH] = ACTIONS(4533), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), - [sym__code_span_start] = ACTIONS(4531), - [sym__emphasis_open_star] = ACTIONS(4531), - [sym__emphasis_open_underscore] = ACTIONS(4531), - [sym__strikeout_open] = ACTIONS(4531), - [sym__strikeout_close] = ACTIONS(4531), - [sym__latex_span_start] = ACTIONS(4531), - [sym__single_quote_open] = ACTIONS(4531), - [sym__double_quote_open] = ACTIONS(4531), - [sym__superscript_open] = ACTIONS(4531), - [sym__subscript_open] = ACTIONS(4531), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), - [sym__cite_author_in_text] = ACTIONS(4531), - [sym__cite_suppress_author] = ACTIONS(4531), - [sym__shortcode_open_escaped] = ACTIONS(4531), - [sym__shortcode_open] = ACTIONS(4531), - [sym__unclosed_span] = ACTIONS(4531), - [sym__strong_emphasis_open_star] = ACTIONS(4531), - [sym__strong_emphasis_open_underscore] = ACTIONS(4531), - }, - [STATE(1627)] = { + [STATE(1621)] = { [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), [sym_numeric_character_reference] = ACTIONS(4209), @@ -157592,7 +157189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4209), [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, - [STATE(1628)] = { + [STATE(1622)] = { [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), [sym_numeric_character_reference] = ACTIONS(4213), @@ -157659,7 +157256,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4213), [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, - [STATE(1629)] = { + [STATE(1623)] = { + [sym__backslash_escape] = ACTIONS(4531), + [sym_entity_reference] = ACTIONS(4531), + [sym_numeric_character_reference] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_DQUOTE] = ACTIONS(4531), + [anon_sym_POUND] = ACTIONS(4531), + [anon_sym_DOLLAR] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4533), + [anon_sym_SQUOTE] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_DASH] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4533), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_BSLASH] = ACTIONS(4533), + [anon_sym_CARET] = ACTIONS(4533), + [anon_sym_BQUOTE] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_TILDE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_RPAREN] = ACTIONS(4531), + [sym__newline_token] = ACTIONS(4531), + [aux_sym_insert_token1] = ACTIONS(4531), + [aux_sym_delete_token1] = ACTIONS(4531), + [aux_sym_highlight_token1] = ACTIONS(4531), + [aux_sym_edit_comment_token1] = ACTIONS(4531), + [anon_sym_CARET_LBRACK] = ACTIONS(4531), + [anon_sym_LBRACK_CARET] = ACTIONS(4531), + [sym_uri_autolink] = ACTIONS(4531), + [sym_email_autolink] = ACTIONS(4531), + [sym__whitespace_ge_2] = ACTIONS(4531), + [aux_sym__whitespace_token1] = ACTIONS(4533), + [sym__word_no_digit] = ACTIONS(4531), + [sym__digits] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), + [sym__code_span_start] = ACTIONS(4531), + [sym__emphasis_open_star] = ACTIONS(4531), + [sym__emphasis_open_underscore] = ACTIONS(4531), + [sym__strikeout_open] = ACTIONS(4531), + [sym__strikeout_close] = ACTIONS(4531), + [sym__latex_span_start] = ACTIONS(4531), + [sym__single_quote_open] = ACTIONS(4531), + [sym__double_quote_open] = ACTIONS(4531), + [sym__superscript_open] = ACTIONS(4531), + [sym__subscript_open] = ACTIONS(4531), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), + [sym__cite_author_in_text] = ACTIONS(4531), + [sym__cite_suppress_author] = ACTIONS(4531), + [sym__shortcode_open_escaped] = ACTIONS(4531), + [sym__shortcode_open] = ACTIONS(4531), + [sym__unclosed_span] = ACTIONS(4531), + [sym__strong_emphasis_open_star] = ACTIONS(4531), + [sym__strong_emphasis_open_underscore] = ACTIONS(4531), + }, + [STATE(1624)] = { [sym__backslash_escape] = ACTIONS(4535), [sym_entity_reference] = ACTIONS(4535), [sym_numeric_character_reference] = ACTIONS(4535), @@ -157726,7 +157390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4535), [sym__strong_emphasis_open_underscore] = ACTIONS(4535), }, - [STATE(1630)] = { + [STATE(1625)] = { [sym__backslash_escape] = ACTIONS(4539), [sym_entity_reference] = ACTIONS(4539), [sym_numeric_character_reference] = ACTIONS(4539), @@ -157793,7 +157457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4539), [sym__strong_emphasis_open_underscore] = ACTIONS(4539), }, - [STATE(1631)] = { + [STATE(1626)] = { [sym__backslash_escape] = ACTIONS(4543), [sym_entity_reference] = ACTIONS(4543), [sym_numeric_character_reference] = ACTIONS(4543), @@ -157860,7 +157524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4543), [sym__strong_emphasis_open_underscore] = ACTIONS(4543), }, - [STATE(1632)] = { + [STATE(1627)] = { [sym__backslash_escape] = ACTIONS(4547), [sym_entity_reference] = ACTIONS(4547), [sym_numeric_character_reference] = ACTIONS(4547), @@ -157927,74 +157591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4547), [sym__strong_emphasis_open_underscore] = ACTIONS(4547), }, - [STATE(1633)] = { - [sym__backslash_escape] = ACTIONS(4551), - [sym_entity_reference] = ACTIONS(4551), - [sym_numeric_character_reference] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(4553), - [anon_sym_GT] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4551), - [anon_sym_DQUOTE] = ACTIONS(4551), - [anon_sym_POUND] = ACTIONS(4551), - [anon_sym_DOLLAR] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_AMP] = ACTIONS(4553), - [anon_sym_SQUOTE] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_COLON] = ACTIONS(4551), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_EQ] = ACTIONS(4551), - [anon_sym_QMARK] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_BSLASH] = ACTIONS(4553), - [anon_sym_CARET] = ACTIONS(4553), - [anon_sym_BQUOTE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_PIPE] = ACTIONS(4551), - [anon_sym_TILDE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_RPAREN] = ACTIONS(4551), - [sym__newline_token] = ACTIONS(4551), - [aux_sym_insert_token1] = ACTIONS(4551), - [aux_sym_delete_token1] = ACTIONS(4551), - [aux_sym_highlight_token1] = ACTIONS(4551), - [aux_sym_edit_comment_token1] = ACTIONS(4551), - [anon_sym_CARET_LBRACK] = ACTIONS(4551), - [anon_sym_LBRACK_CARET] = ACTIONS(4551), - [sym_uri_autolink] = ACTIONS(4551), - [sym_email_autolink] = ACTIONS(4551), - [sym__whitespace_ge_2] = ACTIONS(4551), - [aux_sym__whitespace_token1] = ACTIONS(4553), - [sym__word_no_digit] = ACTIONS(4551), - [sym__digits] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4553), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), - [sym__code_span_start] = ACTIONS(4551), - [sym__emphasis_open_star] = ACTIONS(4551), - [sym__emphasis_open_underscore] = ACTIONS(4551), - [sym__strikeout_open] = ACTIONS(4551), - [sym__strikeout_close] = ACTIONS(4551), - [sym__latex_span_start] = ACTIONS(4551), - [sym__single_quote_open] = ACTIONS(4551), - [sym__double_quote_open] = ACTIONS(4551), - [sym__superscript_open] = ACTIONS(4551), - [sym__subscript_open] = ACTIONS(4551), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), - [sym__cite_author_in_text] = ACTIONS(4551), - [sym__cite_suppress_author] = ACTIONS(4551), - [sym__shortcode_open_escaped] = ACTIONS(4551), - [sym__shortcode_open] = ACTIONS(4551), - [sym__unclosed_span] = ACTIONS(4551), - [sym__strong_emphasis_open_star] = ACTIONS(4551), - [sym__strong_emphasis_open_underscore] = ACTIONS(4551), - }, - [STATE(1634)] = { + [STATE(1628)] = { [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -158061,7 +157658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4217), [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, - [STATE(1635)] = { + [STATE(1629)] = { [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -158128,7 +157725,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4221), [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, - [STATE(1636)] = { + [STATE(1630)] = { + [sym__backslash_escape] = ACTIONS(4551), + [sym_entity_reference] = ACTIONS(4551), + [sym_numeric_character_reference] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_POUND] = ACTIONS(4551), + [anon_sym_DOLLAR] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4553), + [anon_sym_SQUOTE] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_BSLASH] = ACTIONS(4553), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_BQUOTE] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_RPAREN] = ACTIONS(4551), + [sym__newline_token] = ACTIONS(4551), + [aux_sym_insert_token1] = ACTIONS(4551), + [aux_sym_delete_token1] = ACTIONS(4551), + [aux_sym_highlight_token1] = ACTIONS(4551), + [aux_sym_edit_comment_token1] = ACTIONS(4551), + [anon_sym_CARET_LBRACK] = ACTIONS(4551), + [anon_sym_LBRACK_CARET] = ACTIONS(4551), + [sym_uri_autolink] = ACTIONS(4551), + [sym_email_autolink] = ACTIONS(4551), + [sym__whitespace_ge_2] = ACTIONS(4551), + [aux_sym__whitespace_token1] = ACTIONS(4553), + [sym__word_no_digit] = ACTIONS(4551), + [sym__digits] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), + [sym__code_span_start] = ACTIONS(4551), + [sym__emphasis_open_star] = ACTIONS(4551), + [sym__emphasis_open_underscore] = ACTIONS(4551), + [sym__strikeout_open] = ACTIONS(4551), + [sym__strikeout_close] = ACTIONS(4551), + [sym__latex_span_start] = ACTIONS(4551), + [sym__single_quote_open] = ACTIONS(4551), + [sym__double_quote_open] = ACTIONS(4551), + [sym__superscript_open] = ACTIONS(4551), + [sym__subscript_open] = ACTIONS(4551), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), + [sym__cite_author_in_text] = ACTIONS(4551), + [sym__cite_suppress_author] = ACTIONS(4551), + [sym__shortcode_open_escaped] = ACTIONS(4551), + [sym__shortcode_open] = ACTIONS(4551), + [sym__unclosed_span] = ACTIONS(4551), + [sym__strong_emphasis_open_star] = ACTIONS(4551), + [sym__strong_emphasis_open_underscore] = ACTIONS(4551), + }, + [STATE(1631)] = { [sym__backslash_escape] = ACTIONS(4555), [sym_entity_reference] = ACTIONS(4555), [sym_numeric_character_reference] = ACTIONS(4555), @@ -158195,7 +157859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4555), [sym__strong_emphasis_open_underscore] = ACTIONS(4555), }, - [STATE(1637)] = { + [STATE(1632)] = { [sym__backslash_escape] = ACTIONS(4559), [sym_entity_reference] = ACTIONS(4559), [sym_numeric_character_reference] = ACTIONS(4559), @@ -158262,7 +157926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4559), [sym__strong_emphasis_open_underscore] = ACTIONS(4559), }, - [STATE(1638)] = { + [STATE(1633)] = { [sym__backslash_escape] = ACTIONS(4563), [sym_entity_reference] = ACTIONS(4563), [sym_numeric_character_reference] = ACTIONS(4563), @@ -158329,74 +157993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4563), [sym__strong_emphasis_open_underscore] = ACTIONS(4563), }, - [STATE(1639)] = { - [sym__backslash_escape] = ACTIONS(4567), - [sym_entity_reference] = ACTIONS(4567), - [sym_numeric_character_reference] = ACTIONS(4567), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4567), - [anon_sym_BANG] = ACTIONS(4567), - [anon_sym_DQUOTE] = ACTIONS(4567), - [anon_sym_POUND] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_COLON] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_QMARK] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4569), - [anon_sym_BSLASH] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym_BQUOTE] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_PIPE] = ACTIONS(4567), - [anon_sym_TILDE] = ACTIONS(4567), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [sym__newline_token] = ACTIONS(4567), - [aux_sym_insert_token1] = ACTIONS(4567), - [aux_sym_delete_token1] = ACTIONS(4567), - [aux_sym_highlight_token1] = ACTIONS(4567), - [aux_sym_edit_comment_token1] = ACTIONS(4567), - [anon_sym_CARET_LBRACK] = ACTIONS(4567), - [anon_sym_LBRACK_CARET] = ACTIONS(4567), - [sym_uri_autolink] = ACTIONS(4567), - [sym_email_autolink] = ACTIONS(4567), - [sym__whitespace_ge_2] = ACTIONS(4567), - [aux_sym__whitespace_token1] = ACTIONS(4569), - [sym__word_no_digit] = ACTIONS(4567), - [sym__digits] = ACTIONS(4567), - [anon_sym_DASH_DASH] = ACTIONS(4569), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), - [sym__code_span_start] = ACTIONS(4567), - [sym__emphasis_open_star] = ACTIONS(4567), - [sym__emphasis_open_underscore] = ACTIONS(4567), - [sym__strikeout_open] = ACTIONS(4567), - [sym__strikeout_close] = ACTIONS(4567), - [sym__latex_span_start] = ACTIONS(4567), - [sym__single_quote_open] = ACTIONS(4567), - [sym__double_quote_open] = ACTIONS(4567), - [sym__superscript_open] = ACTIONS(4567), - [sym__subscript_open] = ACTIONS(4567), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), - [sym__cite_author_in_text] = ACTIONS(4567), - [sym__cite_suppress_author] = ACTIONS(4567), - [sym__shortcode_open_escaped] = ACTIONS(4567), - [sym__shortcode_open] = ACTIONS(4567), - [sym__unclosed_span] = ACTIONS(4567), - [sym__strong_emphasis_open_star] = ACTIONS(4567), - [sym__strong_emphasis_open_underscore] = ACTIONS(4567), - }, - [STATE(1640)] = { + [STATE(1634)] = { [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -158463,7 +158060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4225), [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, - [STATE(1641)] = { + [STATE(1635)] = { [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -158530,7 +158127,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4229), [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, - [STATE(1642)] = { + [STATE(1636)] = { + [sym__backslash_escape] = ACTIONS(4567), + [sym_entity_reference] = ACTIONS(4567), + [sym_numeric_character_reference] = ACTIONS(4567), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_DQUOTE] = ACTIONS(4567), + [anon_sym_POUND] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_BSLASH] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym_BQUOTE] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(4567), + [anon_sym_TILDE] = ACTIONS(4567), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [sym__newline_token] = ACTIONS(4567), + [aux_sym_insert_token1] = ACTIONS(4567), + [aux_sym_delete_token1] = ACTIONS(4567), + [aux_sym_highlight_token1] = ACTIONS(4567), + [aux_sym_edit_comment_token1] = ACTIONS(4567), + [anon_sym_CARET_LBRACK] = ACTIONS(4567), + [anon_sym_LBRACK_CARET] = ACTIONS(4567), + [sym_uri_autolink] = ACTIONS(4567), + [sym_email_autolink] = ACTIONS(4567), + [sym__whitespace_ge_2] = ACTIONS(4567), + [aux_sym__whitespace_token1] = ACTIONS(4569), + [sym__word_no_digit] = ACTIONS(4567), + [sym__digits] = ACTIONS(4567), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), + [sym__code_span_start] = ACTIONS(4567), + [sym__emphasis_open_star] = ACTIONS(4567), + [sym__emphasis_open_underscore] = ACTIONS(4567), + [sym__strikeout_open] = ACTIONS(4567), + [sym__strikeout_close] = ACTIONS(4567), + [sym__latex_span_start] = ACTIONS(4567), + [sym__single_quote_open] = ACTIONS(4567), + [sym__double_quote_open] = ACTIONS(4567), + [sym__superscript_open] = ACTIONS(4567), + [sym__subscript_open] = ACTIONS(4567), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), + [sym__cite_author_in_text] = ACTIONS(4567), + [sym__cite_suppress_author] = ACTIONS(4567), + [sym__shortcode_open_escaped] = ACTIONS(4567), + [sym__shortcode_open] = ACTIONS(4567), + [sym__unclosed_span] = ACTIONS(4567), + [sym__strong_emphasis_open_star] = ACTIONS(4567), + [sym__strong_emphasis_open_underscore] = ACTIONS(4567), + }, + [STATE(1637)] = { [sym__backslash_escape] = ACTIONS(4571), [sym_entity_reference] = ACTIONS(4571), [sym_numeric_character_reference] = ACTIONS(4571), @@ -158597,74 +158261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4571), [sym__strong_emphasis_open_underscore] = ACTIONS(4571), }, - [STATE(1643)] = { - [sym__backslash_escape] = ACTIONS(4575), - [sym_entity_reference] = ACTIONS(4575), - [sym_numeric_character_reference] = ACTIONS(4575), - [anon_sym_LT] = ACTIONS(4577), - [anon_sym_GT] = ACTIONS(4575), - [anon_sym_BANG] = ACTIONS(4575), - [anon_sym_DQUOTE] = ACTIONS(4575), - [anon_sym_POUND] = ACTIONS(4575), - [anon_sym_DOLLAR] = ACTIONS(4575), - [anon_sym_PERCENT] = ACTIONS(4575), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_SQUOTE] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4575), - [anon_sym_COMMA] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4577), - [anon_sym_SLASH] = ACTIONS(4575), - [anon_sym_COLON] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4575), - [anon_sym_EQ] = ACTIONS(4575), - [anon_sym_QMARK] = ACTIONS(4575), - [anon_sym_LBRACK] = ACTIONS(4577), - [anon_sym_BSLASH] = ACTIONS(4577), - [anon_sym_CARET] = ACTIONS(4577), - [anon_sym_BQUOTE] = ACTIONS(4575), - [anon_sym_LBRACE] = ACTIONS(4575), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_TILDE] = ACTIONS(4575), - [anon_sym_LPAREN] = ACTIONS(4575), - [anon_sym_RPAREN] = ACTIONS(4575), - [sym__newline_token] = ACTIONS(4575), - [aux_sym_insert_token1] = ACTIONS(4575), - [aux_sym_delete_token1] = ACTIONS(4575), - [aux_sym_highlight_token1] = ACTIONS(4575), - [aux_sym_edit_comment_token1] = ACTIONS(4575), - [anon_sym_CARET_LBRACK] = ACTIONS(4575), - [anon_sym_LBRACK_CARET] = ACTIONS(4575), - [sym_uri_autolink] = ACTIONS(4575), - [sym_email_autolink] = ACTIONS(4575), - [sym__whitespace_ge_2] = ACTIONS(4575), - [aux_sym__whitespace_token1] = ACTIONS(4577), - [sym__word_no_digit] = ACTIONS(4575), - [sym__digits] = ACTIONS(4575), - [anon_sym_DASH_DASH] = ACTIONS(4577), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), - [sym__code_span_start] = ACTIONS(4575), - [sym__emphasis_open_star] = ACTIONS(4575), - [sym__emphasis_open_underscore] = ACTIONS(4575), - [sym__strikeout_open] = ACTIONS(4575), - [sym__strikeout_close] = ACTIONS(4575), - [sym__latex_span_start] = ACTIONS(4575), - [sym__single_quote_open] = ACTIONS(4575), - [sym__double_quote_open] = ACTIONS(4575), - [sym__superscript_open] = ACTIONS(4575), - [sym__subscript_open] = ACTIONS(4575), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), - [sym__cite_author_in_text] = ACTIONS(4575), - [sym__cite_suppress_author] = ACTIONS(4575), - [sym__shortcode_open_escaped] = ACTIONS(4575), - [sym__shortcode_open] = ACTIONS(4575), - [sym__unclosed_span] = ACTIONS(4575), - [sym__strong_emphasis_open_star] = ACTIONS(4575), - [sym__strong_emphasis_open_underscore] = ACTIONS(4575), - }, - [STATE(1644)] = { + [STATE(1638)] = { [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -158731,7 +158328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4233), [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, - [STATE(1645)] = { + [STATE(1639)] = { [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -158798,7 +158395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4237), [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, - [STATE(1646)] = { + [STATE(1640)] = { [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -158865,74 +158462,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4241), [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, - [STATE(1647)] = { - [ts_builtin_sym_end] = ACTIONS(4743), - [sym__backslash_escape] = ACTIONS(4743), - [sym_entity_reference] = ACTIONS(4743), - [sym_numeric_character_reference] = ACTIONS(4743), - [anon_sym_LT] = ACTIONS(4745), - [anon_sym_GT] = ACTIONS(4743), - [anon_sym_BANG] = ACTIONS(4743), - [anon_sym_DQUOTE] = ACTIONS(4743), - [anon_sym_POUND] = ACTIONS(4743), - [anon_sym_DOLLAR] = ACTIONS(4743), - [anon_sym_PERCENT] = ACTIONS(4743), - [anon_sym_AMP] = ACTIONS(4745), - [anon_sym_SQUOTE] = ACTIONS(4743), - [anon_sym_PLUS] = ACTIONS(4743), - [anon_sym_COMMA] = ACTIONS(4743), - [anon_sym_DASH] = ACTIONS(4745), - [anon_sym_DOT] = ACTIONS(4745), - [anon_sym_SLASH] = ACTIONS(4743), - [anon_sym_COLON] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4743), - [anon_sym_EQ] = ACTIONS(4743), - [anon_sym_QMARK] = ACTIONS(4743), - [anon_sym_LBRACK] = ACTIONS(4745), - [anon_sym_BSLASH] = ACTIONS(4745), - [anon_sym_CARET] = ACTIONS(4745), - [anon_sym_BQUOTE] = ACTIONS(4743), - [anon_sym_LBRACE] = ACTIONS(4743), - [anon_sym_PIPE] = ACTIONS(4743), - [anon_sym_TILDE] = ACTIONS(4743), - [anon_sym_LPAREN] = ACTIONS(4743), - [anon_sym_RPAREN] = ACTIONS(4743), - [sym__newline_token] = ACTIONS(4743), - [aux_sym_insert_token1] = ACTIONS(4743), - [aux_sym_delete_token1] = ACTIONS(4743), - [aux_sym_highlight_token1] = ACTIONS(4743), - [aux_sym_edit_comment_token1] = ACTIONS(4743), - [anon_sym_CARET_LBRACK] = ACTIONS(4743), - [anon_sym_LBRACK_CARET] = ACTIONS(4743), - [sym_uri_autolink] = ACTIONS(4743), - [sym_email_autolink] = ACTIONS(4743), - [sym__whitespace_ge_2] = ACTIONS(4743), - [aux_sym__whitespace_token1] = ACTIONS(4745), - [sym__word_no_digit] = ACTIONS(4743), - [sym__digits] = ACTIONS(4743), - [anon_sym_DASH_DASH] = ACTIONS(4745), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4743), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4743), - [sym__code_span_start] = ACTIONS(4743), - [sym__emphasis_open_star] = ACTIONS(4743), - [sym__emphasis_open_underscore] = ACTIONS(4743), - [sym__strikeout_open] = ACTIONS(4743), - [sym__latex_span_start] = ACTIONS(4743), - [sym__single_quote_open] = ACTIONS(4743), - [sym__double_quote_open] = ACTIONS(4743), - [sym__superscript_open] = ACTIONS(4743), - [sym__subscript_open] = ACTIONS(4743), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4743), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4743), - [sym__cite_author_in_text] = ACTIONS(4743), - [sym__cite_suppress_author] = ACTIONS(4743), - [sym__shortcode_open_escaped] = ACTIONS(4743), - [sym__shortcode_open] = ACTIONS(4743), - [sym__unclosed_span] = ACTIONS(4743), - [sym__strong_emphasis_open_star] = ACTIONS(4743), - [sym__strong_emphasis_open_underscore] = ACTIONS(4743), + [STATE(1641)] = { + [ts_builtin_sym_end] = ACTIONS(4735), + [sym__backslash_escape] = ACTIONS(4735), + [sym_entity_reference] = ACTIONS(4735), + [sym_numeric_character_reference] = ACTIONS(4735), + [anon_sym_LT] = ACTIONS(4737), + [anon_sym_GT] = ACTIONS(4735), + [anon_sym_BANG] = ACTIONS(4735), + [anon_sym_DQUOTE] = ACTIONS(4735), + [anon_sym_POUND] = ACTIONS(4735), + [anon_sym_DOLLAR] = ACTIONS(4735), + [anon_sym_PERCENT] = ACTIONS(4735), + [anon_sym_AMP] = ACTIONS(4737), + [anon_sym_SQUOTE] = ACTIONS(4735), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_COMMA] = ACTIONS(4735), + [anon_sym_DASH] = ACTIONS(4737), + [anon_sym_DOT] = ACTIONS(4737), + [anon_sym_SLASH] = ACTIONS(4735), + [anon_sym_COLON] = ACTIONS(4735), + [anon_sym_SEMI] = ACTIONS(4735), + [anon_sym_EQ] = ACTIONS(4735), + [anon_sym_QMARK] = ACTIONS(4735), + [anon_sym_LBRACK] = ACTIONS(4737), + [anon_sym_BSLASH] = ACTIONS(4737), + [anon_sym_CARET] = ACTIONS(4737), + [anon_sym_BQUOTE] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4735), + [anon_sym_PIPE] = ACTIONS(4735), + [anon_sym_TILDE] = ACTIONS(4735), + [anon_sym_LPAREN] = ACTIONS(4735), + [anon_sym_RPAREN] = ACTIONS(4735), + [sym__newline_token] = ACTIONS(4735), + [aux_sym_insert_token1] = ACTIONS(4735), + [aux_sym_delete_token1] = ACTIONS(4735), + [aux_sym_highlight_token1] = ACTIONS(4735), + [aux_sym_edit_comment_token1] = ACTIONS(4735), + [anon_sym_CARET_LBRACK] = ACTIONS(4735), + [anon_sym_LBRACK_CARET] = ACTIONS(4735), + [sym_uri_autolink] = ACTIONS(4735), + [sym_email_autolink] = ACTIONS(4735), + [sym__whitespace_ge_2] = ACTIONS(4735), + [aux_sym__whitespace_token1] = ACTIONS(4737), + [sym__word_no_digit] = ACTIONS(4735), + [sym__digits] = ACTIONS(4735), + [anon_sym_DASH_DASH] = ACTIONS(4737), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4735), + [sym__code_span_start] = ACTIONS(4735), + [sym__emphasis_open_star] = ACTIONS(4735), + [sym__emphasis_open_underscore] = ACTIONS(4735), + [sym__strikeout_open] = ACTIONS(4735), + [sym__latex_span_start] = ACTIONS(4735), + [sym__single_quote_open] = ACTIONS(4735), + [sym__double_quote_open] = ACTIONS(4735), + [sym__superscript_open] = ACTIONS(4735), + [sym__subscript_open] = ACTIONS(4735), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4735), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4735), + [sym__cite_author_in_text] = ACTIONS(4735), + [sym__cite_suppress_author] = ACTIONS(4735), + [sym__shortcode_open_escaped] = ACTIONS(4735), + [sym__shortcode_open] = ACTIONS(4735), + [sym__unclosed_span] = ACTIONS(4735), + [sym__strong_emphasis_open_star] = ACTIONS(4735), + [sym__strong_emphasis_open_underscore] = ACTIONS(4735), }, - [STATE(1648)] = { + [STATE(1642)] = { [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -158999,74 +158596,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4245), [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, - [STATE(1649)] = { - [ts_builtin_sym_end] = ACTIONS(4747), - [sym__backslash_escape] = ACTIONS(4747), - [sym_entity_reference] = ACTIONS(4747), - [sym_numeric_character_reference] = ACTIONS(4747), - [anon_sym_LT] = ACTIONS(4749), - [anon_sym_GT] = ACTIONS(4747), - [anon_sym_BANG] = ACTIONS(4747), - [anon_sym_DQUOTE] = ACTIONS(4747), - [anon_sym_POUND] = ACTIONS(4747), - [anon_sym_DOLLAR] = ACTIONS(4747), - [anon_sym_PERCENT] = ACTIONS(4747), - [anon_sym_AMP] = ACTIONS(4749), - [anon_sym_SQUOTE] = ACTIONS(4747), - [anon_sym_PLUS] = ACTIONS(4747), - [anon_sym_COMMA] = ACTIONS(4747), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_DOT] = ACTIONS(4749), - [anon_sym_SLASH] = ACTIONS(4747), - [anon_sym_COLON] = ACTIONS(4747), - [anon_sym_SEMI] = ACTIONS(4747), - [anon_sym_EQ] = ACTIONS(4747), - [anon_sym_QMARK] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4749), - [anon_sym_BSLASH] = ACTIONS(4749), - [anon_sym_CARET] = ACTIONS(4749), - [anon_sym_BQUOTE] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(4747), - [anon_sym_PIPE] = ACTIONS(4747), - [anon_sym_TILDE] = ACTIONS(4747), - [anon_sym_LPAREN] = ACTIONS(4747), - [anon_sym_RPAREN] = ACTIONS(4747), - [sym__newline_token] = ACTIONS(4747), - [aux_sym_insert_token1] = ACTIONS(4747), - [aux_sym_delete_token1] = ACTIONS(4747), - [aux_sym_highlight_token1] = ACTIONS(4747), - [aux_sym_edit_comment_token1] = ACTIONS(4747), - [anon_sym_CARET_LBRACK] = ACTIONS(4747), - [anon_sym_LBRACK_CARET] = ACTIONS(4747), - [sym_uri_autolink] = ACTIONS(4747), - [sym_email_autolink] = ACTIONS(4747), - [sym__whitespace_ge_2] = ACTIONS(4747), - [aux_sym__whitespace_token1] = ACTIONS(4749), - [sym__word_no_digit] = ACTIONS(4747), - [sym__digits] = ACTIONS(4747), - [anon_sym_DASH_DASH] = ACTIONS(4749), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4747), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4747), - [sym__code_span_start] = ACTIONS(4747), - [sym__emphasis_open_star] = ACTIONS(4747), - [sym__emphasis_open_underscore] = ACTIONS(4747), - [sym__strikeout_open] = ACTIONS(4747), - [sym__latex_span_start] = ACTIONS(4747), - [sym__single_quote_open] = ACTIONS(4747), - [sym__double_quote_open] = ACTIONS(4747), - [sym__superscript_open] = ACTIONS(4747), - [sym__subscript_open] = ACTIONS(4747), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4747), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4747), - [sym__cite_author_in_text] = ACTIONS(4747), - [sym__cite_suppress_author] = ACTIONS(4747), - [sym__shortcode_open_escaped] = ACTIONS(4747), - [sym__shortcode_open] = ACTIONS(4747), - [sym__unclosed_span] = ACTIONS(4747), - [sym__strong_emphasis_open_star] = ACTIONS(4747), - [sym__strong_emphasis_open_underscore] = ACTIONS(4747), + [STATE(1643)] = { + [ts_builtin_sym_end] = ACTIONS(4739), + [sym__backslash_escape] = ACTIONS(4739), + [sym_entity_reference] = ACTIONS(4739), + [sym_numeric_character_reference] = ACTIONS(4739), + [anon_sym_LT] = ACTIONS(4741), + [anon_sym_GT] = ACTIONS(4739), + [anon_sym_BANG] = ACTIONS(4739), + [anon_sym_DQUOTE] = ACTIONS(4739), + [anon_sym_POUND] = ACTIONS(4739), + [anon_sym_DOLLAR] = ACTIONS(4739), + [anon_sym_PERCENT] = ACTIONS(4739), + [anon_sym_AMP] = ACTIONS(4741), + [anon_sym_SQUOTE] = ACTIONS(4739), + [anon_sym_PLUS] = ACTIONS(4739), + [anon_sym_COMMA] = ACTIONS(4739), + [anon_sym_DASH] = ACTIONS(4741), + [anon_sym_DOT] = ACTIONS(4741), + [anon_sym_SLASH] = ACTIONS(4739), + [anon_sym_COLON] = ACTIONS(4739), + [anon_sym_SEMI] = ACTIONS(4739), + [anon_sym_EQ] = ACTIONS(4739), + [anon_sym_QMARK] = ACTIONS(4739), + [anon_sym_LBRACK] = ACTIONS(4741), + [anon_sym_BSLASH] = ACTIONS(4741), + [anon_sym_CARET] = ACTIONS(4741), + [anon_sym_BQUOTE] = ACTIONS(4739), + [anon_sym_LBRACE] = ACTIONS(4739), + [anon_sym_PIPE] = ACTIONS(4739), + [anon_sym_TILDE] = ACTIONS(4739), + [anon_sym_LPAREN] = ACTIONS(4739), + [anon_sym_RPAREN] = ACTIONS(4739), + [sym__newline_token] = ACTIONS(4739), + [aux_sym_insert_token1] = ACTIONS(4739), + [aux_sym_delete_token1] = ACTIONS(4739), + [aux_sym_highlight_token1] = ACTIONS(4739), + [aux_sym_edit_comment_token1] = ACTIONS(4739), + [anon_sym_CARET_LBRACK] = ACTIONS(4739), + [anon_sym_LBRACK_CARET] = ACTIONS(4739), + [sym_uri_autolink] = ACTIONS(4739), + [sym_email_autolink] = ACTIONS(4739), + [sym__whitespace_ge_2] = ACTIONS(4739), + [aux_sym__whitespace_token1] = ACTIONS(4741), + [sym__word_no_digit] = ACTIONS(4739), + [sym__digits] = ACTIONS(4739), + [anon_sym_DASH_DASH] = ACTIONS(4741), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4739), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4739), + [sym__code_span_start] = ACTIONS(4739), + [sym__emphasis_open_star] = ACTIONS(4739), + [sym__emphasis_open_underscore] = ACTIONS(4739), + [sym__strikeout_open] = ACTIONS(4739), + [sym__latex_span_start] = ACTIONS(4739), + [sym__single_quote_open] = ACTIONS(4739), + [sym__double_quote_open] = ACTIONS(4739), + [sym__superscript_open] = ACTIONS(4739), + [sym__subscript_open] = ACTIONS(4739), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4739), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4739), + [sym__cite_author_in_text] = ACTIONS(4739), + [sym__cite_suppress_author] = ACTIONS(4739), + [sym__shortcode_open_escaped] = ACTIONS(4739), + [sym__shortcode_open] = ACTIONS(4739), + [sym__unclosed_span] = ACTIONS(4739), + [sym__strong_emphasis_open_star] = ACTIONS(4739), + [sym__strong_emphasis_open_underscore] = ACTIONS(4739), }, - [STATE(1650)] = { + [STATE(1644)] = { + [sym__backslash_escape] = ACTIONS(4575), + [sym_entity_reference] = ACTIONS(4575), + [sym_numeric_character_reference] = ACTIONS(4575), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4575), + [anon_sym_DQUOTE] = ACTIONS(4575), + [anon_sym_POUND] = ACTIONS(4575), + [anon_sym_DOLLAR] = ACTIONS(4575), + [anon_sym_PERCENT] = ACTIONS(4575), + [anon_sym_AMP] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4575), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_EQ] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4577), + [anon_sym_BSLASH] = ACTIONS(4577), + [anon_sym_CARET] = ACTIONS(4577), + [anon_sym_BQUOTE] = ACTIONS(4575), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_PIPE] = ACTIONS(4575), + [anon_sym_TILDE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_RPAREN] = ACTIONS(4575), + [sym__newline_token] = ACTIONS(4575), + [aux_sym_insert_token1] = ACTIONS(4575), + [aux_sym_delete_token1] = ACTIONS(4575), + [aux_sym_highlight_token1] = ACTIONS(4575), + [aux_sym_edit_comment_token1] = ACTIONS(4575), + [anon_sym_CARET_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_CARET] = ACTIONS(4575), + [sym_uri_autolink] = ACTIONS(4575), + [sym_email_autolink] = ACTIONS(4575), + [sym__whitespace_ge_2] = ACTIONS(4575), + [aux_sym__whitespace_token1] = ACTIONS(4577), + [sym__word_no_digit] = ACTIONS(4575), + [sym__digits] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4577), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), + [sym__code_span_start] = ACTIONS(4575), + [sym__emphasis_open_star] = ACTIONS(4575), + [sym__emphasis_open_underscore] = ACTIONS(4575), + [sym__strikeout_open] = ACTIONS(4575), + [sym__strikeout_close] = ACTIONS(4575), + [sym__latex_span_start] = ACTIONS(4575), + [sym__single_quote_open] = ACTIONS(4575), + [sym__double_quote_open] = ACTIONS(4575), + [sym__superscript_open] = ACTIONS(4575), + [sym__subscript_open] = ACTIONS(4575), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), + [sym__cite_author_in_text] = ACTIONS(4575), + [sym__cite_suppress_author] = ACTIONS(4575), + [sym__shortcode_open_escaped] = ACTIONS(4575), + [sym__shortcode_open] = ACTIONS(4575), + [sym__unclosed_span] = ACTIONS(4575), + [sym__strong_emphasis_open_star] = ACTIONS(4575), + [sym__strong_emphasis_open_underscore] = ACTIONS(4575), + }, + [STATE(1645)] = { [sym__backslash_escape] = ACTIONS(4579), [sym_entity_reference] = ACTIONS(4579), [sym_numeric_character_reference] = ACTIONS(4579), @@ -159133,74 +158797,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4579), [sym__strong_emphasis_open_underscore] = ACTIONS(4579), }, - [STATE(1651)] = { - [sym__backslash_escape] = ACTIONS(4583), - [sym_entity_reference] = ACTIONS(4583), - [sym_numeric_character_reference] = ACTIONS(4583), - [anon_sym_LT] = ACTIONS(4585), - [anon_sym_GT] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(4583), - [anon_sym_DQUOTE] = ACTIONS(4583), - [anon_sym_POUND] = ACTIONS(4583), - [anon_sym_DOLLAR] = ACTIONS(4583), - [anon_sym_PERCENT] = ACTIONS(4583), - [anon_sym_AMP] = ACTIONS(4585), - [anon_sym_SQUOTE] = ACTIONS(4583), - [anon_sym_PLUS] = ACTIONS(4583), - [anon_sym_COMMA] = ACTIONS(4583), - [anon_sym_DASH] = ACTIONS(4585), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_SLASH] = ACTIONS(4583), - [anon_sym_COLON] = ACTIONS(4583), - [anon_sym_SEMI] = ACTIONS(4583), - [anon_sym_EQ] = ACTIONS(4583), - [anon_sym_QMARK] = ACTIONS(4583), - [anon_sym_LBRACK] = ACTIONS(4585), - [anon_sym_BSLASH] = ACTIONS(4585), - [anon_sym_CARET] = ACTIONS(4585), - [anon_sym_BQUOTE] = ACTIONS(4583), - [anon_sym_LBRACE] = ACTIONS(4583), - [anon_sym_PIPE] = ACTIONS(4583), - [anon_sym_TILDE] = ACTIONS(4583), - [anon_sym_LPAREN] = ACTIONS(4583), - [anon_sym_RPAREN] = ACTIONS(4583), - [sym__newline_token] = ACTIONS(4583), - [aux_sym_insert_token1] = ACTIONS(4583), - [aux_sym_delete_token1] = ACTIONS(4583), - [aux_sym_highlight_token1] = ACTIONS(4583), - [aux_sym_edit_comment_token1] = ACTIONS(4583), - [anon_sym_CARET_LBRACK] = ACTIONS(4583), - [anon_sym_LBRACK_CARET] = ACTIONS(4583), - [sym_uri_autolink] = ACTIONS(4583), - [sym_email_autolink] = ACTIONS(4583), - [sym__whitespace_ge_2] = ACTIONS(4583), - [aux_sym__whitespace_token1] = ACTIONS(4585), - [sym__word_no_digit] = ACTIONS(4583), - [sym__digits] = ACTIONS(4583), - [anon_sym_DASH_DASH] = ACTIONS(4585), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4583), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4583), - [sym__code_span_start] = ACTIONS(4583), - [sym__emphasis_open_star] = ACTIONS(4583), - [sym__emphasis_open_underscore] = ACTIONS(4583), - [sym__strikeout_open] = ACTIONS(4583), - [sym__strikeout_close] = ACTIONS(4583), - [sym__latex_span_start] = ACTIONS(4583), - [sym__single_quote_open] = ACTIONS(4583), - [sym__double_quote_open] = ACTIONS(4583), - [sym__superscript_open] = ACTIONS(4583), - [sym__subscript_open] = ACTIONS(4583), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4583), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4583), - [sym__cite_author_in_text] = ACTIONS(4583), - [sym__cite_suppress_author] = ACTIONS(4583), - [sym__shortcode_open_escaped] = ACTIONS(4583), - [sym__shortcode_open] = ACTIONS(4583), - [sym__unclosed_span] = ACTIONS(4583), - [sym__strong_emphasis_open_star] = ACTIONS(4583), - [sym__strong_emphasis_open_underscore] = ACTIONS(4583), + [STATE(1646)] = { + [ts_builtin_sym_end] = ACTIONS(4743), + [sym__backslash_escape] = ACTIONS(4743), + [sym_entity_reference] = ACTIONS(4743), + [sym_numeric_character_reference] = ACTIONS(4743), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_GT] = ACTIONS(4743), + [anon_sym_BANG] = ACTIONS(4743), + [anon_sym_DQUOTE] = ACTIONS(4743), + [anon_sym_POUND] = ACTIONS(4743), + [anon_sym_DOLLAR] = ACTIONS(4743), + [anon_sym_PERCENT] = ACTIONS(4743), + [anon_sym_AMP] = ACTIONS(4745), + [anon_sym_SQUOTE] = ACTIONS(4743), + [anon_sym_PLUS] = ACTIONS(4743), + [anon_sym_COMMA] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_SLASH] = ACTIONS(4743), + [anon_sym_COLON] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_EQ] = ACTIONS(4743), + [anon_sym_QMARK] = ACTIONS(4743), + [anon_sym_LBRACK] = ACTIONS(4745), + [anon_sym_BSLASH] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4745), + [anon_sym_BQUOTE] = ACTIONS(4743), + [anon_sym_LBRACE] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_TILDE] = ACTIONS(4743), + [anon_sym_LPAREN] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [sym__newline_token] = ACTIONS(4743), + [aux_sym_insert_token1] = ACTIONS(4743), + [aux_sym_delete_token1] = ACTIONS(4743), + [aux_sym_highlight_token1] = ACTIONS(4743), + [aux_sym_edit_comment_token1] = ACTIONS(4743), + [anon_sym_CARET_LBRACK] = ACTIONS(4743), + [anon_sym_LBRACK_CARET] = ACTIONS(4743), + [sym_uri_autolink] = ACTIONS(4743), + [sym_email_autolink] = ACTIONS(4743), + [sym__whitespace_ge_2] = ACTIONS(4743), + [aux_sym__whitespace_token1] = ACTIONS(4745), + [sym__word_no_digit] = ACTIONS(4743), + [sym__digits] = ACTIONS(4743), + [anon_sym_DASH_DASH] = ACTIONS(4745), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4743), + [sym__code_span_start] = ACTIONS(4743), + [sym__emphasis_open_star] = ACTIONS(4743), + [sym__emphasis_open_underscore] = ACTIONS(4743), + [sym__strikeout_open] = ACTIONS(4743), + [sym__latex_span_start] = ACTIONS(4743), + [sym__single_quote_open] = ACTIONS(4743), + [sym__double_quote_open] = ACTIONS(4743), + [sym__superscript_open] = ACTIONS(4743), + [sym__subscript_open] = ACTIONS(4743), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4743), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4743), + [sym__cite_author_in_text] = ACTIONS(4743), + [sym__cite_suppress_author] = ACTIONS(4743), + [sym__shortcode_open_escaped] = ACTIONS(4743), + [sym__shortcode_open] = ACTIONS(4743), + [sym__unclosed_span] = ACTIONS(4743), + [sym__strong_emphasis_open_star] = ACTIONS(4743), + [sym__strong_emphasis_open_underscore] = ACTIONS(4743), }, - [STATE(1652)] = { + [STATE(1647)] = { + [ts_builtin_sym_end] = ACTIONS(4747), + [sym__backslash_escape] = ACTIONS(4747), + [sym_entity_reference] = ACTIONS(4747), + [sym_numeric_character_reference] = ACTIONS(4747), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_GT] = ACTIONS(4747), + [anon_sym_BANG] = ACTIONS(4747), + [anon_sym_DQUOTE] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4747), + [anon_sym_DOLLAR] = ACTIONS(4747), + [anon_sym_PERCENT] = ACTIONS(4747), + [anon_sym_AMP] = ACTIONS(4749), + [anon_sym_SQUOTE] = ACTIONS(4747), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_COMMA] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [anon_sym_LBRACK] = ACTIONS(4749), + [anon_sym_BSLASH] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4749), + [anon_sym_BQUOTE] = ACTIONS(4747), + [anon_sym_LBRACE] = ACTIONS(4747), + [anon_sym_PIPE] = ACTIONS(4747), + [anon_sym_TILDE] = ACTIONS(4747), + [anon_sym_LPAREN] = ACTIONS(4747), + [anon_sym_RPAREN] = ACTIONS(4747), + [sym__newline_token] = ACTIONS(4747), + [aux_sym_insert_token1] = ACTIONS(4747), + [aux_sym_delete_token1] = ACTIONS(4747), + [aux_sym_highlight_token1] = ACTIONS(4747), + [aux_sym_edit_comment_token1] = ACTIONS(4747), + [anon_sym_CARET_LBRACK] = ACTIONS(4747), + [anon_sym_LBRACK_CARET] = ACTIONS(4747), + [sym_uri_autolink] = ACTIONS(4747), + [sym_email_autolink] = ACTIONS(4747), + [sym__whitespace_ge_2] = ACTIONS(4747), + [aux_sym__whitespace_token1] = ACTIONS(4749), + [sym__word_no_digit] = ACTIONS(4747), + [sym__digits] = ACTIONS(4747), + [anon_sym_DASH_DASH] = ACTIONS(4749), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4747), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4747), + [sym__code_span_start] = ACTIONS(4747), + [sym__emphasis_open_star] = ACTIONS(4747), + [sym__emphasis_open_underscore] = ACTIONS(4747), + [sym__strikeout_open] = ACTIONS(4747), + [sym__latex_span_start] = ACTIONS(4747), + [sym__single_quote_open] = ACTIONS(4747), + [sym__double_quote_open] = ACTIONS(4747), + [sym__superscript_open] = ACTIONS(4747), + [sym__subscript_open] = ACTIONS(4747), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4747), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4747), + [sym__cite_author_in_text] = ACTIONS(4747), + [sym__cite_suppress_author] = ACTIONS(4747), + [sym__shortcode_open_escaped] = ACTIONS(4747), + [sym__shortcode_open] = ACTIONS(4747), + [sym__unclosed_span] = ACTIONS(4747), + [sym__strong_emphasis_open_star] = ACTIONS(4747), + [sym__strong_emphasis_open_underscore] = ACTIONS(4747), + }, + [STATE(1648)] = { [ts_builtin_sym_end] = ACTIONS(4751), [sym__backslash_escape] = ACTIONS(4751), [sym_entity_reference] = ACTIONS(4751), @@ -159267,7 +158998,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4751), [sym__strong_emphasis_open_underscore] = ACTIONS(4751), }, - [STATE(1653)] = { + [STATE(1649)] = { + [ts_builtin_sym_end] = ACTIONS(4623), + [sym__backslash_escape] = ACTIONS(4623), + [sym_entity_reference] = ACTIONS(4623), + [sym_numeric_character_reference] = ACTIONS(4623), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_GT] = ACTIONS(4623), + [anon_sym_BANG] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4623), + [anon_sym_DOLLAR] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_AMP] = ACTIONS(4625), + [anon_sym_SQUOTE] = ACTIONS(4623), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_COMMA] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_BSLASH] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4625), + [anon_sym_BQUOTE] = ACTIONS(4623), + [anon_sym_LBRACE] = ACTIONS(4623), + [anon_sym_PIPE] = ACTIONS(4623), + [anon_sym_TILDE] = ACTIONS(4623), + [anon_sym_LPAREN] = ACTIONS(4623), + [anon_sym_RPAREN] = ACTIONS(4623), + [sym__newline_token] = ACTIONS(4623), + [aux_sym_insert_token1] = ACTIONS(4623), + [aux_sym_delete_token1] = ACTIONS(4623), + [aux_sym_highlight_token1] = ACTIONS(4623), + [aux_sym_edit_comment_token1] = ACTIONS(4623), + [anon_sym_CARET_LBRACK] = ACTIONS(4623), + [anon_sym_LBRACK_CARET] = ACTIONS(4623), + [sym_uri_autolink] = ACTIONS(4623), + [sym_email_autolink] = ACTIONS(4623), + [sym__whitespace_ge_2] = ACTIONS(4623), + [aux_sym__whitespace_token1] = ACTIONS(4625), + [sym__word_no_digit] = ACTIONS(4623), + [sym__digits] = ACTIONS(4623), + [anon_sym_DASH_DASH] = ACTIONS(4625), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4623), + [sym__code_span_start] = ACTIONS(4623), + [sym__emphasis_open_star] = ACTIONS(4623), + [sym__emphasis_open_underscore] = ACTIONS(4623), + [sym__strikeout_open] = ACTIONS(4623), + [sym__latex_span_start] = ACTIONS(4623), + [sym__single_quote_open] = ACTIONS(4623), + [sym__double_quote_open] = ACTIONS(4623), + [sym__superscript_open] = ACTIONS(4623), + [sym__subscript_open] = ACTIONS(4623), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4623), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4623), + [sym__cite_author_in_text] = ACTIONS(4623), + [sym__cite_suppress_author] = ACTIONS(4623), + [sym__shortcode_open_escaped] = ACTIONS(4623), + [sym__shortcode_open] = ACTIONS(4623), + [sym__unclosed_span] = ACTIONS(4623), + [sym__strong_emphasis_open_star] = ACTIONS(4623), + [sym__strong_emphasis_open_underscore] = ACTIONS(4623), + }, + [STATE(1650)] = { [ts_builtin_sym_end] = ACTIONS(4755), [sym__backslash_escape] = ACTIONS(4755), [sym_entity_reference] = ACTIONS(4755), @@ -159334,7 +159132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4755), [sym__strong_emphasis_open_underscore] = ACTIONS(4755), }, - [STATE(1654)] = { + [STATE(1651)] = { [ts_builtin_sym_end] = ACTIONS(4759), [sym__backslash_escape] = ACTIONS(4759), [sym_entity_reference] = ACTIONS(4759), @@ -159401,74 +159199,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4759), [sym__strong_emphasis_open_underscore] = ACTIONS(4759), }, - [STATE(1655)] = { - [ts_builtin_sym_end] = ACTIONS(4627), - [sym__backslash_escape] = ACTIONS(4627), - [sym_entity_reference] = ACTIONS(4627), - [sym_numeric_character_reference] = ACTIONS(4627), - [anon_sym_LT] = ACTIONS(4629), - [anon_sym_GT] = ACTIONS(4627), - [anon_sym_BANG] = ACTIONS(4627), - [anon_sym_DQUOTE] = ACTIONS(4627), - [anon_sym_POUND] = ACTIONS(4627), - [anon_sym_DOLLAR] = ACTIONS(4627), - [anon_sym_PERCENT] = ACTIONS(4627), - [anon_sym_AMP] = ACTIONS(4629), - [anon_sym_SQUOTE] = ACTIONS(4627), - [anon_sym_PLUS] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_SLASH] = ACTIONS(4627), - [anon_sym_COLON] = ACTIONS(4627), - [anon_sym_SEMI] = ACTIONS(4627), - [anon_sym_EQ] = ACTIONS(4627), - [anon_sym_QMARK] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4629), - [anon_sym_BSLASH] = ACTIONS(4629), - [anon_sym_CARET] = ACTIONS(4629), - [anon_sym_BQUOTE] = ACTIONS(4627), - [anon_sym_LBRACE] = ACTIONS(4627), - [anon_sym_PIPE] = ACTIONS(4627), - [anon_sym_TILDE] = ACTIONS(4627), - [anon_sym_LPAREN] = ACTIONS(4627), - [anon_sym_RPAREN] = ACTIONS(4627), - [sym__newline_token] = ACTIONS(4627), - [aux_sym_insert_token1] = ACTIONS(4627), - [aux_sym_delete_token1] = ACTIONS(4627), - [aux_sym_highlight_token1] = ACTIONS(4627), - [aux_sym_edit_comment_token1] = ACTIONS(4627), - [anon_sym_CARET_LBRACK] = ACTIONS(4627), - [anon_sym_LBRACK_CARET] = ACTIONS(4627), - [sym_uri_autolink] = ACTIONS(4627), - [sym_email_autolink] = ACTIONS(4627), - [sym__whitespace_ge_2] = ACTIONS(4627), - [aux_sym__whitespace_token1] = ACTIONS(4629), - [sym__word_no_digit] = ACTIONS(4627), - [sym__digits] = ACTIONS(4627), - [anon_sym_DASH_DASH] = ACTIONS(4629), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4627), - [sym__code_span_start] = ACTIONS(4627), - [sym__emphasis_open_star] = ACTIONS(4627), - [sym__emphasis_open_underscore] = ACTIONS(4627), - [sym__strikeout_open] = ACTIONS(4627), - [sym__latex_span_start] = ACTIONS(4627), - [sym__single_quote_open] = ACTIONS(4627), - [sym__double_quote_open] = ACTIONS(4627), - [sym__superscript_open] = ACTIONS(4627), - [sym__subscript_open] = ACTIONS(4627), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4627), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4627), - [sym__cite_author_in_text] = ACTIONS(4627), - [sym__cite_suppress_author] = ACTIONS(4627), - [sym__shortcode_open_escaped] = ACTIONS(4627), - [sym__shortcode_open] = ACTIONS(4627), - [sym__unclosed_span] = ACTIONS(4627), - [sym__strong_emphasis_open_star] = ACTIONS(4627), - [sym__strong_emphasis_open_underscore] = ACTIONS(4627), + [STATE(1652)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__single_quote_close] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(1656)] = { + [STATE(1653)] = { + [sym__backslash_escape] = ACTIONS(4587), + [sym_entity_reference] = ACTIONS(4587), + [sym_numeric_character_reference] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4587), + [anon_sym_DQUOTE] = ACTIONS(4587), + [anon_sym_POUND] = ACTIONS(4587), + [anon_sym_DOLLAR] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4587), + [anon_sym_AMP] = ACTIONS(4589), + [anon_sym_SQUOTE] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_BSLASH] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4589), + [anon_sym_BQUOTE] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_PIPE] = ACTIONS(4587), + [anon_sym_TILDE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4587), + [sym__newline_token] = ACTIONS(4587), + [aux_sym_insert_token1] = ACTIONS(4587), + [aux_sym_delete_token1] = ACTIONS(4587), + [aux_sym_highlight_token1] = ACTIONS(4587), + [aux_sym_edit_comment_token1] = ACTIONS(4587), + [anon_sym_CARET_LBRACK] = ACTIONS(4587), + [anon_sym_LBRACK_CARET] = ACTIONS(4587), + [sym_uri_autolink] = ACTIONS(4587), + [sym_email_autolink] = ACTIONS(4587), + [sym__whitespace_ge_2] = ACTIONS(4587), + [aux_sym__whitespace_token1] = ACTIONS(4589), + [sym__word_no_digit] = ACTIONS(4587), + [sym__digits] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), + [sym__code_span_start] = ACTIONS(4587), + [sym__emphasis_open_star] = ACTIONS(4587), + [sym__emphasis_open_underscore] = ACTIONS(4587), + [sym__strikeout_open] = ACTIONS(4587), + [sym__latex_span_start] = ACTIONS(4587), + [sym__single_quote_open] = ACTIONS(4587), + [sym__single_quote_close] = ACTIONS(4587), + [sym__double_quote_open] = ACTIONS(4587), + [sym__superscript_open] = ACTIONS(4587), + [sym__subscript_open] = ACTIONS(4587), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), + [sym__cite_author_in_text] = ACTIONS(4587), + [sym__cite_suppress_author] = ACTIONS(4587), + [sym__shortcode_open_escaped] = ACTIONS(4587), + [sym__shortcode_open] = ACTIONS(4587), + [sym__unclosed_span] = ACTIONS(4587), + [sym__strong_emphasis_open_star] = ACTIONS(4587), + [sym__strong_emphasis_open_underscore] = ACTIONS(4587), + }, + [STATE(1654)] = { + [sym__backslash_escape] = ACTIONS(4591), + [sym_entity_reference] = ACTIONS(4591), + [sym_numeric_character_reference] = ACTIONS(4591), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_GT] = ACTIONS(4591), + [anon_sym_BANG] = ACTIONS(4591), + [anon_sym_DQUOTE] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4591), + [anon_sym_DOLLAR] = ACTIONS(4591), + [anon_sym_PERCENT] = ACTIONS(4591), + [anon_sym_AMP] = ACTIONS(4593), + [anon_sym_SQUOTE] = ACTIONS(4591), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [anon_sym_LBRACK] = ACTIONS(4593), + [anon_sym_BSLASH] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4593), + [anon_sym_BQUOTE] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4591), + [anon_sym_LPAREN] = ACTIONS(4591), + [anon_sym_RPAREN] = ACTIONS(4591), + [sym__newline_token] = ACTIONS(4591), + [aux_sym_insert_token1] = ACTIONS(4591), + [aux_sym_delete_token1] = ACTIONS(4591), + [aux_sym_highlight_token1] = ACTIONS(4591), + [aux_sym_edit_comment_token1] = ACTIONS(4591), + [anon_sym_CARET_LBRACK] = ACTIONS(4591), + [anon_sym_LBRACK_CARET] = ACTIONS(4591), + [sym_uri_autolink] = ACTIONS(4591), + [sym_email_autolink] = ACTIONS(4591), + [sym__whitespace_ge_2] = ACTIONS(4591), + [aux_sym__whitespace_token1] = ACTIONS(4593), + [sym__word_no_digit] = ACTIONS(4591), + [sym__digits] = ACTIONS(4591), + [anon_sym_DASH_DASH] = ACTIONS(4593), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4591), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), + [sym__code_span_start] = ACTIONS(4591), + [sym__emphasis_open_star] = ACTIONS(4591), + [sym__emphasis_open_underscore] = ACTIONS(4591), + [sym__strikeout_open] = ACTIONS(4591), + [sym__latex_span_start] = ACTIONS(4591), + [sym__single_quote_open] = ACTIONS(4591), + [sym__single_quote_close] = ACTIONS(4591), + [sym__double_quote_open] = ACTIONS(4591), + [sym__superscript_open] = ACTIONS(4591), + [sym__subscript_open] = ACTIONS(4591), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4591), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4591), + [sym__cite_author_in_text] = ACTIONS(4591), + [sym__cite_suppress_author] = ACTIONS(4591), + [sym__shortcode_open_escaped] = ACTIONS(4591), + [sym__shortcode_open] = ACTIONS(4591), + [sym__unclosed_span] = ACTIONS(4591), + [sym__strong_emphasis_open_star] = ACTIONS(4591), + [sym__strong_emphasis_open_underscore] = ACTIONS(4591), + }, + [STATE(1655)] = { [ts_builtin_sym_end] = ACTIONS(4763), [sym__backslash_escape] = ACTIONS(4763), [sym_entity_reference] = ACTIONS(4763), @@ -159535,208 +159467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4763), [sym__strong_emphasis_open_underscore] = ACTIONS(4763), }, - [STATE(1657)] = { - [ts_builtin_sym_end] = ACTIONS(4527), - [sym__backslash_escape] = ACTIONS(4527), - [sym_entity_reference] = ACTIONS(4527), - [sym_numeric_character_reference] = ACTIONS(4527), - [anon_sym_LT] = ACTIONS(4529), - [anon_sym_GT] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(4527), - [anon_sym_DQUOTE] = ACTIONS(4527), - [anon_sym_POUND] = ACTIONS(4527), - [anon_sym_DOLLAR] = ACTIONS(4527), - [anon_sym_PERCENT] = ACTIONS(4527), - [anon_sym_AMP] = ACTIONS(4529), - [anon_sym_SQUOTE] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(4527), - [anon_sym_COMMA] = ACTIONS(4527), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_DOT] = ACTIONS(4529), - [anon_sym_SLASH] = ACTIONS(4527), - [anon_sym_COLON] = ACTIONS(4527), - [anon_sym_SEMI] = ACTIONS(4527), - [anon_sym_EQ] = ACTIONS(4527), - [anon_sym_QMARK] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4529), - [anon_sym_BSLASH] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(4529), - [anon_sym_BQUOTE] = ACTIONS(4527), - [anon_sym_LBRACE] = ACTIONS(4527), - [anon_sym_PIPE] = ACTIONS(4527), - [anon_sym_TILDE] = ACTIONS(4527), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym_RPAREN] = ACTIONS(4527), - [sym__newline_token] = ACTIONS(4527), - [aux_sym_insert_token1] = ACTIONS(4527), - [aux_sym_delete_token1] = ACTIONS(4527), - [aux_sym_highlight_token1] = ACTIONS(4527), - [aux_sym_edit_comment_token1] = ACTIONS(4527), - [anon_sym_CARET_LBRACK] = ACTIONS(4527), - [anon_sym_LBRACK_CARET] = ACTIONS(4527), - [sym_uri_autolink] = ACTIONS(4527), - [sym_email_autolink] = ACTIONS(4527), - [sym__whitespace_ge_2] = ACTIONS(4527), - [aux_sym__whitespace_token1] = ACTIONS(4529), - [sym__word_no_digit] = ACTIONS(4527), - [sym__digits] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), - [sym__code_span_start] = ACTIONS(4527), - [sym__emphasis_open_star] = ACTIONS(4527), - [sym__emphasis_open_underscore] = ACTIONS(4527), - [sym__strikeout_open] = ACTIONS(4527), - [sym__latex_span_start] = ACTIONS(4527), - [sym__single_quote_open] = ACTIONS(4527), - [sym__double_quote_open] = ACTIONS(4527), - [sym__superscript_open] = ACTIONS(4527), - [sym__subscript_open] = ACTIONS(4527), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), - [sym__cite_author_in_text] = ACTIONS(4527), - [sym__cite_suppress_author] = ACTIONS(4527), - [sym__shortcode_open_escaped] = ACTIONS(4527), - [sym__shortcode_open] = ACTIONS(4527), - [sym__unclosed_span] = ACTIONS(4527), - [sym__strong_emphasis_open_star] = ACTIONS(4527), - [sym__strong_emphasis_open_underscore] = ACTIONS(4527), - }, - [STATE(1658)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__single_quote_close] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), - }, - [STATE(1659)] = { - [sym__backslash_escape] = ACTIONS(4591), - [sym_entity_reference] = ACTIONS(4591), - [sym_numeric_character_reference] = ACTIONS(4591), - [anon_sym_LT] = ACTIONS(4593), - [anon_sym_GT] = ACTIONS(4591), - [anon_sym_BANG] = ACTIONS(4591), - [anon_sym_DQUOTE] = ACTIONS(4591), - [anon_sym_POUND] = ACTIONS(4591), - [anon_sym_DOLLAR] = ACTIONS(4591), - [anon_sym_PERCENT] = ACTIONS(4591), - [anon_sym_AMP] = ACTIONS(4593), - [anon_sym_SQUOTE] = ACTIONS(4591), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_COMMA] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4593), - [anon_sym_SLASH] = ACTIONS(4591), - [anon_sym_COLON] = ACTIONS(4591), - [anon_sym_SEMI] = ACTIONS(4591), - [anon_sym_EQ] = ACTIONS(4591), - [anon_sym_QMARK] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_BSLASH] = ACTIONS(4593), - [anon_sym_CARET] = ACTIONS(4593), - [anon_sym_BQUOTE] = ACTIONS(4591), - [anon_sym_LBRACE] = ACTIONS(4591), - [anon_sym_PIPE] = ACTIONS(4591), - [anon_sym_TILDE] = ACTIONS(4591), - [anon_sym_LPAREN] = ACTIONS(4591), - [anon_sym_RPAREN] = ACTIONS(4591), - [sym__newline_token] = ACTIONS(4591), - [aux_sym_insert_token1] = ACTIONS(4591), - [aux_sym_delete_token1] = ACTIONS(4591), - [aux_sym_highlight_token1] = ACTIONS(4591), - [aux_sym_edit_comment_token1] = ACTIONS(4591), - [anon_sym_CARET_LBRACK] = ACTIONS(4591), - [anon_sym_LBRACK_CARET] = ACTIONS(4591), - [sym_uri_autolink] = ACTIONS(4591), - [sym_email_autolink] = ACTIONS(4591), - [sym__whitespace_ge_2] = ACTIONS(4591), - [aux_sym__whitespace_token1] = ACTIONS(4593), - [sym__word_no_digit] = ACTIONS(4591), - [sym__digits] = ACTIONS(4591), - [anon_sym_DASH_DASH] = ACTIONS(4593), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4591), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), - [sym__code_span_start] = ACTIONS(4591), - [sym__emphasis_open_star] = ACTIONS(4591), - [sym__emphasis_open_underscore] = ACTIONS(4591), - [sym__strikeout_open] = ACTIONS(4591), - [sym__latex_span_start] = ACTIONS(4591), - [sym__single_quote_open] = ACTIONS(4591), - [sym__single_quote_close] = ACTIONS(4591), - [sym__double_quote_open] = ACTIONS(4591), - [sym__superscript_open] = ACTIONS(4591), - [sym__subscript_open] = ACTIONS(4591), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4591), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4591), - [sym__cite_author_in_text] = ACTIONS(4591), - [sym__cite_suppress_author] = ACTIONS(4591), - [sym__shortcode_open_escaped] = ACTIONS(4591), - [sym__shortcode_open] = ACTIONS(4591), - [sym__unclosed_span] = ACTIONS(4591), - [sym__strong_emphasis_open_star] = ACTIONS(4591), - [sym__strong_emphasis_open_underscore] = ACTIONS(4591), - }, - [STATE(1660)] = { + [STATE(1656)] = { [sym__backslash_escape] = ACTIONS(4595), [sym_entity_reference] = ACTIONS(4595), [sym_numeric_character_reference] = ACTIONS(4595), @@ -159803,74 +159534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4595), [sym__strong_emphasis_open_underscore] = ACTIONS(4595), }, - [STATE(1661)] = { - [ts_builtin_sym_end] = ACTIONS(4531), - [sym__backslash_escape] = ACTIONS(4531), - [sym_entity_reference] = ACTIONS(4531), - [sym_numeric_character_reference] = ACTIONS(4531), - [anon_sym_LT] = ACTIONS(4533), - [anon_sym_GT] = ACTIONS(4531), - [anon_sym_BANG] = ACTIONS(4531), - [anon_sym_DQUOTE] = ACTIONS(4531), - [anon_sym_POUND] = ACTIONS(4531), - [anon_sym_DOLLAR] = ACTIONS(4531), - [anon_sym_PERCENT] = ACTIONS(4531), - [anon_sym_AMP] = ACTIONS(4533), - [anon_sym_SQUOTE] = ACTIONS(4531), - [anon_sym_PLUS] = ACTIONS(4531), - [anon_sym_COMMA] = ACTIONS(4531), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4533), - [anon_sym_SLASH] = ACTIONS(4531), - [anon_sym_COLON] = ACTIONS(4531), - [anon_sym_SEMI] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4531), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_BSLASH] = ACTIONS(4533), - [anon_sym_CARET] = ACTIONS(4533), - [anon_sym_BQUOTE] = ACTIONS(4531), - [anon_sym_LBRACE] = ACTIONS(4531), - [anon_sym_PIPE] = ACTIONS(4531), - [anon_sym_TILDE] = ACTIONS(4531), - [anon_sym_LPAREN] = ACTIONS(4531), - [anon_sym_RPAREN] = ACTIONS(4531), - [sym__newline_token] = ACTIONS(4531), - [aux_sym_insert_token1] = ACTIONS(4531), - [aux_sym_delete_token1] = ACTIONS(4531), - [aux_sym_highlight_token1] = ACTIONS(4531), - [aux_sym_edit_comment_token1] = ACTIONS(4531), - [anon_sym_CARET_LBRACK] = ACTIONS(4531), - [anon_sym_LBRACK_CARET] = ACTIONS(4531), - [sym_uri_autolink] = ACTIONS(4531), - [sym_email_autolink] = ACTIONS(4531), - [sym__whitespace_ge_2] = ACTIONS(4531), - [aux_sym__whitespace_token1] = ACTIONS(4533), - [sym__word_no_digit] = ACTIONS(4531), - [sym__digits] = ACTIONS(4531), - [anon_sym_DASH_DASH] = ACTIONS(4533), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), - [sym__code_span_start] = ACTIONS(4531), - [sym__emphasis_open_star] = ACTIONS(4531), - [sym__emphasis_open_underscore] = ACTIONS(4531), - [sym__strikeout_open] = ACTIONS(4531), - [sym__latex_span_start] = ACTIONS(4531), - [sym__single_quote_open] = ACTIONS(4531), - [sym__double_quote_open] = ACTIONS(4531), - [sym__superscript_open] = ACTIONS(4531), - [sym__subscript_open] = ACTIONS(4531), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), - [sym__cite_author_in_text] = ACTIONS(4531), - [sym__cite_suppress_author] = ACTIONS(4531), - [sym__shortcode_open_escaped] = ACTIONS(4531), - [sym__shortcode_open] = ACTIONS(4531), - [sym__unclosed_span] = ACTIONS(4531), - [sym__strong_emphasis_open_star] = ACTIONS(4531), - [sym__strong_emphasis_open_underscore] = ACTIONS(4531), - }, - [STATE(1662)] = { + [STATE(1657)] = { [sym__backslash_escape] = ACTIONS(4599), [sym_entity_reference] = ACTIONS(4599), [sym_numeric_character_reference] = ACTIONS(4599), @@ -159937,7 +159601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4599), [sym__strong_emphasis_open_underscore] = ACTIONS(4599), }, - [STATE(1663)] = { + [STATE(1658)] = { [sym__backslash_escape] = ACTIONS(4603), [sym_entity_reference] = ACTIONS(4603), [sym_numeric_character_reference] = ACTIONS(4603), @@ -160004,7 +159668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4603), [sym__strong_emphasis_open_underscore] = ACTIONS(4603), }, - [STATE(1664)] = { + [STATE(1659)] = { [sym__backslash_escape] = ACTIONS(4607), [sym_entity_reference] = ACTIONS(4607), [sym_numeric_character_reference] = ACTIONS(4607), @@ -160071,7 +159735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4607), [sym__strong_emphasis_open_underscore] = ACTIONS(4607), }, - [STATE(1665)] = { + [STATE(1660)] = { [sym__backslash_escape] = ACTIONS(4611), [sym_entity_reference] = ACTIONS(4611), [sym_numeric_character_reference] = ACTIONS(4611), @@ -160138,7 +159802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4611), [sym__strong_emphasis_open_underscore] = ACTIONS(4611), }, - [STATE(1666)] = { + [STATE(1661)] = { [sym__backslash_escape] = ACTIONS(4615), [sym_entity_reference] = ACTIONS(4615), [sym_numeric_character_reference] = ACTIONS(4615), @@ -160205,7 +159869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4615), [sym__strong_emphasis_open_underscore] = ACTIONS(4615), }, - [STATE(1667)] = { + [STATE(1662)] = { [sym__backslash_escape] = ACTIONS(4619), [sym_entity_reference] = ACTIONS(4619), [sym_numeric_character_reference] = ACTIONS(4619), @@ -160272,7 +159936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4619), [sym__strong_emphasis_open_underscore] = ACTIONS(4619), }, - [STATE(1668)] = { + [STATE(1663)] = { [sym__backslash_escape] = ACTIONS(4623), [sym_entity_reference] = ACTIONS(4623), [sym_numeric_character_reference] = ACTIONS(4623), @@ -160339,7 +160003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4623), [sym__strong_emphasis_open_underscore] = ACTIONS(4623), }, - [STATE(1669)] = { + [STATE(1664)] = { [sym__backslash_escape] = ACTIONS(4627), [sym_entity_reference] = ACTIONS(4627), [sym_numeric_character_reference] = ACTIONS(4627), @@ -160406,7 +160070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4627), [sym__strong_emphasis_open_underscore] = ACTIONS(4627), }, - [STATE(1670)] = { + [STATE(1665)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -160473,7 +160137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4631), [sym__strong_emphasis_open_underscore] = ACTIONS(4631), }, - [STATE(1671)] = { + [STATE(1666)] = { [sym__backslash_escape] = ACTIONS(4635), [sym_entity_reference] = ACTIONS(4635), [sym_numeric_character_reference] = ACTIONS(4635), @@ -160524,9 +160188,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(4635), [sym__emphasis_open_underscore] = ACTIONS(4635), [sym__strikeout_open] = ACTIONS(4635), + [sym__strikeout_close] = ACTIONS(4635), [sym__latex_span_start] = ACTIONS(4635), [sym__single_quote_open] = ACTIONS(4635), - [sym__single_quote_close] = ACTIONS(4635), [sym__double_quote_open] = ACTIONS(4635), [sym__superscript_open] = ACTIONS(4635), [sym__subscript_open] = ACTIONS(4635), @@ -160540,7 +160204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4635), [sym__strong_emphasis_open_underscore] = ACTIONS(4635), }, - [STATE(1672)] = { + [STATE(1667)] = { [sym__backslash_escape] = ACTIONS(4639), [sym_entity_reference] = ACTIONS(4639), [sym_numeric_character_reference] = ACTIONS(4639), @@ -160607,7 +160271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4639), [sym__strong_emphasis_open_underscore] = ACTIONS(4639), }, - [STATE(1673)] = { + [STATE(1668)] = { [sym__backslash_escape] = ACTIONS(4643), [sym_entity_reference] = ACTIONS(4643), [sym_numeric_character_reference] = ACTIONS(4643), @@ -160658,9 +160322,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(4643), [sym__emphasis_open_underscore] = ACTIONS(4643), [sym__strikeout_open] = ACTIONS(4643), - [sym__strikeout_close] = ACTIONS(4643), [sym__latex_span_start] = ACTIONS(4643), [sym__single_quote_open] = ACTIONS(4643), + [sym__single_quote_close] = ACTIONS(4643), [sym__double_quote_open] = ACTIONS(4643), [sym__superscript_open] = ACTIONS(4643), [sym__subscript_open] = ACTIONS(4643), @@ -160674,7 +160338,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4643), [sym__strong_emphasis_open_underscore] = ACTIONS(4643), }, - [STATE(1674)] = { + [STATE(1669)] = { + [sym__backslash_escape] = ACTIONS(4181), + [sym_entity_reference] = ACTIONS(4181), + [sym_numeric_character_reference] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4181), + [anon_sym_DQUOTE] = ACTIONS(4181), + [anon_sym_POUND] = ACTIONS(4181), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_PERCENT] = ACTIONS(4181), + [anon_sym_AMP] = ACTIONS(4183), + [anon_sym_SQUOTE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4181), + [anon_sym_COMMA] = ACTIONS(4181), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_DOT] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [anon_sym_SEMI] = ACTIONS(4181), + [anon_sym_EQ] = ACTIONS(4181), + [anon_sym_QMARK] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(4183), + [anon_sym_BSLASH] = ACTIONS(4183), + [anon_sym_CARET] = ACTIONS(4183), + [anon_sym_BQUOTE] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_TILDE] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym_RPAREN] = ACTIONS(4181), + [sym__newline_token] = ACTIONS(4181), + [aux_sym_insert_token1] = ACTIONS(4181), + [aux_sym_delete_token1] = ACTIONS(4181), + [aux_sym_highlight_token1] = ACTIONS(4181), + [aux_sym_edit_comment_token1] = ACTIONS(4181), + [anon_sym_CARET_LBRACK] = ACTIONS(4181), + [anon_sym_LBRACK_CARET] = ACTIONS(4181), + [sym_uri_autolink] = ACTIONS(4181), + [sym_email_autolink] = ACTIONS(4181), + [sym__whitespace_ge_2] = ACTIONS(4181), + [aux_sym__whitespace_token1] = ACTIONS(4183), + [sym__word_no_digit] = ACTIONS(4181), + [sym__digits] = ACTIONS(4181), + [anon_sym_DASH_DASH] = ACTIONS(4183), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4181), + [sym__code_span_start] = ACTIONS(4181), + [sym__emphasis_open_star] = ACTIONS(4181), + [sym__emphasis_open_underscore] = ACTIONS(4181), + [sym__strikeout_open] = ACTIONS(4181), + [sym__latex_span_start] = ACTIONS(4181), + [sym__single_quote_open] = ACTIONS(4181), + [sym__single_quote_close] = ACTIONS(4181), + [sym__double_quote_open] = ACTIONS(4181), + [sym__superscript_open] = ACTIONS(4181), + [sym__subscript_open] = ACTIONS(4181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4181), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4181), + [sym__cite_author_in_text] = ACTIONS(4181), + [sym__cite_suppress_author] = ACTIONS(4181), + [sym__shortcode_open_escaped] = ACTIONS(4181), + [sym__shortcode_open] = ACTIONS(4181), + [sym__unclosed_span] = ACTIONS(4181), + [sym__strong_emphasis_open_star] = ACTIONS(4181), + [sym__strong_emphasis_open_underscore] = ACTIONS(4181), + }, + [STATE(1670)] = { [sym__backslash_escape] = ACTIONS(4647), [sym_entity_reference] = ACTIONS(4647), [sym_numeric_character_reference] = ACTIONS(4647), @@ -160741,74 +160472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4647), [sym__strong_emphasis_open_underscore] = ACTIONS(4647), }, - [STATE(1675)] = { - [sym__backslash_escape] = ACTIONS(4181), - [sym_entity_reference] = ACTIONS(4181), - [sym_numeric_character_reference] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4183), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4181), - [anon_sym_POUND] = ACTIONS(4181), - [anon_sym_DOLLAR] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_AMP] = ACTIONS(4183), - [anon_sym_SQUOTE] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_COMMA] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4183), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_COLON] = ACTIONS(4181), - [anon_sym_SEMI] = ACTIONS(4181), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_QMARK] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_BSLASH] = ACTIONS(4183), - [anon_sym_CARET] = ACTIONS(4183), - [anon_sym_BQUOTE] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4181), - [anon_sym_PIPE] = ACTIONS(4181), - [anon_sym_TILDE] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_RPAREN] = ACTIONS(4181), - [sym__newline_token] = ACTIONS(4181), - [aux_sym_insert_token1] = ACTIONS(4181), - [aux_sym_delete_token1] = ACTIONS(4181), - [aux_sym_highlight_token1] = ACTIONS(4181), - [aux_sym_edit_comment_token1] = ACTIONS(4181), - [anon_sym_CARET_LBRACK] = ACTIONS(4181), - [anon_sym_LBRACK_CARET] = ACTIONS(4181), - [sym_uri_autolink] = ACTIONS(4181), - [sym_email_autolink] = ACTIONS(4181), - [sym__whitespace_ge_2] = ACTIONS(4181), - [aux_sym__whitespace_token1] = ACTIONS(4183), - [sym__word_no_digit] = ACTIONS(4181), - [sym__digits] = ACTIONS(4181), - [anon_sym_DASH_DASH] = ACTIONS(4183), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4181), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4181), - [sym__code_span_start] = ACTIONS(4181), - [sym__emphasis_open_star] = ACTIONS(4181), - [sym__emphasis_open_underscore] = ACTIONS(4181), - [sym__strikeout_open] = ACTIONS(4181), - [sym__latex_span_start] = ACTIONS(4181), - [sym__single_quote_open] = ACTIONS(4181), - [sym__single_quote_close] = ACTIONS(4181), - [sym__double_quote_open] = ACTIONS(4181), - [sym__superscript_open] = ACTIONS(4181), - [sym__subscript_open] = ACTIONS(4181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4181), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4181), - [sym__cite_author_in_text] = ACTIONS(4181), - [sym__cite_suppress_author] = ACTIONS(4181), - [sym__shortcode_open_escaped] = ACTIONS(4181), - [sym__shortcode_open] = ACTIONS(4181), - [sym__unclosed_span] = ACTIONS(4181), - [sym__strong_emphasis_open_star] = ACTIONS(4181), - [sym__strong_emphasis_open_underscore] = ACTIONS(4181), - }, - [STATE(1676)] = { + [STATE(1671)] = { [sym__backslash_escape] = ACTIONS(4651), [sym_entity_reference] = ACTIONS(4651), [sym_numeric_character_reference] = ACTIONS(4651), @@ -160875,7 +160539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4651), [sym__strong_emphasis_open_underscore] = ACTIONS(4651), }, - [STATE(1677)] = { + [STATE(1672)] = { [sym__backslash_escape] = ACTIONS(4655), [sym_entity_reference] = ACTIONS(4655), [sym_numeric_character_reference] = ACTIONS(4655), @@ -160942,7 +160606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4655), [sym__strong_emphasis_open_underscore] = ACTIONS(4655), }, - [STATE(1678)] = { + [STATE(1673)] = { [sym__backslash_escape] = ACTIONS(4659), [sym_entity_reference] = ACTIONS(4659), [sym_numeric_character_reference] = ACTIONS(4659), @@ -161009,7 +160673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4659), [sym__strong_emphasis_open_underscore] = ACTIONS(4659), }, - [STATE(1679)] = { + [STATE(1674)] = { [sym__backslash_escape] = ACTIONS(4663), [sym_entity_reference] = ACTIONS(4663), [sym_numeric_character_reference] = ACTIONS(4663), @@ -161076,7 +160740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4663), [sym__strong_emphasis_open_underscore] = ACTIONS(4663), }, - [STATE(1680)] = { + [STATE(1675)] = { [sym__backslash_escape] = ACTIONS(4667), [sym_entity_reference] = ACTIONS(4667), [sym_numeric_character_reference] = ACTIONS(4667), @@ -161143,7 +160807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4667), [sym__strong_emphasis_open_underscore] = ACTIONS(4667), }, - [STATE(1681)] = { + [STATE(1676)] = { [sym__backslash_escape] = ACTIONS(4671), [sym_entity_reference] = ACTIONS(4671), [sym_numeric_character_reference] = ACTIONS(4671), @@ -161210,7 +160874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4671), [sym__strong_emphasis_open_underscore] = ACTIONS(4671), }, - [STATE(1682)] = { + [STATE(1677)] = { [sym__backslash_escape] = ACTIONS(4675), [sym_entity_reference] = ACTIONS(4675), [sym_numeric_character_reference] = ACTIONS(4675), @@ -161277,7 +160941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4675), [sym__strong_emphasis_open_underscore] = ACTIONS(4675), }, - [STATE(1683)] = { + [STATE(1678)] = { [sym__backslash_escape] = ACTIONS(4679), [sym_entity_reference] = ACTIONS(4679), [sym_numeric_character_reference] = ACTIONS(4679), @@ -161344,7 +161008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4679), [sym__strong_emphasis_open_underscore] = ACTIONS(4679), }, - [STATE(1684)] = { + [STATE(1679)] = { [sym__backslash_escape] = ACTIONS(4683), [sym_entity_reference] = ACTIONS(4683), [sym_numeric_character_reference] = ACTIONS(4683), @@ -161411,7 +161075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4683), [sym__strong_emphasis_open_underscore] = ACTIONS(4683), }, - [STATE(1685)] = { + [STATE(1680)] = { [sym__backslash_escape] = ACTIONS(4687), [sym_entity_reference] = ACTIONS(4687), [sym_numeric_character_reference] = ACTIONS(4687), @@ -161478,7 +161142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4687), [sym__strong_emphasis_open_underscore] = ACTIONS(4687), }, - [STATE(1686)] = { + [STATE(1681)] = { [sym__backslash_escape] = ACTIONS(4691), [sym_entity_reference] = ACTIONS(4691), [sym_numeric_character_reference] = ACTIONS(4691), @@ -161545,7 +161209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4691), [sym__strong_emphasis_open_underscore] = ACTIONS(4691), }, - [STATE(1687)] = { + [STATE(1682)] = { [sym__backslash_escape] = ACTIONS(4695), [sym_entity_reference] = ACTIONS(4695), [sym_numeric_character_reference] = ACTIONS(4695), @@ -161612,7 +161276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4695), [sym__strong_emphasis_open_underscore] = ACTIONS(4695), }, - [STATE(1688)] = { + [STATE(1683)] = { [sym__backslash_escape] = ACTIONS(4699), [sym_entity_reference] = ACTIONS(4699), [sym_numeric_character_reference] = ACTIONS(4699), @@ -161679,7 +161343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4699), [sym__strong_emphasis_open_underscore] = ACTIONS(4699), }, - [STATE(1689)] = { + [STATE(1684)] = { [sym__backslash_escape] = ACTIONS(4703), [sym_entity_reference] = ACTIONS(4703), [sym_numeric_character_reference] = ACTIONS(4703), @@ -161746,7 +161410,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4703), [sym__strong_emphasis_open_underscore] = ACTIONS(4703), }, - [STATE(1690)] = { + [STATE(1685)] = { + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__single_quote_close] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + }, + [STATE(1686)] = { [sym__backslash_escape] = ACTIONS(4707), [sym_entity_reference] = ACTIONS(4707), [sym_numeric_character_reference] = ACTIONS(4707), @@ -161813,74 +161544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4707), [sym__strong_emphasis_open_underscore] = ACTIONS(4707), }, - [STATE(1691)] = { - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__single_quote_close] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - }, - [STATE(1692)] = { + [STATE(1687)] = { [sym__backslash_escape] = ACTIONS(4711), [sym_entity_reference] = ACTIONS(4711), [sym_numeric_character_reference] = ACTIONS(4711), @@ -161947,7 +161611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4711), [sym__strong_emphasis_open_underscore] = ACTIONS(4711), }, - [STATE(1693)] = { + [STATE(1688)] = { [sym__backslash_escape] = ACTIONS(4715), [sym_entity_reference] = ACTIONS(4715), [sym_numeric_character_reference] = ACTIONS(4715), @@ -162014,7 +161678,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4715), [sym__strong_emphasis_open_underscore] = ACTIONS(4715), }, - [STATE(1694)] = { + [STATE(1689)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__single_quote_close] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), + }, + [STATE(1690)] = { [sym__backslash_escape] = ACTIONS(4719), [sym_entity_reference] = ACTIONS(4719), [sym_numeric_character_reference] = ACTIONS(4719), @@ -162081,74 +161812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4719), [sym__strong_emphasis_open_underscore] = ACTIONS(4719), }, - [STATE(1695)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__single_quote_close] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), - }, - [STATE(1696)] = { + [STATE(1691)] = { [sym__backslash_escape] = ACTIONS(4723), [sym_entity_reference] = ACTIONS(4723), [sym_numeric_character_reference] = ACTIONS(4723), @@ -162215,7 +161879,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4723), [sym__strong_emphasis_open_underscore] = ACTIONS(4723), }, - [STATE(1697)] = { + [STATE(1692)] = { + [sym__backslash_escape] = ACTIONS(4527), + [sym_entity_reference] = ACTIONS(4527), + [sym_numeric_character_reference] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_POUND] = ACTIONS(4527), + [anon_sym_DOLLAR] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_BSLASH] = ACTIONS(4529), + [anon_sym_CARET] = ACTIONS(4529), + [anon_sym_BQUOTE] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_RPAREN] = ACTIONS(4527), + [sym__newline_token] = ACTIONS(4527), + [aux_sym_insert_token1] = ACTIONS(4527), + [aux_sym_delete_token1] = ACTIONS(4527), + [aux_sym_highlight_token1] = ACTIONS(4527), + [aux_sym_edit_comment_token1] = ACTIONS(4527), + [anon_sym_CARET_LBRACK] = ACTIONS(4527), + [anon_sym_LBRACK_CARET] = ACTIONS(4527), + [sym_uri_autolink] = ACTIONS(4527), + [sym_email_autolink] = ACTIONS(4527), + [sym__whitespace_ge_2] = ACTIONS(4527), + [aux_sym__whitespace_token1] = ACTIONS(4529), + [sym__word_no_digit] = ACTIONS(4527), + [sym__digits] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), + [sym__code_span_start] = ACTIONS(4527), + [sym__emphasis_open_star] = ACTIONS(4527), + [sym__emphasis_open_underscore] = ACTIONS(4527), + [sym__strikeout_open] = ACTIONS(4527), + [sym__latex_span_start] = ACTIONS(4527), + [sym__single_quote_open] = ACTIONS(4527), + [sym__single_quote_close] = ACTIONS(4527), + [sym__double_quote_open] = ACTIONS(4527), + [sym__superscript_open] = ACTIONS(4527), + [sym__subscript_open] = ACTIONS(4527), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), + [sym__cite_author_in_text] = ACTIONS(4527), + [sym__cite_suppress_author] = ACTIONS(4527), + [sym__shortcode_open_escaped] = ACTIONS(4527), + [sym__shortcode_open] = ACTIONS(4527), + [sym__unclosed_span] = ACTIONS(4527), + [sym__strong_emphasis_open_star] = ACTIONS(4527), + [sym__strong_emphasis_open_underscore] = ACTIONS(4527), + }, + [STATE(1693)] = { [sym__backslash_escape] = ACTIONS(4727), [sym_entity_reference] = ACTIONS(4727), [sym_numeric_character_reference] = ACTIONS(4727), @@ -162282,7 +162013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4727), [sym__strong_emphasis_open_underscore] = ACTIONS(4727), }, - [STATE(1698)] = { + [STATE(1694)] = { [sym__backslash_escape] = ACTIONS(4731), [sym_entity_reference] = ACTIONS(4731), [sym_numeric_character_reference] = ACTIONS(4731), @@ -162349,7 +162080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4731), [sym__strong_emphasis_open_underscore] = ACTIONS(4731), }, - [STATE(1699)] = { + [STATE(1695)] = { [sym__backslash_escape] = ACTIONS(4735), [sym_entity_reference] = ACTIONS(4735), [sym_numeric_character_reference] = ACTIONS(4735), @@ -162416,7 +162147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4735), [sym__strong_emphasis_open_underscore] = ACTIONS(4735), }, - [STATE(1700)] = { + [STATE(1696)] = { [sym__backslash_escape] = ACTIONS(4739), [sym_entity_reference] = ACTIONS(4739), [sym_numeric_character_reference] = ACTIONS(4739), @@ -162483,7 +162214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4739), [sym__strong_emphasis_open_underscore] = ACTIONS(4739), }, - [STATE(1701)] = { + [STATE(1697)] = { [sym__backslash_escape] = ACTIONS(4743), [sym_entity_reference] = ACTIONS(4743), [sym_numeric_character_reference] = ACTIONS(4743), @@ -162550,7 +162281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4743), [sym__strong_emphasis_open_underscore] = ACTIONS(4743), }, - [STATE(1702)] = { + [STATE(1698)] = { [sym__backslash_escape] = ACTIONS(4747), [sym_entity_reference] = ACTIONS(4747), [sym_numeric_character_reference] = ACTIONS(4747), @@ -162617,7 +162348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4747), [sym__strong_emphasis_open_underscore] = ACTIONS(4747), }, - [STATE(1703)] = { + [STATE(1699)] = { [sym__backslash_escape] = ACTIONS(4751), [sym_entity_reference] = ACTIONS(4751), [sym_numeric_character_reference] = ACTIONS(4751), @@ -162684,7 +162415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4751), [sym__strong_emphasis_open_underscore] = ACTIONS(4751), }, - [STATE(1704)] = { + [STATE(1700)] = { [sym__backslash_escape] = ACTIONS(4755), [sym_entity_reference] = ACTIONS(4755), [sym_numeric_character_reference] = ACTIONS(4755), @@ -162751,7 +162482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4755), [sym__strong_emphasis_open_underscore] = ACTIONS(4755), }, - [STATE(1705)] = { + [STATE(1701)] = { [sym__backslash_escape] = ACTIONS(4759), [sym_entity_reference] = ACTIONS(4759), [sym_numeric_character_reference] = ACTIONS(4759), @@ -162818,7 +162549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4759), [sym__strong_emphasis_open_underscore] = ACTIONS(4759), }, - [STATE(1706)] = { + [STATE(1702)] = { [sym__backslash_escape] = ACTIONS(4763), [sym_entity_reference] = ACTIONS(4763), [sym_numeric_character_reference] = ACTIONS(4763), @@ -162885,141 +162616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4763), [sym__strong_emphasis_open_underscore] = ACTIONS(4763), }, - [STATE(1707)] = { - [sym__backslash_escape] = ACTIONS(4527), - [sym_entity_reference] = ACTIONS(4527), - [sym_numeric_character_reference] = ACTIONS(4527), - [anon_sym_LT] = ACTIONS(4529), - [anon_sym_GT] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(4527), - [anon_sym_DQUOTE] = ACTIONS(4527), - [anon_sym_POUND] = ACTIONS(4527), - [anon_sym_DOLLAR] = ACTIONS(4527), - [anon_sym_PERCENT] = ACTIONS(4527), - [anon_sym_AMP] = ACTIONS(4529), - [anon_sym_SQUOTE] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(4527), - [anon_sym_COMMA] = ACTIONS(4527), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_DOT] = ACTIONS(4529), - [anon_sym_SLASH] = ACTIONS(4527), - [anon_sym_COLON] = ACTIONS(4527), - [anon_sym_SEMI] = ACTIONS(4527), - [anon_sym_EQ] = ACTIONS(4527), - [anon_sym_QMARK] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4529), - [anon_sym_BSLASH] = ACTIONS(4529), - [anon_sym_CARET] = ACTIONS(4529), - [anon_sym_BQUOTE] = ACTIONS(4527), - [anon_sym_LBRACE] = ACTIONS(4527), - [anon_sym_PIPE] = ACTIONS(4527), - [anon_sym_TILDE] = ACTIONS(4527), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym_RPAREN] = ACTIONS(4527), - [sym__newline_token] = ACTIONS(4527), - [aux_sym_insert_token1] = ACTIONS(4527), - [aux_sym_delete_token1] = ACTIONS(4527), - [aux_sym_highlight_token1] = ACTIONS(4527), - [aux_sym_edit_comment_token1] = ACTIONS(4527), - [anon_sym_CARET_LBRACK] = ACTIONS(4527), - [anon_sym_LBRACK_CARET] = ACTIONS(4527), - [sym_uri_autolink] = ACTIONS(4527), - [sym_email_autolink] = ACTIONS(4527), - [sym__whitespace_ge_2] = ACTIONS(4527), - [aux_sym__whitespace_token1] = ACTIONS(4529), - [sym__word_no_digit] = ACTIONS(4527), - [sym__digits] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), - [sym__code_span_start] = ACTIONS(4527), - [sym__emphasis_open_star] = ACTIONS(4527), - [sym__emphasis_open_underscore] = ACTIONS(4527), - [sym__strikeout_open] = ACTIONS(4527), - [sym__latex_span_start] = ACTIONS(4527), - [sym__single_quote_open] = ACTIONS(4527), - [sym__single_quote_close] = ACTIONS(4527), - [sym__double_quote_open] = ACTIONS(4527), - [sym__superscript_open] = ACTIONS(4527), - [sym__subscript_open] = ACTIONS(4527), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), - [sym__cite_author_in_text] = ACTIONS(4527), - [sym__cite_suppress_author] = ACTIONS(4527), - [sym__shortcode_open_escaped] = ACTIONS(4527), - [sym__shortcode_open] = ACTIONS(4527), - [sym__unclosed_span] = ACTIONS(4527), - [sym__strong_emphasis_open_star] = ACTIONS(4527), - [sym__strong_emphasis_open_underscore] = ACTIONS(4527), - }, - [STATE(1708)] = { - [sym__backslash_escape] = ACTIONS(4531), - [sym_entity_reference] = ACTIONS(4531), - [sym_numeric_character_reference] = ACTIONS(4531), - [anon_sym_LT] = ACTIONS(4533), - [anon_sym_GT] = ACTIONS(4531), - [anon_sym_BANG] = ACTIONS(4531), - [anon_sym_DQUOTE] = ACTIONS(4531), - [anon_sym_POUND] = ACTIONS(4531), - [anon_sym_DOLLAR] = ACTIONS(4531), - [anon_sym_PERCENT] = ACTIONS(4531), - [anon_sym_AMP] = ACTIONS(4533), - [anon_sym_SQUOTE] = ACTIONS(4531), - [anon_sym_PLUS] = ACTIONS(4531), - [anon_sym_COMMA] = ACTIONS(4531), - [anon_sym_DASH] = ACTIONS(4533), - [anon_sym_DOT] = ACTIONS(4533), - [anon_sym_SLASH] = ACTIONS(4531), - [anon_sym_COLON] = ACTIONS(4531), - [anon_sym_SEMI] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4531), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_BSLASH] = ACTIONS(4533), - [anon_sym_CARET] = ACTIONS(4533), - [anon_sym_BQUOTE] = ACTIONS(4531), - [anon_sym_LBRACE] = ACTIONS(4531), - [anon_sym_PIPE] = ACTIONS(4531), - [anon_sym_TILDE] = ACTIONS(4531), - [anon_sym_LPAREN] = ACTIONS(4531), - [anon_sym_RPAREN] = ACTIONS(4531), - [sym__newline_token] = ACTIONS(4531), - [aux_sym_insert_token1] = ACTIONS(4531), - [aux_sym_delete_token1] = ACTIONS(4531), - [aux_sym_highlight_token1] = ACTIONS(4531), - [aux_sym_edit_comment_token1] = ACTIONS(4531), - [anon_sym_CARET_LBRACK] = ACTIONS(4531), - [anon_sym_LBRACK_CARET] = ACTIONS(4531), - [sym_uri_autolink] = ACTIONS(4531), - [sym_email_autolink] = ACTIONS(4531), - [sym__whitespace_ge_2] = ACTIONS(4531), - [aux_sym__whitespace_token1] = ACTIONS(4533), - [sym__word_no_digit] = ACTIONS(4531), - [sym__digits] = ACTIONS(4531), - [anon_sym_DASH_DASH] = ACTIONS(4533), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), - [sym__code_span_start] = ACTIONS(4531), - [sym__emphasis_open_star] = ACTIONS(4531), - [sym__emphasis_open_underscore] = ACTIONS(4531), - [sym__strikeout_open] = ACTIONS(4531), - [sym__latex_span_start] = ACTIONS(4531), - [sym__single_quote_open] = ACTIONS(4531), - [sym__single_quote_close] = ACTIONS(4531), - [sym__double_quote_open] = ACTIONS(4531), - [sym__superscript_open] = ACTIONS(4531), - [sym__subscript_open] = ACTIONS(4531), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), - [sym__cite_author_in_text] = ACTIONS(4531), - [sym__cite_suppress_author] = ACTIONS(4531), - [sym__shortcode_open_escaped] = ACTIONS(4531), - [sym__shortcode_open] = ACTIONS(4531), - [sym__unclosed_span] = ACTIONS(4531), - [sym__strong_emphasis_open_star] = ACTIONS(4531), - [sym__strong_emphasis_open_underscore] = ACTIONS(4531), - }, - [STATE(1709)] = { + [STATE(1703)] = { [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), [sym_numeric_character_reference] = ACTIONS(4209), @@ -163086,7 +162683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4209), [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, - [STATE(1710)] = { + [STATE(1704)] = { [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), [sym_numeric_character_reference] = ACTIONS(4213), @@ -163153,7 +162750,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4213), [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, - [STATE(1711)] = { + [STATE(1705)] = { + [sym__backslash_escape] = ACTIONS(4531), + [sym_entity_reference] = ACTIONS(4531), + [sym_numeric_character_reference] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_DQUOTE] = ACTIONS(4531), + [anon_sym_POUND] = ACTIONS(4531), + [anon_sym_DOLLAR] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4533), + [anon_sym_SQUOTE] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_DASH] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4533), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_BSLASH] = ACTIONS(4533), + [anon_sym_CARET] = ACTIONS(4533), + [anon_sym_BQUOTE] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_TILDE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_RPAREN] = ACTIONS(4531), + [sym__newline_token] = ACTIONS(4531), + [aux_sym_insert_token1] = ACTIONS(4531), + [aux_sym_delete_token1] = ACTIONS(4531), + [aux_sym_highlight_token1] = ACTIONS(4531), + [aux_sym_edit_comment_token1] = ACTIONS(4531), + [anon_sym_CARET_LBRACK] = ACTIONS(4531), + [anon_sym_LBRACK_CARET] = ACTIONS(4531), + [sym_uri_autolink] = ACTIONS(4531), + [sym_email_autolink] = ACTIONS(4531), + [sym__whitespace_ge_2] = ACTIONS(4531), + [aux_sym__whitespace_token1] = ACTIONS(4533), + [sym__word_no_digit] = ACTIONS(4531), + [sym__digits] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), + [sym__code_span_start] = ACTIONS(4531), + [sym__emphasis_open_star] = ACTIONS(4531), + [sym__emphasis_open_underscore] = ACTIONS(4531), + [sym__strikeout_open] = ACTIONS(4531), + [sym__latex_span_start] = ACTIONS(4531), + [sym__single_quote_open] = ACTIONS(4531), + [sym__single_quote_close] = ACTIONS(4531), + [sym__double_quote_open] = ACTIONS(4531), + [sym__superscript_open] = ACTIONS(4531), + [sym__subscript_open] = ACTIONS(4531), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), + [sym__cite_author_in_text] = ACTIONS(4531), + [sym__cite_suppress_author] = ACTIONS(4531), + [sym__shortcode_open_escaped] = ACTIONS(4531), + [sym__shortcode_open] = ACTIONS(4531), + [sym__unclosed_span] = ACTIONS(4531), + [sym__strong_emphasis_open_star] = ACTIONS(4531), + [sym__strong_emphasis_open_underscore] = ACTIONS(4531), + }, + [STATE(1706)] = { [sym__backslash_escape] = ACTIONS(4535), [sym_entity_reference] = ACTIONS(4535), [sym_numeric_character_reference] = ACTIONS(4535), @@ -163220,7 +162884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4535), [sym__strong_emphasis_open_underscore] = ACTIONS(4535), }, - [STATE(1712)] = { + [STATE(1707)] = { [sym__backslash_escape] = ACTIONS(4539), [sym_entity_reference] = ACTIONS(4539), [sym_numeric_character_reference] = ACTIONS(4539), @@ -163287,7 +162951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4539), [sym__strong_emphasis_open_underscore] = ACTIONS(4539), }, - [STATE(1713)] = { + [STATE(1708)] = { [sym__backslash_escape] = ACTIONS(4543), [sym_entity_reference] = ACTIONS(4543), [sym_numeric_character_reference] = ACTIONS(4543), @@ -163354,7 +163018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4543), [sym__strong_emphasis_open_underscore] = ACTIONS(4543), }, - [STATE(1714)] = { + [STATE(1709)] = { [sym__backslash_escape] = ACTIONS(4547), [sym_entity_reference] = ACTIONS(4547), [sym_numeric_character_reference] = ACTIONS(4547), @@ -163421,74 +163085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4547), [sym__strong_emphasis_open_underscore] = ACTIONS(4547), }, - [STATE(1715)] = { - [sym__backslash_escape] = ACTIONS(4551), - [sym_entity_reference] = ACTIONS(4551), - [sym_numeric_character_reference] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(4553), - [anon_sym_GT] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4551), - [anon_sym_DQUOTE] = ACTIONS(4551), - [anon_sym_POUND] = ACTIONS(4551), - [anon_sym_DOLLAR] = ACTIONS(4551), - [anon_sym_PERCENT] = ACTIONS(4551), - [anon_sym_AMP] = ACTIONS(4553), - [anon_sym_SQUOTE] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_SLASH] = ACTIONS(4551), - [anon_sym_COLON] = ACTIONS(4551), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_EQ] = ACTIONS(4551), - [anon_sym_QMARK] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4553), - [anon_sym_BSLASH] = ACTIONS(4553), - [anon_sym_CARET] = ACTIONS(4553), - [anon_sym_BQUOTE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_PIPE] = ACTIONS(4551), - [anon_sym_TILDE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_RPAREN] = ACTIONS(4551), - [sym__newline_token] = ACTIONS(4551), - [aux_sym_insert_token1] = ACTIONS(4551), - [aux_sym_delete_token1] = ACTIONS(4551), - [aux_sym_highlight_token1] = ACTIONS(4551), - [aux_sym_edit_comment_token1] = ACTIONS(4551), - [anon_sym_CARET_LBRACK] = ACTIONS(4551), - [anon_sym_LBRACK_CARET] = ACTIONS(4551), - [sym_uri_autolink] = ACTIONS(4551), - [sym_email_autolink] = ACTIONS(4551), - [sym__whitespace_ge_2] = ACTIONS(4551), - [aux_sym__whitespace_token1] = ACTIONS(4553), - [sym__word_no_digit] = ACTIONS(4551), - [sym__digits] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4553), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), - [sym__code_span_start] = ACTIONS(4551), - [sym__emphasis_open_star] = ACTIONS(4551), - [sym__emphasis_open_underscore] = ACTIONS(4551), - [sym__strikeout_open] = ACTIONS(4551), - [sym__latex_span_start] = ACTIONS(4551), - [sym__single_quote_open] = ACTIONS(4551), - [sym__single_quote_close] = ACTIONS(4551), - [sym__double_quote_open] = ACTIONS(4551), - [sym__superscript_open] = ACTIONS(4551), - [sym__subscript_open] = ACTIONS(4551), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), - [sym__cite_author_in_text] = ACTIONS(4551), - [sym__cite_suppress_author] = ACTIONS(4551), - [sym__shortcode_open_escaped] = ACTIONS(4551), - [sym__shortcode_open] = ACTIONS(4551), - [sym__unclosed_span] = ACTIONS(4551), - [sym__strong_emphasis_open_star] = ACTIONS(4551), - [sym__strong_emphasis_open_underscore] = ACTIONS(4551), - }, - [STATE(1716)] = { + [STATE(1710)] = { [sym__backslash_escape] = ACTIONS(4217), [sym_entity_reference] = ACTIONS(4217), [sym_numeric_character_reference] = ACTIONS(4217), @@ -163555,7 +163152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4217), [sym__strong_emphasis_open_underscore] = ACTIONS(4217), }, - [STATE(1717)] = { + [STATE(1711)] = { [sym__backslash_escape] = ACTIONS(4221), [sym_entity_reference] = ACTIONS(4221), [sym_numeric_character_reference] = ACTIONS(4221), @@ -163622,7 +163219,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4221), [sym__strong_emphasis_open_underscore] = ACTIONS(4221), }, - [STATE(1718)] = { + [STATE(1712)] = { + [sym__backslash_escape] = ACTIONS(4551), + [sym_entity_reference] = ACTIONS(4551), + [sym_numeric_character_reference] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_POUND] = ACTIONS(4551), + [anon_sym_DOLLAR] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4553), + [anon_sym_SQUOTE] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_BSLASH] = ACTIONS(4553), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_BQUOTE] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_RPAREN] = ACTIONS(4551), + [sym__newline_token] = ACTIONS(4551), + [aux_sym_insert_token1] = ACTIONS(4551), + [aux_sym_delete_token1] = ACTIONS(4551), + [aux_sym_highlight_token1] = ACTIONS(4551), + [aux_sym_edit_comment_token1] = ACTIONS(4551), + [anon_sym_CARET_LBRACK] = ACTIONS(4551), + [anon_sym_LBRACK_CARET] = ACTIONS(4551), + [sym_uri_autolink] = ACTIONS(4551), + [sym_email_autolink] = ACTIONS(4551), + [sym__whitespace_ge_2] = ACTIONS(4551), + [aux_sym__whitespace_token1] = ACTIONS(4553), + [sym__word_no_digit] = ACTIONS(4551), + [sym__digits] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), + [sym__code_span_start] = ACTIONS(4551), + [sym__emphasis_open_star] = ACTIONS(4551), + [sym__emphasis_open_underscore] = ACTIONS(4551), + [sym__strikeout_open] = ACTIONS(4551), + [sym__latex_span_start] = ACTIONS(4551), + [sym__single_quote_open] = ACTIONS(4551), + [sym__single_quote_close] = ACTIONS(4551), + [sym__double_quote_open] = ACTIONS(4551), + [sym__superscript_open] = ACTIONS(4551), + [sym__subscript_open] = ACTIONS(4551), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), + [sym__cite_author_in_text] = ACTIONS(4551), + [sym__cite_suppress_author] = ACTIONS(4551), + [sym__shortcode_open_escaped] = ACTIONS(4551), + [sym__shortcode_open] = ACTIONS(4551), + [sym__unclosed_span] = ACTIONS(4551), + [sym__strong_emphasis_open_star] = ACTIONS(4551), + [sym__strong_emphasis_open_underscore] = ACTIONS(4551), + }, + [STATE(1713)] = { [sym__backslash_escape] = ACTIONS(4555), [sym_entity_reference] = ACTIONS(4555), [sym_numeric_character_reference] = ACTIONS(4555), @@ -163689,7 +163353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4555), [sym__strong_emphasis_open_underscore] = ACTIONS(4555), }, - [STATE(1719)] = { + [STATE(1714)] = { [sym__backslash_escape] = ACTIONS(4559), [sym_entity_reference] = ACTIONS(4559), [sym_numeric_character_reference] = ACTIONS(4559), @@ -163756,7 +163420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4559), [sym__strong_emphasis_open_underscore] = ACTIONS(4559), }, - [STATE(1720)] = { + [STATE(1715)] = { [sym__backslash_escape] = ACTIONS(4563), [sym_entity_reference] = ACTIONS(4563), [sym_numeric_character_reference] = ACTIONS(4563), @@ -163823,74 +163487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4563), [sym__strong_emphasis_open_underscore] = ACTIONS(4563), }, - [STATE(1721)] = { - [sym__backslash_escape] = ACTIONS(4567), - [sym_entity_reference] = ACTIONS(4567), - [sym_numeric_character_reference] = ACTIONS(4567), - [anon_sym_LT] = ACTIONS(4569), - [anon_sym_GT] = ACTIONS(4567), - [anon_sym_BANG] = ACTIONS(4567), - [anon_sym_DQUOTE] = ACTIONS(4567), - [anon_sym_POUND] = ACTIONS(4567), - [anon_sym_DOLLAR] = ACTIONS(4567), - [anon_sym_PERCENT] = ACTIONS(4567), - [anon_sym_AMP] = ACTIONS(4569), - [anon_sym_SQUOTE] = ACTIONS(4567), - [anon_sym_PLUS] = ACTIONS(4567), - [anon_sym_COMMA] = ACTIONS(4567), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_DOT] = ACTIONS(4569), - [anon_sym_SLASH] = ACTIONS(4567), - [anon_sym_COLON] = ACTIONS(4567), - [anon_sym_SEMI] = ACTIONS(4567), - [anon_sym_EQ] = ACTIONS(4567), - [anon_sym_QMARK] = ACTIONS(4567), - [anon_sym_LBRACK] = ACTIONS(4569), - [anon_sym_BSLASH] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym_BQUOTE] = ACTIONS(4567), - [anon_sym_LBRACE] = ACTIONS(4567), - [anon_sym_PIPE] = ACTIONS(4567), - [anon_sym_TILDE] = ACTIONS(4567), - [anon_sym_LPAREN] = ACTIONS(4567), - [anon_sym_RPAREN] = ACTIONS(4567), - [sym__newline_token] = ACTIONS(4567), - [aux_sym_insert_token1] = ACTIONS(4567), - [aux_sym_delete_token1] = ACTIONS(4567), - [aux_sym_highlight_token1] = ACTIONS(4567), - [aux_sym_edit_comment_token1] = ACTIONS(4567), - [anon_sym_CARET_LBRACK] = ACTIONS(4567), - [anon_sym_LBRACK_CARET] = ACTIONS(4567), - [sym_uri_autolink] = ACTIONS(4567), - [sym_email_autolink] = ACTIONS(4567), - [sym__whitespace_ge_2] = ACTIONS(4567), - [aux_sym__whitespace_token1] = ACTIONS(4569), - [sym__word_no_digit] = ACTIONS(4567), - [sym__digits] = ACTIONS(4567), - [anon_sym_DASH_DASH] = ACTIONS(4569), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), - [sym__code_span_start] = ACTIONS(4567), - [sym__emphasis_open_star] = ACTIONS(4567), - [sym__emphasis_open_underscore] = ACTIONS(4567), - [sym__strikeout_open] = ACTIONS(4567), - [sym__latex_span_start] = ACTIONS(4567), - [sym__single_quote_open] = ACTIONS(4567), - [sym__single_quote_close] = ACTIONS(4567), - [sym__double_quote_open] = ACTIONS(4567), - [sym__superscript_open] = ACTIONS(4567), - [sym__subscript_open] = ACTIONS(4567), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), - [sym__cite_author_in_text] = ACTIONS(4567), - [sym__cite_suppress_author] = ACTIONS(4567), - [sym__shortcode_open_escaped] = ACTIONS(4567), - [sym__shortcode_open] = ACTIONS(4567), - [sym__unclosed_span] = ACTIONS(4567), - [sym__strong_emphasis_open_star] = ACTIONS(4567), - [sym__strong_emphasis_open_underscore] = ACTIONS(4567), - }, - [STATE(1722)] = { + [STATE(1716)] = { [sym__backslash_escape] = ACTIONS(4225), [sym_entity_reference] = ACTIONS(4225), [sym_numeric_character_reference] = ACTIONS(4225), @@ -163957,7 +163554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4225), [sym__strong_emphasis_open_underscore] = ACTIONS(4225), }, - [STATE(1723)] = { + [STATE(1717)] = { [sym__backslash_escape] = ACTIONS(4229), [sym_entity_reference] = ACTIONS(4229), [sym_numeric_character_reference] = ACTIONS(4229), @@ -164024,7 +163621,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4229), [sym__strong_emphasis_open_underscore] = ACTIONS(4229), }, - [STATE(1724)] = { + [STATE(1718)] = { + [sym__backslash_escape] = ACTIONS(4567), + [sym_entity_reference] = ACTIONS(4567), + [sym_numeric_character_reference] = ACTIONS(4567), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_DQUOTE] = ACTIONS(4567), + [anon_sym_POUND] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_DOT] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_BSLASH] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym_BQUOTE] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(4567), + [anon_sym_TILDE] = ACTIONS(4567), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [sym__newline_token] = ACTIONS(4567), + [aux_sym_insert_token1] = ACTIONS(4567), + [aux_sym_delete_token1] = ACTIONS(4567), + [aux_sym_highlight_token1] = ACTIONS(4567), + [aux_sym_edit_comment_token1] = ACTIONS(4567), + [anon_sym_CARET_LBRACK] = ACTIONS(4567), + [anon_sym_LBRACK_CARET] = ACTIONS(4567), + [sym_uri_autolink] = ACTIONS(4567), + [sym_email_autolink] = ACTIONS(4567), + [sym__whitespace_ge_2] = ACTIONS(4567), + [aux_sym__whitespace_token1] = ACTIONS(4569), + [sym__word_no_digit] = ACTIONS(4567), + [sym__digits] = ACTIONS(4567), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4567), + [sym__code_span_start] = ACTIONS(4567), + [sym__emphasis_open_star] = ACTIONS(4567), + [sym__emphasis_open_underscore] = ACTIONS(4567), + [sym__strikeout_open] = ACTIONS(4567), + [sym__latex_span_start] = ACTIONS(4567), + [sym__single_quote_open] = ACTIONS(4567), + [sym__single_quote_close] = ACTIONS(4567), + [sym__double_quote_open] = ACTIONS(4567), + [sym__superscript_open] = ACTIONS(4567), + [sym__subscript_open] = ACTIONS(4567), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4567), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4567), + [sym__cite_author_in_text] = ACTIONS(4567), + [sym__cite_suppress_author] = ACTIONS(4567), + [sym__shortcode_open_escaped] = ACTIONS(4567), + [sym__shortcode_open] = ACTIONS(4567), + [sym__unclosed_span] = ACTIONS(4567), + [sym__strong_emphasis_open_star] = ACTIONS(4567), + [sym__strong_emphasis_open_underscore] = ACTIONS(4567), + }, + [STATE(1719)] = { [sym__backslash_escape] = ACTIONS(4571), [sym_entity_reference] = ACTIONS(4571), [sym_numeric_character_reference] = ACTIONS(4571), @@ -164091,74 +163755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4571), [sym__strong_emphasis_open_underscore] = ACTIONS(4571), }, - [STATE(1725)] = { - [sym__backslash_escape] = ACTIONS(4575), - [sym_entity_reference] = ACTIONS(4575), - [sym_numeric_character_reference] = ACTIONS(4575), - [anon_sym_LT] = ACTIONS(4577), - [anon_sym_GT] = ACTIONS(4575), - [anon_sym_BANG] = ACTIONS(4575), - [anon_sym_DQUOTE] = ACTIONS(4575), - [anon_sym_POUND] = ACTIONS(4575), - [anon_sym_DOLLAR] = ACTIONS(4575), - [anon_sym_PERCENT] = ACTIONS(4575), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_SQUOTE] = ACTIONS(4575), - [anon_sym_PLUS] = ACTIONS(4575), - [anon_sym_COMMA] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4577), - [anon_sym_SLASH] = ACTIONS(4575), - [anon_sym_COLON] = ACTIONS(4575), - [anon_sym_SEMI] = ACTIONS(4575), - [anon_sym_EQ] = ACTIONS(4575), - [anon_sym_QMARK] = ACTIONS(4575), - [anon_sym_LBRACK] = ACTIONS(4577), - [anon_sym_BSLASH] = ACTIONS(4577), - [anon_sym_CARET] = ACTIONS(4577), - [anon_sym_BQUOTE] = ACTIONS(4575), - [anon_sym_LBRACE] = ACTIONS(4575), - [anon_sym_PIPE] = ACTIONS(4575), - [anon_sym_TILDE] = ACTIONS(4575), - [anon_sym_LPAREN] = ACTIONS(4575), - [anon_sym_RPAREN] = ACTIONS(4575), - [sym__newline_token] = ACTIONS(4575), - [aux_sym_insert_token1] = ACTIONS(4575), - [aux_sym_delete_token1] = ACTIONS(4575), - [aux_sym_highlight_token1] = ACTIONS(4575), - [aux_sym_edit_comment_token1] = ACTIONS(4575), - [anon_sym_CARET_LBRACK] = ACTIONS(4575), - [anon_sym_LBRACK_CARET] = ACTIONS(4575), - [sym_uri_autolink] = ACTIONS(4575), - [sym_email_autolink] = ACTIONS(4575), - [sym__whitespace_ge_2] = ACTIONS(4575), - [aux_sym__whitespace_token1] = ACTIONS(4577), - [sym__word_no_digit] = ACTIONS(4575), - [sym__digits] = ACTIONS(4575), - [anon_sym_DASH_DASH] = ACTIONS(4577), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), - [sym__code_span_start] = ACTIONS(4575), - [sym__emphasis_open_star] = ACTIONS(4575), - [sym__emphasis_open_underscore] = ACTIONS(4575), - [sym__strikeout_open] = ACTIONS(4575), - [sym__latex_span_start] = ACTIONS(4575), - [sym__single_quote_open] = ACTIONS(4575), - [sym__single_quote_close] = ACTIONS(4575), - [sym__double_quote_open] = ACTIONS(4575), - [sym__superscript_open] = ACTIONS(4575), - [sym__subscript_open] = ACTIONS(4575), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), - [sym__cite_author_in_text] = ACTIONS(4575), - [sym__cite_suppress_author] = ACTIONS(4575), - [sym__shortcode_open_escaped] = ACTIONS(4575), - [sym__shortcode_open] = ACTIONS(4575), - [sym__unclosed_span] = ACTIONS(4575), - [sym__strong_emphasis_open_star] = ACTIONS(4575), - [sym__strong_emphasis_open_underscore] = ACTIONS(4575), - }, - [STATE(1726)] = { + [STATE(1720)] = { [sym__backslash_escape] = ACTIONS(4233), [sym_entity_reference] = ACTIONS(4233), [sym_numeric_character_reference] = ACTIONS(4233), @@ -164225,7 +163822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4233), [sym__strong_emphasis_open_underscore] = ACTIONS(4233), }, - [STATE(1727)] = { + [STATE(1721)] = { [sym__backslash_escape] = ACTIONS(4237), [sym_entity_reference] = ACTIONS(4237), [sym_numeric_character_reference] = ACTIONS(4237), @@ -164292,7 +163889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4237), [sym__strong_emphasis_open_underscore] = ACTIONS(4237), }, - [STATE(1728)] = { + [STATE(1722)] = { [ts_builtin_sym_end] = ACTIONS(4209), [sym__backslash_escape] = ACTIONS(4209), [sym_entity_reference] = ACTIONS(4209), @@ -164359,7 +163956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4209), [sym__strong_emphasis_open_underscore] = ACTIONS(4209), }, - [STATE(1729)] = { + [STATE(1723)] = { [sym__backslash_escape] = ACTIONS(4241), [sym_entity_reference] = ACTIONS(4241), [sym_numeric_character_reference] = ACTIONS(4241), @@ -164426,74 +164023,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4241), [sym__strong_emphasis_open_underscore] = ACTIONS(4241), }, - [STATE(1730)] = { - [ts_builtin_sym_end] = ACTIONS(4767), - [sym__backslash_escape] = ACTIONS(4767), - [sym_entity_reference] = ACTIONS(4767), - [sym_numeric_character_reference] = ACTIONS(4767), - [anon_sym_LT] = ACTIONS(4769), - [anon_sym_GT] = ACTIONS(4767), - [anon_sym_BANG] = ACTIONS(4767), - [anon_sym_DQUOTE] = ACTIONS(4767), - [anon_sym_POUND] = ACTIONS(4767), - [anon_sym_DOLLAR] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4767), - [anon_sym_AMP] = ACTIONS(4769), - [anon_sym_SQUOTE] = ACTIONS(4767), - [anon_sym_PLUS] = ACTIONS(4767), - [anon_sym_COMMA] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4769), - [anon_sym_DOT] = ACTIONS(4769), - [anon_sym_SLASH] = ACTIONS(4767), - [anon_sym_COLON] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_QMARK] = ACTIONS(4767), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_BSLASH] = ACTIONS(4769), - [anon_sym_CARET] = ACTIONS(4769), - [anon_sym_BQUOTE] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(4767), - [anon_sym_PIPE] = ACTIONS(4767), - [anon_sym_TILDE] = ACTIONS(4767), - [anon_sym_LPAREN] = ACTIONS(4767), - [anon_sym_RPAREN] = ACTIONS(4767), - [sym__newline_token] = ACTIONS(4767), - [aux_sym_insert_token1] = ACTIONS(4767), - [aux_sym_delete_token1] = ACTIONS(4767), - [aux_sym_highlight_token1] = ACTIONS(4767), - [aux_sym_edit_comment_token1] = ACTIONS(4767), - [anon_sym_CARET_LBRACK] = ACTIONS(4767), - [anon_sym_LBRACK_CARET] = ACTIONS(4767), - [sym_uri_autolink] = ACTIONS(4767), - [sym_email_autolink] = ACTIONS(4767), - [sym__whitespace_ge_2] = ACTIONS(4767), - [aux_sym__whitespace_token1] = ACTIONS(4769), - [sym__word_no_digit] = ACTIONS(4767), - [sym__digits] = ACTIONS(4767), - [anon_sym_DASH_DASH] = ACTIONS(4769), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4767), - [sym__code_span_start] = ACTIONS(4767), - [sym__emphasis_open_star] = ACTIONS(4767), - [sym__emphasis_open_underscore] = ACTIONS(4767), - [sym__strikeout_open] = ACTIONS(4767), - [sym__latex_span_start] = ACTIONS(4767), - [sym__single_quote_open] = ACTIONS(4767), - [sym__double_quote_open] = ACTIONS(4767), - [sym__superscript_open] = ACTIONS(4767), - [sym__subscript_open] = ACTIONS(4767), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4767), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4767), - [sym__cite_author_in_text] = ACTIONS(4767), - [sym__cite_suppress_author] = ACTIONS(4767), - [sym__shortcode_open_escaped] = ACTIONS(4767), - [sym__shortcode_open] = ACTIONS(4767), - [sym__unclosed_span] = ACTIONS(4767), - [sym__strong_emphasis_open_star] = ACTIONS(4767), - [sym__strong_emphasis_open_underscore] = ACTIONS(4767), + [STATE(1724)] = { + [ts_builtin_sym_end] = ACTIONS(4591), + [sym__backslash_escape] = ACTIONS(4591), + [sym_entity_reference] = ACTIONS(4591), + [sym_numeric_character_reference] = ACTIONS(4591), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_GT] = ACTIONS(4591), + [anon_sym_BANG] = ACTIONS(4591), + [anon_sym_DQUOTE] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4591), + [anon_sym_DOLLAR] = ACTIONS(4591), + [anon_sym_PERCENT] = ACTIONS(4591), + [anon_sym_AMP] = ACTIONS(4593), + [anon_sym_SQUOTE] = ACTIONS(4591), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [anon_sym_LBRACK] = ACTIONS(4593), + [anon_sym_BSLASH] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4593), + [anon_sym_BQUOTE] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(4591), + [anon_sym_PIPE] = ACTIONS(4591), + [anon_sym_TILDE] = ACTIONS(4591), + [anon_sym_LPAREN] = ACTIONS(4591), + [anon_sym_RPAREN] = ACTIONS(4591), + [sym__newline_token] = ACTIONS(4591), + [aux_sym_insert_token1] = ACTIONS(4591), + [aux_sym_delete_token1] = ACTIONS(4591), + [aux_sym_highlight_token1] = ACTIONS(4591), + [aux_sym_edit_comment_token1] = ACTIONS(4591), + [anon_sym_CARET_LBRACK] = ACTIONS(4591), + [anon_sym_LBRACK_CARET] = ACTIONS(4591), + [sym_uri_autolink] = ACTIONS(4591), + [sym_email_autolink] = ACTIONS(4591), + [sym__whitespace_ge_2] = ACTIONS(4591), + [aux_sym__whitespace_token1] = ACTIONS(4593), + [sym__word_no_digit] = ACTIONS(4591), + [sym__digits] = ACTIONS(4591), + [anon_sym_DASH_DASH] = ACTIONS(4593), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4591), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4591), + [sym__code_span_start] = ACTIONS(4591), + [sym__emphasis_open_star] = ACTIONS(4591), + [sym__emphasis_open_underscore] = ACTIONS(4591), + [sym__strikeout_open] = ACTIONS(4591), + [sym__latex_span_start] = ACTIONS(4591), + [sym__single_quote_open] = ACTIONS(4591), + [sym__double_quote_open] = ACTIONS(4591), + [sym__superscript_open] = ACTIONS(4591), + [sym__subscript_open] = ACTIONS(4591), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4591), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4591), + [sym__cite_author_in_text] = ACTIONS(4591), + [sym__cite_suppress_author] = ACTIONS(4591), + [sym__shortcode_open_escaped] = ACTIONS(4591), + [sym__shortcode_open] = ACTIONS(4591), + [sym__unclosed_span] = ACTIONS(4591), + [sym__strong_emphasis_open_star] = ACTIONS(4591), + [sym__strong_emphasis_open_underscore] = ACTIONS(4591), }, - [STATE(1731)] = { + [STATE(1725)] = { [sym__backslash_escape] = ACTIONS(4245), [sym_entity_reference] = ACTIONS(4245), [sym_numeric_character_reference] = ACTIONS(4245), @@ -164560,7 +164157,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4245), [sym__strong_emphasis_open_underscore] = ACTIONS(4245), }, - [STATE(1732)] = { + [STATE(1726)] = { + [sym__backslash_escape] = ACTIONS(4575), + [sym_entity_reference] = ACTIONS(4575), + [sym_numeric_character_reference] = ACTIONS(4575), + [anon_sym_LT] = ACTIONS(4577), + [anon_sym_GT] = ACTIONS(4575), + [anon_sym_BANG] = ACTIONS(4575), + [anon_sym_DQUOTE] = ACTIONS(4575), + [anon_sym_POUND] = ACTIONS(4575), + [anon_sym_DOLLAR] = ACTIONS(4575), + [anon_sym_PERCENT] = ACTIONS(4575), + [anon_sym_AMP] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4575), + [anon_sym_COMMA] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_DOT] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(4575), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_EQ] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4575), + [anon_sym_LBRACK] = ACTIONS(4577), + [anon_sym_BSLASH] = ACTIONS(4577), + [anon_sym_CARET] = ACTIONS(4577), + [anon_sym_BQUOTE] = ACTIONS(4575), + [anon_sym_LBRACE] = ACTIONS(4575), + [anon_sym_PIPE] = ACTIONS(4575), + [anon_sym_TILDE] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(4575), + [anon_sym_RPAREN] = ACTIONS(4575), + [sym__newline_token] = ACTIONS(4575), + [aux_sym_insert_token1] = ACTIONS(4575), + [aux_sym_delete_token1] = ACTIONS(4575), + [aux_sym_highlight_token1] = ACTIONS(4575), + [aux_sym_edit_comment_token1] = ACTIONS(4575), + [anon_sym_CARET_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_CARET] = ACTIONS(4575), + [sym_uri_autolink] = ACTIONS(4575), + [sym_email_autolink] = ACTIONS(4575), + [sym__whitespace_ge_2] = ACTIONS(4575), + [aux_sym__whitespace_token1] = ACTIONS(4577), + [sym__word_no_digit] = ACTIONS(4575), + [sym__digits] = ACTIONS(4575), + [anon_sym_DASH_DASH] = ACTIONS(4577), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4575), + [sym__code_span_start] = ACTIONS(4575), + [sym__emphasis_open_star] = ACTIONS(4575), + [sym__emphasis_open_underscore] = ACTIONS(4575), + [sym__strikeout_open] = ACTIONS(4575), + [sym__latex_span_start] = ACTIONS(4575), + [sym__single_quote_open] = ACTIONS(4575), + [sym__single_quote_close] = ACTIONS(4575), + [sym__double_quote_open] = ACTIONS(4575), + [sym__superscript_open] = ACTIONS(4575), + [sym__subscript_open] = ACTIONS(4575), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4575), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4575), + [sym__cite_author_in_text] = ACTIONS(4575), + [sym__cite_suppress_author] = ACTIONS(4575), + [sym__shortcode_open_escaped] = ACTIONS(4575), + [sym__shortcode_open] = ACTIONS(4575), + [sym__unclosed_span] = ACTIONS(4575), + [sym__strong_emphasis_open_star] = ACTIONS(4575), + [sym__strong_emphasis_open_underscore] = ACTIONS(4575), + }, + [STATE(1727)] = { [sym__backslash_escape] = ACTIONS(4579), [sym_entity_reference] = ACTIONS(4579), [sym_numeric_character_reference] = ACTIONS(4579), @@ -164627,7 +164291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4579), [sym__strong_emphasis_open_underscore] = ACTIONS(4579), }, - [STATE(1733)] = { + [STATE(1728)] = { [sym__backslash_escape] = ACTIONS(4583), [sym_entity_reference] = ACTIONS(4583), [sym_numeric_character_reference] = ACTIONS(4583), @@ -164694,74 +164358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4583), [sym__strong_emphasis_open_underscore] = ACTIONS(4583), }, - [STATE(1734)] = { - [sym__backslash_escape] = ACTIONS(4587), - [sym_entity_reference] = ACTIONS(4587), - [sym_numeric_character_reference] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4589), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_DQUOTE] = ACTIONS(4587), - [anon_sym_POUND] = ACTIONS(4587), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_PERCENT] = ACTIONS(4587), - [anon_sym_AMP] = ACTIONS(4589), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_COMMA] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SEMI] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4587), - [anon_sym_QMARK] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_BSLASH] = ACTIONS(4589), - [anon_sym_CARET] = ACTIONS(4589), - [anon_sym_BQUOTE] = ACTIONS(4587), - [anon_sym_LBRACE] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_TILDE] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4587), - [anon_sym_RPAREN] = ACTIONS(4587), - [sym__newline_token] = ACTIONS(4587), - [aux_sym_insert_token1] = ACTIONS(4587), - [aux_sym_delete_token1] = ACTIONS(4587), - [aux_sym_highlight_token1] = ACTIONS(4587), - [aux_sym_edit_comment_token1] = ACTIONS(4587), - [anon_sym_CARET_LBRACK] = ACTIONS(4587), - [anon_sym_LBRACK_CARET] = ACTIONS(4587), - [sym_uri_autolink] = ACTIONS(4587), - [sym_email_autolink] = ACTIONS(4587), - [sym__whitespace_ge_2] = ACTIONS(4587), - [aux_sym__whitespace_token1] = ACTIONS(4589), - [sym__word_no_digit] = ACTIONS(4587), - [sym__digits] = ACTIONS(4587), - [anon_sym_DASH_DASH] = ACTIONS(4589), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), - [sym__code_span_start] = ACTIONS(4587), - [sym__emphasis_open_star] = ACTIONS(4587), - [sym__emphasis_open_underscore] = ACTIONS(4587), - [sym__strikeout_open] = ACTIONS(4587), - [sym__latex_span_start] = ACTIONS(4587), - [sym__single_quote_open] = ACTIONS(4587), - [sym__single_quote_close] = ACTIONS(4587), - [sym__double_quote_open] = ACTIONS(4587), - [sym__superscript_open] = ACTIONS(4587), - [sym__subscript_open] = ACTIONS(4587), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), - [sym__cite_author_in_text] = ACTIONS(4587), - [sym__cite_suppress_author] = ACTIONS(4587), - [sym__shortcode_open_escaped] = ACTIONS(4587), - [sym__shortcode_open] = ACTIONS(4587), - [sym__unclosed_span] = ACTIONS(4587), - [sym__strong_emphasis_open_star] = ACTIONS(4587), - [sym__strong_emphasis_open_underscore] = ACTIONS(4587), - }, - [STATE(1735)] = { + [STATE(1729)] = { [ts_builtin_sym_end] = ACTIONS(4213), [sym__backslash_escape] = ACTIONS(4213), [sym_entity_reference] = ACTIONS(4213), @@ -164828,74 +164425,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4213), [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, - [STATE(1736)] = { - [sym__backslash_escape] = ACTIONS(4335), - [sym_entity_reference] = ACTIONS(4335), - [sym_numeric_character_reference] = ACTIONS(4335), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_DQUOTE] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_COMMA] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOT] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4335), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_SEMI] = ACTIONS(4335), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_BSLASH] = ACTIONS(4337), - [anon_sym_CARET] = ACTIONS(4337), - [anon_sym_BQUOTE] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_PIPE] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_RPAREN] = ACTIONS(4335), - [sym__newline_token] = ACTIONS(4335), - [aux_sym_insert_token1] = ACTIONS(4335), - [aux_sym_delete_token1] = ACTIONS(4335), - [aux_sym_highlight_token1] = ACTIONS(4335), - [aux_sym_edit_comment_token1] = ACTIONS(4335), - [anon_sym_CARET_LBRACK] = ACTIONS(4335), - [anon_sym_LBRACK_CARET] = ACTIONS(4335), - [sym_uri_autolink] = ACTIONS(4335), - [sym_email_autolink] = ACTIONS(4335), - [sym__whitespace_ge_2] = ACTIONS(4335), - [aux_sym__whitespace_token1] = ACTIONS(4337), - [sym__word_no_digit] = ACTIONS(4335), - [sym__digits] = ACTIONS(4335), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), - [sym__code_span_start] = ACTIONS(4335), - [sym__emphasis_open_star] = ACTIONS(4335), - [sym__emphasis_open_underscore] = ACTIONS(4335), - [sym__strikeout_open] = ACTIONS(4335), - [sym__latex_span_start] = ACTIONS(4335), - [sym__single_quote_open] = ACTIONS(4335), - [sym__double_quote_open] = ACTIONS(4335), - [sym__double_quote_close] = ACTIONS(4335), - [sym__superscript_open] = ACTIONS(4335), - [sym__subscript_open] = ACTIONS(4335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4335), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4335), - [sym__cite_author_in_text] = ACTIONS(4335), - [sym__cite_suppress_author] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4335), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4335), - [sym__strong_emphasis_open_star] = ACTIONS(4335), - [sym__strong_emphasis_open_underscore] = ACTIONS(4335), + [STATE(1730)] = { + [sym__backslash_escape] = ACTIONS(4329), + [sym_entity_reference] = ACTIONS(4329), + [sym_numeric_character_reference] = ACTIONS(4329), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_COMMA] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4329), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_BSLASH] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_BQUOTE] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_PIPE] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym_RPAREN] = ACTIONS(4329), + [sym__newline_token] = ACTIONS(4329), + [aux_sym_insert_token1] = ACTIONS(4329), + [aux_sym_delete_token1] = ACTIONS(4329), + [aux_sym_highlight_token1] = ACTIONS(4329), + [aux_sym_edit_comment_token1] = ACTIONS(4329), + [anon_sym_CARET_LBRACK] = ACTIONS(4329), + [anon_sym_LBRACK_CARET] = ACTIONS(4329), + [sym_uri_autolink] = ACTIONS(4329), + [sym_email_autolink] = ACTIONS(4329), + [sym__whitespace_ge_2] = ACTIONS(4329), + [aux_sym__whitespace_token1] = ACTIONS(4331), + [sym__word_no_digit] = ACTIONS(4329), + [sym__digits] = ACTIONS(4329), + [anon_sym_DASH_DASH] = ACTIONS(4331), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4329), + [sym__code_span_start] = ACTIONS(4329), + [sym__emphasis_open_star] = ACTIONS(4329), + [sym__emphasis_open_underscore] = ACTIONS(4329), + [sym__strikeout_open] = ACTIONS(4329), + [sym__latex_span_start] = ACTIONS(4329), + [sym__single_quote_open] = ACTIONS(4329), + [sym__double_quote_open] = ACTIONS(4329), + [sym__double_quote_close] = ACTIONS(4329), + [sym__superscript_open] = ACTIONS(4329), + [sym__subscript_open] = ACTIONS(4329), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4329), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4329), + [sym__cite_author_in_text] = ACTIONS(4329), + [sym__cite_suppress_author] = ACTIONS(4329), + [sym__shortcode_open_escaped] = ACTIONS(4329), + [sym__shortcode_open] = ACTIONS(4329), + [sym__unclosed_span] = ACTIONS(4329), + [sym__strong_emphasis_open_star] = ACTIONS(4329), + [sym__strong_emphasis_open_underscore] = ACTIONS(4329), }, - [STATE(1737)] = { + [STATE(1731)] = { + [ts_builtin_sym_end] = ACTIONS(4767), + [sym__backslash_escape] = ACTIONS(4767), + [sym_entity_reference] = ACTIONS(4767), + [sym_numeric_character_reference] = ACTIONS(4767), + [anon_sym_LT] = ACTIONS(4769), + [anon_sym_GT] = ACTIONS(4767), + [anon_sym_BANG] = ACTIONS(4767), + [anon_sym_DQUOTE] = ACTIONS(4767), + [anon_sym_POUND] = ACTIONS(4767), + [anon_sym_DOLLAR] = ACTIONS(4767), + [anon_sym_PERCENT] = ACTIONS(4767), + [anon_sym_AMP] = ACTIONS(4769), + [anon_sym_SQUOTE] = ACTIONS(4767), + [anon_sym_PLUS] = ACTIONS(4767), + [anon_sym_COMMA] = ACTIONS(4767), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_DOT] = ACTIONS(4769), + [anon_sym_SLASH] = ACTIONS(4767), + [anon_sym_COLON] = ACTIONS(4767), + [anon_sym_SEMI] = ACTIONS(4767), + [anon_sym_EQ] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4767), + [anon_sym_LBRACK] = ACTIONS(4769), + [anon_sym_BSLASH] = ACTIONS(4769), + [anon_sym_CARET] = ACTIONS(4769), + [anon_sym_BQUOTE] = ACTIONS(4767), + [anon_sym_LBRACE] = ACTIONS(4767), + [anon_sym_PIPE] = ACTIONS(4767), + [anon_sym_TILDE] = ACTIONS(4767), + [anon_sym_LPAREN] = ACTIONS(4767), + [anon_sym_RPAREN] = ACTIONS(4767), + [sym__newline_token] = ACTIONS(4767), + [aux_sym_insert_token1] = ACTIONS(4767), + [aux_sym_delete_token1] = ACTIONS(4767), + [aux_sym_highlight_token1] = ACTIONS(4767), + [aux_sym_edit_comment_token1] = ACTIONS(4767), + [anon_sym_CARET_LBRACK] = ACTIONS(4767), + [anon_sym_LBRACK_CARET] = ACTIONS(4767), + [sym_uri_autolink] = ACTIONS(4767), + [sym_email_autolink] = ACTIONS(4767), + [sym__whitespace_ge_2] = ACTIONS(4767), + [aux_sym__whitespace_token1] = ACTIONS(4769), + [sym__word_no_digit] = ACTIONS(4767), + [sym__digits] = ACTIONS(4767), + [anon_sym_DASH_DASH] = ACTIONS(4769), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4767), + [sym__code_span_start] = ACTIONS(4767), + [sym__emphasis_open_star] = ACTIONS(4767), + [sym__emphasis_open_underscore] = ACTIONS(4767), + [sym__strikeout_open] = ACTIONS(4767), + [sym__latex_span_start] = ACTIONS(4767), + [sym__single_quote_open] = ACTIONS(4767), + [sym__double_quote_open] = ACTIONS(4767), + [sym__superscript_open] = ACTIONS(4767), + [sym__subscript_open] = ACTIONS(4767), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4767), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4767), + [sym__cite_author_in_text] = ACTIONS(4767), + [sym__cite_suppress_author] = ACTIONS(4767), + [sym__shortcode_open_escaped] = ACTIONS(4767), + [sym__shortcode_open] = ACTIONS(4767), + [sym__unclosed_span] = ACTIONS(4767), + [sym__strong_emphasis_open_star] = ACTIONS(4767), + [sym__strong_emphasis_open_underscore] = ACTIONS(4767), + }, + [STATE(1732)] = { + [sym__backslash_escape] = ACTIONS(4587), + [sym_entity_reference] = ACTIONS(4587), + [sym_numeric_character_reference] = ACTIONS(4587), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_BANG] = ACTIONS(4587), + [anon_sym_DQUOTE] = ACTIONS(4587), + [anon_sym_POUND] = ACTIONS(4587), + [anon_sym_DOLLAR] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4587), + [anon_sym_AMP] = ACTIONS(4589), + [anon_sym_SQUOTE] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_COLON] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4587), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_BSLASH] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4589), + [anon_sym_BQUOTE] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4587), + [anon_sym_PIPE] = ACTIONS(4587), + [anon_sym_TILDE] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4587), + [sym__newline_token] = ACTIONS(4587), + [aux_sym_insert_token1] = ACTIONS(4587), + [aux_sym_delete_token1] = ACTIONS(4587), + [aux_sym_highlight_token1] = ACTIONS(4587), + [aux_sym_edit_comment_token1] = ACTIONS(4587), + [anon_sym_CARET_LBRACK] = ACTIONS(4587), + [anon_sym_LBRACK_CARET] = ACTIONS(4587), + [sym_uri_autolink] = ACTIONS(4587), + [sym_email_autolink] = ACTIONS(4587), + [sym__whitespace_ge_2] = ACTIONS(4587), + [aux_sym__whitespace_token1] = ACTIONS(4589), + [sym__word_no_digit] = ACTIONS(4587), + [sym__digits] = ACTIONS(4587), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4587), + [sym__code_span_start] = ACTIONS(4587), + [sym__emphasis_open_star] = ACTIONS(4587), + [sym__emphasis_open_underscore] = ACTIONS(4587), + [sym__strikeout_open] = ACTIONS(4587), + [sym__latex_span_start] = ACTIONS(4587), + [sym__single_quote_open] = ACTIONS(4587), + [sym__double_quote_open] = ACTIONS(4587), + [sym__double_quote_close] = ACTIONS(4587), + [sym__superscript_open] = ACTIONS(4587), + [sym__subscript_open] = ACTIONS(4587), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4587), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4587), + [sym__cite_author_in_text] = ACTIONS(4587), + [sym__cite_suppress_author] = ACTIONS(4587), + [sym__shortcode_open_escaped] = ACTIONS(4587), + [sym__shortcode_open] = ACTIONS(4587), + [sym__unclosed_span] = ACTIONS(4587), + [sym__strong_emphasis_open_star] = ACTIONS(4587), + [sym__strong_emphasis_open_underscore] = ACTIONS(4587), + }, + [STATE(1733)] = { [sym__backslash_escape] = ACTIONS(4591), [sym_entity_reference] = ACTIONS(4591), [sym_numeric_character_reference] = ACTIONS(4591), @@ -164962,7 +164693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4591), [sym__strong_emphasis_open_underscore] = ACTIONS(4591), }, - [STATE(1738)] = { + [STATE(1734)] = { [sym__backslash_escape] = ACTIONS(4595), [sym_entity_reference] = ACTIONS(4595), [sym_numeric_character_reference] = ACTIONS(4595), @@ -165029,7 +164760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4595), [sym__strong_emphasis_open_underscore] = ACTIONS(4595), }, - [STATE(1739)] = { + [STATE(1735)] = { [sym__backslash_escape] = ACTIONS(4599), [sym_entity_reference] = ACTIONS(4599), [sym_numeric_character_reference] = ACTIONS(4599), @@ -165096,7 +164827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4599), [sym__strong_emphasis_open_underscore] = ACTIONS(4599), }, - [STATE(1740)] = { + [STATE(1736)] = { [sym__backslash_escape] = ACTIONS(4603), [sym_entity_reference] = ACTIONS(4603), [sym_numeric_character_reference] = ACTIONS(4603), @@ -165163,7 +164894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4603), [sym__strong_emphasis_open_underscore] = ACTIONS(4603), }, - [STATE(1741)] = { + [STATE(1737)] = { [sym__backslash_escape] = ACTIONS(4607), [sym_entity_reference] = ACTIONS(4607), [sym_numeric_character_reference] = ACTIONS(4607), @@ -165230,7 +164961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4607), [sym__strong_emphasis_open_underscore] = ACTIONS(4607), }, - [STATE(1742)] = { + [STATE(1738)] = { [sym__backslash_escape] = ACTIONS(4611), [sym_entity_reference] = ACTIONS(4611), [sym_numeric_character_reference] = ACTIONS(4611), @@ -165297,7 +165028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4611), [sym__strong_emphasis_open_underscore] = ACTIONS(4611), }, - [STATE(1743)] = { + [STATE(1739)] = { [sym__backslash_escape] = ACTIONS(4615), [sym_entity_reference] = ACTIONS(4615), [sym_numeric_character_reference] = ACTIONS(4615), @@ -165364,7 +165095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4615), [sym__strong_emphasis_open_underscore] = ACTIONS(4615), }, - [STATE(1744)] = { + [STATE(1740)] = { [sym__backslash_escape] = ACTIONS(4619), [sym_entity_reference] = ACTIONS(4619), [sym_numeric_character_reference] = ACTIONS(4619), @@ -165431,7 +165162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4619), [sym__strong_emphasis_open_underscore] = ACTIONS(4619), }, - [STATE(1745)] = { + [STATE(1741)] = { [sym__backslash_escape] = ACTIONS(4623), [sym_entity_reference] = ACTIONS(4623), [sym_numeric_character_reference] = ACTIONS(4623), @@ -165498,7 +165229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4623), [sym__strong_emphasis_open_underscore] = ACTIONS(4623), }, - [STATE(1746)] = { + [STATE(1742)] = { [sym__backslash_escape] = ACTIONS(4627), [sym_entity_reference] = ACTIONS(4627), [sym_numeric_character_reference] = ACTIONS(4627), @@ -165565,7 +165296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4627), [sym__strong_emphasis_open_underscore] = ACTIONS(4627), }, - [STATE(1747)] = { + [STATE(1743)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -165632,141 +165363,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4631), [sym__strong_emphasis_open_underscore] = ACTIONS(4631), }, - [STATE(1748)] = { - [sym__backslash_escape] = ACTIONS(4635), - [sym_entity_reference] = ACTIONS(4635), - [sym_numeric_character_reference] = ACTIONS(4635), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4635), - [anon_sym_BANG] = ACTIONS(4635), - [anon_sym_DQUOTE] = ACTIONS(4635), - [anon_sym_POUND] = ACTIONS(4635), - [anon_sym_DOLLAR] = ACTIONS(4635), - [anon_sym_PERCENT] = ACTIONS(4635), - [anon_sym_AMP] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4635), - [anon_sym_PLUS] = ACTIONS(4635), - [anon_sym_COMMA] = ACTIONS(4635), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4635), - [anon_sym_COLON] = ACTIONS(4635), - [anon_sym_SEMI] = ACTIONS(4635), - [anon_sym_EQ] = ACTIONS(4635), - [anon_sym_QMARK] = ACTIONS(4635), - [anon_sym_LBRACK] = ACTIONS(4637), - [anon_sym_BSLASH] = ACTIONS(4637), - [anon_sym_CARET] = ACTIONS(4637), - [anon_sym_BQUOTE] = ACTIONS(4635), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4635), - [anon_sym_TILDE] = ACTIONS(4635), - [anon_sym_LPAREN] = ACTIONS(4635), - [anon_sym_RPAREN] = ACTIONS(4635), - [sym__newline_token] = ACTIONS(4635), - [aux_sym_insert_token1] = ACTIONS(4635), - [aux_sym_delete_token1] = ACTIONS(4635), - [aux_sym_highlight_token1] = ACTIONS(4635), - [aux_sym_edit_comment_token1] = ACTIONS(4635), - [anon_sym_CARET_LBRACK] = ACTIONS(4635), - [anon_sym_LBRACK_CARET] = ACTIONS(4635), - [sym_uri_autolink] = ACTIONS(4635), - [sym_email_autolink] = ACTIONS(4635), - [sym__whitespace_ge_2] = ACTIONS(4635), - [aux_sym__whitespace_token1] = ACTIONS(4637), - [sym__word_no_digit] = ACTIONS(4635), - [sym__digits] = ACTIONS(4635), - [anon_sym_DASH_DASH] = ACTIONS(4637), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4635), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4635), - [sym__code_span_start] = ACTIONS(4635), - [sym__emphasis_open_star] = ACTIONS(4635), - [sym__emphasis_open_underscore] = ACTIONS(4635), - [sym__strikeout_open] = ACTIONS(4635), - [sym__latex_span_start] = ACTIONS(4635), - [sym__single_quote_open] = ACTIONS(4635), - [sym__double_quote_open] = ACTIONS(4635), - [sym__double_quote_close] = ACTIONS(4635), - [sym__superscript_open] = ACTIONS(4635), - [sym__subscript_open] = ACTIONS(4635), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4635), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4635), - [sym__cite_author_in_text] = ACTIONS(4635), - [sym__cite_suppress_author] = ACTIONS(4635), - [sym__shortcode_open_escaped] = ACTIONS(4635), - [sym__shortcode_open] = ACTIONS(4635), - [sym__unclosed_span] = ACTIONS(4635), - [sym__strong_emphasis_open_star] = ACTIONS(4635), - [sym__strong_emphasis_open_underscore] = ACTIONS(4635), + [STATE(1744)] = { + [ts_builtin_sym_end] = ACTIONS(4531), + [sym__backslash_escape] = ACTIONS(4531), + [sym_entity_reference] = ACTIONS(4531), + [sym_numeric_character_reference] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_DQUOTE] = ACTIONS(4531), + [anon_sym_POUND] = ACTIONS(4531), + [anon_sym_DOLLAR] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4533), + [anon_sym_SQUOTE] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_DASH] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4533), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_BSLASH] = ACTIONS(4533), + [anon_sym_CARET] = ACTIONS(4533), + [anon_sym_BQUOTE] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_TILDE] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_RPAREN] = ACTIONS(4531), + [sym__newline_token] = ACTIONS(4531), + [aux_sym_insert_token1] = ACTIONS(4531), + [aux_sym_delete_token1] = ACTIONS(4531), + [aux_sym_highlight_token1] = ACTIONS(4531), + [aux_sym_edit_comment_token1] = ACTIONS(4531), + [anon_sym_CARET_LBRACK] = ACTIONS(4531), + [anon_sym_LBRACK_CARET] = ACTIONS(4531), + [sym_uri_autolink] = ACTIONS(4531), + [sym_email_autolink] = ACTIONS(4531), + [sym__whitespace_ge_2] = ACTIONS(4531), + [aux_sym__whitespace_token1] = ACTIONS(4533), + [sym__word_no_digit] = ACTIONS(4531), + [sym__digits] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4531), + [sym__code_span_start] = ACTIONS(4531), + [sym__emphasis_open_star] = ACTIONS(4531), + [sym__emphasis_open_underscore] = ACTIONS(4531), + [sym__strikeout_open] = ACTIONS(4531), + [sym__latex_span_start] = ACTIONS(4531), + [sym__single_quote_open] = ACTIONS(4531), + [sym__double_quote_open] = ACTIONS(4531), + [sym__superscript_open] = ACTIONS(4531), + [sym__subscript_open] = ACTIONS(4531), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4531), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4531), + [sym__cite_author_in_text] = ACTIONS(4531), + [sym__cite_suppress_author] = ACTIONS(4531), + [sym__shortcode_open_escaped] = ACTIONS(4531), + [sym__shortcode_open] = ACTIONS(4531), + [sym__unclosed_span] = ACTIONS(4531), + [sym__strong_emphasis_open_star] = ACTIONS(4531), + [sym__strong_emphasis_open_underscore] = ACTIONS(4531), }, - [STATE(1749)] = { - [ts_builtin_sym_end] = ACTIONS(4535), - [sym__backslash_escape] = ACTIONS(4535), - [sym_entity_reference] = ACTIONS(4535), - [sym_numeric_character_reference] = ACTIONS(4535), - [anon_sym_LT] = ACTIONS(4537), - [anon_sym_GT] = ACTIONS(4535), - [anon_sym_BANG] = ACTIONS(4535), - [anon_sym_DQUOTE] = ACTIONS(4535), - [anon_sym_POUND] = ACTIONS(4535), - [anon_sym_DOLLAR] = ACTIONS(4535), - [anon_sym_PERCENT] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_SQUOTE] = ACTIONS(4535), - [anon_sym_PLUS] = ACTIONS(4535), - [anon_sym_COMMA] = ACTIONS(4535), - [anon_sym_DASH] = ACTIONS(4537), - [anon_sym_DOT] = ACTIONS(4537), - [anon_sym_SLASH] = ACTIONS(4535), - [anon_sym_COLON] = ACTIONS(4535), - [anon_sym_SEMI] = ACTIONS(4535), - [anon_sym_EQ] = ACTIONS(4535), - [anon_sym_QMARK] = ACTIONS(4535), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_BSLASH] = ACTIONS(4537), - [anon_sym_CARET] = ACTIONS(4537), - [anon_sym_BQUOTE] = ACTIONS(4535), - [anon_sym_LBRACE] = ACTIONS(4535), - [anon_sym_PIPE] = ACTIONS(4535), - [anon_sym_TILDE] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4535), - [anon_sym_RPAREN] = ACTIONS(4535), - [sym__newline_token] = ACTIONS(4535), - [aux_sym_insert_token1] = ACTIONS(4535), - [aux_sym_delete_token1] = ACTIONS(4535), - [aux_sym_highlight_token1] = ACTIONS(4535), - [aux_sym_edit_comment_token1] = ACTIONS(4535), - [anon_sym_CARET_LBRACK] = ACTIONS(4535), - [anon_sym_LBRACK_CARET] = ACTIONS(4535), - [sym_uri_autolink] = ACTIONS(4535), - [sym_email_autolink] = ACTIONS(4535), - [sym__whitespace_ge_2] = ACTIONS(4535), - [aux_sym__whitespace_token1] = ACTIONS(4537), - [sym__word_no_digit] = ACTIONS(4535), - [sym__digits] = ACTIONS(4535), - [anon_sym_DASH_DASH] = ACTIONS(4537), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4535), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4535), - [sym__code_span_start] = ACTIONS(4535), - [sym__emphasis_open_star] = ACTIONS(4535), - [sym__emphasis_open_underscore] = ACTIONS(4535), - [sym__strikeout_open] = ACTIONS(4535), - [sym__latex_span_start] = ACTIONS(4535), - [sym__single_quote_open] = ACTIONS(4535), - [sym__double_quote_open] = ACTIONS(4535), - [sym__superscript_open] = ACTIONS(4535), - [sym__subscript_open] = ACTIONS(4535), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4535), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4535), - [sym__cite_author_in_text] = ACTIONS(4535), - [sym__cite_suppress_author] = ACTIONS(4535), - [sym__shortcode_open_escaped] = ACTIONS(4535), - [sym__shortcode_open] = ACTIONS(4535), - [sym__unclosed_span] = ACTIONS(4535), - [sym__strong_emphasis_open_star] = ACTIONS(4535), - [sym__strong_emphasis_open_underscore] = ACTIONS(4535), + [STATE(1745)] = { + [sym__backslash_escape] = ACTIONS(4639), + [sym_entity_reference] = ACTIONS(4639), + [sym_numeric_character_reference] = ACTIONS(4639), + [anon_sym_LT] = ACTIONS(4641), + [anon_sym_GT] = ACTIONS(4639), + [anon_sym_BANG] = ACTIONS(4639), + [anon_sym_DQUOTE] = ACTIONS(4639), + [anon_sym_POUND] = ACTIONS(4639), + [anon_sym_DOLLAR] = ACTIONS(4639), + [anon_sym_PERCENT] = ACTIONS(4639), + [anon_sym_AMP] = ACTIONS(4641), + [anon_sym_SQUOTE] = ACTIONS(4639), + [anon_sym_PLUS] = ACTIONS(4639), + [anon_sym_COMMA] = ACTIONS(4639), + [anon_sym_DASH] = ACTIONS(4641), + [anon_sym_DOT] = ACTIONS(4641), + [anon_sym_SLASH] = ACTIONS(4639), + [anon_sym_COLON] = ACTIONS(4639), + [anon_sym_SEMI] = ACTIONS(4639), + [anon_sym_EQ] = ACTIONS(4639), + [anon_sym_QMARK] = ACTIONS(4639), + [anon_sym_LBRACK] = ACTIONS(4641), + [anon_sym_BSLASH] = ACTIONS(4641), + [anon_sym_CARET] = ACTIONS(4641), + [anon_sym_BQUOTE] = ACTIONS(4639), + [anon_sym_LBRACE] = ACTIONS(4639), + [anon_sym_PIPE] = ACTIONS(4639), + [anon_sym_TILDE] = ACTIONS(4639), + [anon_sym_LPAREN] = ACTIONS(4639), + [anon_sym_RPAREN] = ACTIONS(4639), + [sym__newline_token] = ACTIONS(4639), + [aux_sym_insert_token1] = ACTIONS(4639), + [aux_sym_delete_token1] = ACTIONS(4639), + [aux_sym_highlight_token1] = ACTIONS(4639), + [aux_sym_edit_comment_token1] = ACTIONS(4639), + [anon_sym_CARET_LBRACK] = ACTIONS(4639), + [anon_sym_LBRACK_CARET] = ACTIONS(4639), + [sym_uri_autolink] = ACTIONS(4639), + [sym_email_autolink] = ACTIONS(4639), + [sym__whitespace_ge_2] = ACTIONS(4639), + [aux_sym__whitespace_token1] = ACTIONS(4641), + [sym__word_no_digit] = ACTIONS(4639), + [sym__digits] = ACTIONS(4639), + [anon_sym_DASH_DASH] = ACTIONS(4641), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4639), + [sym__code_span_start] = ACTIONS(4639), + [sym__emphasis_open_star] = ACTIONS(4639), + [sym__emphasis_open_underscore] = ACTIONS(4639), + [sym__strikeout_open] = ACTIONS(4639), + [sym__latex_span_start] = ACTIONS(4639), + [sym__single_quote_open] = ACTIONS(4639), + [sym__single_quote_close] = ACTIONS(4639), + [sym__double_quote_open] = ACTIONS(4639), + [sym__superscript_open] = ACTIONS(4639), + [sym__subscript_open] = ACTIONS(4639), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4639), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4639), + [sym__cite_author_in_text] = ACTIONS(4639), + [sym__cite_suppress_author] = ACTIONS(4639), + [sym__shortcode_open_escaped] = ACTIONS(4639), + [sym__shortcode_open] = ACTIONS(4639), + [sym__unclosed_span] = ACTIONS(4639), + [sym__strong_emphasis_open_star] = ACTIONS(4639), + [sym__strong_emphasis_open_underscore] = ACTIONS(4639), }, - [STATE(1750)] = { + [STATE(1746)] = { [sym__backslash_escape] = ACTIONS(4643), [sym_entity_reference] = ACTIONS(4643), [sym_numeric_character_reference] = ACTIONS(4643), @@ -165819,8 +165550,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strikeout_open] = ACTIONS(4643), [sym__latex_span_start] = ACTIONS(4643), [sym__single_quote_open] = ACTIONS(4643), - [sym__single_quote_close] = ACTIONS(4643), [sym__double_quote_open] = ACTIONS(4643), + [sym__double_quote_close] = ACTIONS(4643), [sym__superscript_open] = ACTIONS(4643), [sym__subscript_open] = ACTIONS(4643), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4643), @@ -165833,74 +165564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4643), [sym__strong_emphasis_open_underscore] = ACTIONS(4643), }, - [STATE(1751)] = { - [sym__backslash_escape] = ACTIONS(4647), - [sym_entity_reference] = ACTIONS(4647), - [sym_numeric_character_reference] = ACTIONS(4647), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4647), - [anon_sym_BANG] = ACTIONS(4647), - [anon_sym_DQUOTE] = ACTIONS(4647), - [anon_sym_POUND] = ACTIONS(4647), - [anon_sym_DOLLAR] = ACTIONS(4647), - [anon_sym_PERCENT] = ACTIONS(4647), - [anon_sym_AMP] = ACTIONS(4649), - [anon_sym_SQUOTE] = ACTIONS(4647), - [anon_sym_PLUS] = ACTIONS(4647), - [anon_sym_COMMA] = ACTIONS(4647), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_SLASH] = ACTIONS(4647), - [anon_sym_COLON] = ACTIONS(4647), - [anon_sym_SEMI] = ACTIONS(4647), - [anon_sym_EQ] = ACTIONS(4647), - [anon_sym_QMARK] = ACTIONS(4647), - [anon_sym_LBRACK] = ACTIONS(4649), - [anon_sym_BSLASH] = ACTIONS(4649), - [anon_sym_CARET] = ACTIONS(4649), - [anon_sym_BQUOTE] = ACTIONS(4647), - [anon_sym_LBRACE] = ACTIONS(4647), - [anon_sym_PIPE] = ACTIONS(4647), - [anon_sym_TILDE] = ACTIONS(4647), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_RPAREN] = ACTIONS(4647), - [sym__newline_token] = ACTIONS(4647), - [aux_sym_insert_token1] = ACTIONS(4647), - [aux_sym_delete_token1] = ACTIONS(4647), - [aux_sym_highlight_token1] = ACTIONS(4647), - [aux_sym_edit_comment_token1] = ACTIONS(4647), - [anon_sym_CARET_LBRACK] = ACTIONS(4647), - [anon_sym_LBRACK_CARET] = ACTIONS(4647), - [sym_uri_autolink] = ACTIONS(4647), - [sym_email_autolink] = ACTIONS(4647), - [sym__whitespace_ge_2] = ACTIONS(4647), - [aux_sym__whitespace_token1] = ACTIONS(4649), - [sym__word_no_digit] = ACTIONS(4647), - [sym__digits] = ACTIONS(4647), - [anon_sym_DASH_DASH] = ACTIONS(4649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4647), - [sym__code_span_start] = ACTIONS(4647), - [sym__emphasis_open_star] = ACTIONS(4647), - [sym__emphasis_open_underscore] = ACTIONS(4647), - [sym__strikeout_open] = ACTIONS(4647), - [sym__latex_span_start] = ACTIONS(4647), - [sym__single_quote_open] = ACTIONS(4647), - [sym__double_quote_open] = ACTIONS(4647), - [sym__double_quote_close] = ACTIONS(4647), - [sym__superscript_open] = ACTIONS(4647), - [sym__subscript_open] = ACTIONS(4647), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4647), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4647), - [sym__cite_author_in_text] = ACTIONS(4647), - [sym__cite_suppress_author] = ACTIONS(4647), - [sym__shortcode_open_escaped] = ACTIONS(4647), - [sym__shortcode_open] = ACTIONS(4647), - [sym__unclosed_span] = ACTIONS(4647), - [sym__strong_emphasis_open_star] = ACTIONS(4647), - [sym__strong_emphasis_open_underscore] = ACTIONS(4647), - }, - [STATE(1752)] = { + [STATE(1747)] = { [sym__backslash_escape] = ACTIONS(4181), [sym_entity_reference] = ACTIONS(4181), [sym_numeric_character_reference] = ACTIONS(4181), @@ -165967,7 +165631,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4181), [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, - [STATE(1753)] = { + [STATE(1748)] = { + [sym__backslash_escape] = ACTIONS(4647), + [sym_entity_reference] = ACTIONS(4647), + [sym_numeric_character_reference] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4647), + [anon_sym_DQUOTE] = ACTIONS(4647), + [anon_sym_POUND] = ACTIONS(4647), + [anon_sym_DOLLAR] = ACTIONS(4647), + [anon_sym_PERCENT] = ACTIONS(4647), + [anon_sym_AMP] = ACTIONS(4649), + [anon_sym_SQUOTE] = ACTIONS(4647), + [anon_sym_PLUS] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4647), + [anon_sym_DASH] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4649), + [anon_sym_SLASH] = ACTIONS(4647), + [anon_sym_COLON] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_LBRACK] = ACTIONS(4649), + [anon_sym_BSLASH] = ACTIONS(4649), + [anon_sym_CARET] = ACTIONS(4649), + [anon_sym_BQUOTE] = ACTIONS(4647), + [anon_sym_LBRACE] = ACTIONS(4647), + [anon_sym_PIPE] = ACTIONS(4647), + [anon_sym_TILDE] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4647), + [anon_sym_RPAREN] = ACTIONS(4647), + [sym__newline_token] = ACTIONS(4647), + [aux_sym_insert_token1] = ACTIONS(4647), + [aux_sym_delete_token1] = ACTIONS(4647), + [aux_sym_highlight_token1] = ACTIONS(4647), + [aux_sym_edit_comment_token1] = ACTIONS(4647), + [anon_sym_CARET_LBRACK] = ACTIONS(4647), + [anon_sym_LBRACK_CARET] = ACTIONS(4647), + [sym_uri_autolink] = ACTIONS(4647), + [sym_email_autolink] = ACTIONS(4647), + [sym__whitespace_ge_2] = ACTIONS(4647), + [aux_sym__whitespace_token1] = ACTIONS(4649), + [sym__word_no_digit] = ACTIONS(4647), + [sym__digits] = ACTIONS(4647), + [anon_sym_DASH_DASH] = ACTIONS(4649), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4647), + [sym__code_span_start] = ACTIONS(4647), + [sym__emphasis_open_star] = ACTIONS(4647), + [sym__emphasis_open_underscore] = ACTIONS(4647), + [sym__strikeout_open] = ACTIONS(4647), + [sym__latex_span_start] = ACTIONS(4647), + [sym__single_quote_open] = ACTIONS(4647), + [sym__double_quote_open] = ACTIONS(4647), + [sym__double_quote_close] = ACTIONS(4647), + [sym__superscript_open] = ACTIONS(4647), + [sym__subscript_open] = ACTIONS(4647), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4647), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4647), + [sym__cite_author_in_text] = ACTIONS(4647), + [sym__cite_suppress_author] = ACTIONS(4647), + [sym__shortcode_open_escaped] = ACTIONS(4647), + [sym__shortcode_open] = ACTIONS(4647), + [sym__unclosed_span] = ACTIONS(4647), + [sym__strong_emphasis_open_star] = ACTIONS(4647), + [sym__strong_emphasis_open_underscore] = ACTIONS(4647), + }, + [STATE(1749)] = { [sym__backslash_escape] = ACTIONS(4651), [sym_entity_reference] = ACTIONS(4651), [sym_numeric_character_reference] = ACTIONS(4651), @@ -166034,7 +165765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4651), [sym__strong_emphasis_open_underscore] = ACTIONS(4651), }, - [STATE(1754)] = { + [STATE(1750)] = { [sym__backslash_escape] = ACTIONS(4655), [sym_entity_reference] = ACTIONS(4655), [sym_numeric_character_reference] = ACTIONS(4655), @@ -166101,7 +165832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4655), [sym__strong_emphasis_open_underscore] = ACTIONS(4655), }, - [STATE(1755)] = { + [STATE(1751)] = { [sym__backslash_escape] = ACTIONS(4659), [sym_entity_reference] = ACTIONS(4659), [sym_numeric_character_reference] = ACTIONS(4659), @@ -166168,7 +165899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4659), [sym__strong_emphasis_open_underscore] = ACTIONS(4659), }, - [STATE(1756)] = { + [STATE(1752)] = { [sym__backslash_escape] = ACTIONS(4663), [sym_entity_reference] = ACTIONS(4663), [sym_numeric_character_reference] = ACTIONS(4663), @@ -166235,7 +165966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4663), [sym__strong_emphasis_open_underscore] = ACTIONS(4663), }, - [STATE(1757)] = { + [STATE(1753)] = { [sym__backslash_escape] = ACTIONS(4667), [sym_entity_reference] = ACTIONS(4667), [sym_numeric_character_reference] = ACTIONS(4667), @@ -166302,7 +166033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4667), [sym__strong_emphasis_open_underscore] = ACTIONS(4667), }, - [STATE(1758)] = { + [STATE(1754)] = { [sym__backslash_escape] = ACTIONS(4671), [sym_entity_reference] = ACTIONS(4671), [sym_numeric_character_reference] = ACTIONS(4671), @@ -166369,7 +166100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4671), [sym__strong_emphasis_open_underscore] = ACTIONS(4671), }, - [STATE(1759)] = { + [STATE(1755)] = { [sym__backslash_escape] = ACTIONS(4675), [sym_entity_reference] = ACTIONS(4675), [sym_numeric_character_reference] = ACTIONS(4675), @@ -166436,7 +166167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4675), [sym__strong_emphasis_open_underscore] = ACTIONS(4675), }, - [STATE(1760)] = { + [STATE(1756)] = { [sym__backslash_escape] = ACTIONS(4679), [sym_entity_reference] = ACTIONS(4679), [sym_numeric_character_reference] = ACTIONS(4679), @@ -166503,7 +166234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4679), [sym__strong_emphasis_open_underscore] = ACTIONS(4679), }, - [STATE(1761)] = { + [STATE(1757)] = { [sym__backslash_escape] = ACTIONS(4683), [sym_entity_reference] = ACTIONS(4683), [sym_numeric_character_reference] = ACTIONS(4683), @@ -166570,7 +166301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4683), [sym__strong_emphasis_open_underscore] = ACTIONS(4683), }, - [STATE(1762)] = { + [STATE(1758)] = { [sym__backslash_escape] = ACTIONS(4687), [sym_entity_reference] = ACTIONS(4687), [sym_numeric_character_reference] = ACTIONS(4687), @@ -166637,7 +166368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4687), [sym__strong_emphasis_open_underscore] = ACTIONS(4687), }, - [STATE(1763)] = { + [STATE(1759)] = { [sym__backslash_escape] = ACTIONS(4691), [sym_entity_reference] = ACTIONS(4691), [sym_numeric_character_reference] = ACTIONS(4691), @@ -166704,7 +166435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4691), [sym__strong_emphasis_open_underscore] = ACTIONS(4691), }, - [STATE(1764)] = { + [STATE(1760)] = { [sym__backslash_escape] = ACTIONS(4695), [sym_entity_reference] = ACTIONS(4695), [sym_numeric_character_reference] = ACTIONS(4695), @@ -166771,7 +166502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4695), [sym__strong_emphasis_open_underscore] = ACTIONS(4695), }, - [STATE(1765)] = { + [STATE(1761)] = { [sym__backslash_escape] = ACTIONS(4699), [sym_entity_reference] = ACTIONS(4699), [sym_numeric_character_reference] = ACTIONS(4699), @@ -166838,7 +166569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4699), [sym__strong_emphasis_open_underscore] = ACTIONS(4699), }, - [STATE(1766)] = { + [STATE(1762)] = { [sym__backslash_escape] = ACTIONS(4703), [sym_entity_reference] = ACTIONS(4703), [sym_numeric_character_reference] = ACTIONS(4703), @@ -166905,7 +166636,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4703), [sym__strong_emphasis_open_underscore] = ACTIONS(4703), }, - [STATE(1767)] = { + [STATE(1763)] = { + [sym__backslash_escape] = ACTIONS(4271), + [sym_entity_reference] = ACTIONS(4271), + [sym_numeric_character_reference] = ACTIONS(4271), + [anon_sym_LT] = ACTIONS(4273), + [anon_sym_GT] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_COMMA] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4273), + [anon_sym_DOT] = ACTIONS(4273), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4273), + [anon_sym_BSLASH] = ACTIONS(4273), + [anon_sym_CARET] = ACTIONS(4273), + [anon_sym_BQUOTE] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_RPAREN] = ACTIONS(4271), + [sym__newline_token] = ACTIONS(4271), + [aux_sym_insert_token1] = ACTIONS(4271), + [aux_sym_delete_token1] = ACTIONS(4271), + [aux_sym_highlight_token1] = ACTIONS(4271), + [aux_sym_edit_comment_token1] = ACTIONS(4271), + [anon_sym_CARET_LBRACK] = ACTIONS(4271), + [anon_sym_LBRACK_CARET] = ACTIONS(4271), + [sym_uri_autolink] = ACTIONS(4271), + [sym_email_autolink] = ACTIONS(4271), + [sym__whitespace_ge_2] = ACTIONS(4271), + [aux_sym__whitespace_token1] = ACTIONS(4273), + [sym__word_no_digit] = ACTIONS(4271), + [sym__digits] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4271), + [sym__code_span_start] = ACTIONS(4271), + [sym__emphasis_open_star] = ACTIONS(4271), + [sym__emphasis_open_underscore] = ACTIONS(4271), + [sym__strikeout_open] = ACTIONS(4271), + [sym__latex_span_start] = ACTIONS(4271), + [sym__single_quote_open] = ACTIONS(4271), + [sym__double_quote_open] = ACTIONS(4271), + [sym__double_quote_close] = ACTIONS(4271), + [sym__superscript_open] = ACTIONS(4271), + [sym__subscript_open] = ACTIONS(4271), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4271), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4271), + [sym__cite_author_in_text] = ACTIONS(4271), + [sym__cite_suppress_author] = ACTIONS(4271), + [sym__shortcode_open_escaped] = ACTIONS(4271), + [sym__shortcode_open] = ACTIONS(4271), + [sym__unclosed_span] = ACTIONS(4271), + [sym__strong_emphasis_open_star] = ACTIONS(4271), + [sym__strong_emphasis_open_underscore] = ACTIONS(4271), + }, + [STATE(1764)] = { [sym__backslash_escape] = ACTIONS(4707), [sym_entity_reference] = ACTIONS(4707), [sym_numeric_character_reference] = ACTIONS(4707), @@ -166972,74 +166770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4707), [sym__strong_emphasis_open_underscore] = ACTIONS(4707), }, - [STATE(1768)] = { - [sym__backslash_escape] = ACTIONS(4275), - [sym_entity_reference] = ACTIONS(4275), - [sym_numeric_character_reference] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_BANG] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_POUND] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4277), - [anon_sym_SQUOTE] = ACTIONS(4275), - [anon_sym_PLUS] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4277), - [anon_sym_DOT] = ACTIONS(4277), - [anon_sym_SLASH] = ACTIONS(4275), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_QMARK] = ACTIONS(4275), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_BSLASH] = ACTIONS(4277), - [anon_sym_CARET] = ACTIONS(4277), - [anon_sym_BQUOTE] = ACTIONS(4275), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_TILDE] = ACTIONS(4275), - [anon_sym_LPAREN] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym__newline_token] = ACTIONS(4275), - [aux_sym_insert_token1] = ACTIONS(4275), - [aux_sym_delete_token1] = ACTIONS(4275), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4275), - [anon_sym_CARET_LBRACK] = ACTIONS(4275), - [anon_sym_LBRACK_CARET] = ACTIONS(4275), - [sym_uri_autolink] = ACTIONS(4275), - [sym_email_autolink] = ACTIONS(4275), - [sym__whitespace_ge_2] = ACTIONS(4275), - [aux_sym__whitespace_token1] = ACTIONS(4277), - [sym__word_no_digit] = ACTIONS(4275), - [sym__digits] = ACTIONS(4275), - [anon_sym_DASH_DASH] = ACTIONS(4277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4275), - [sym__code_span_start] = ACTIONS(4275), - [sym__emphasis_open_star] = ACTIONS(4275), - [sym__emphasis_open_underscore] = ACTIONS(4275), - [sym__strikeout_open] = ACTIONS(4275), - [sym__latex_span_start] = ACTIONS(4275), - [sym__single_quote_open] = ACTIONS(4275), - [sym__double_quote_open] = ACTIONS(4275), - [sym__double_quote_close] = ACTIONS(4275), - [sym__superscript_open] = ACTIONS(4275), - [sym__subscript_open] = ACTIONS(4275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4275), - [sym__cite_author_in_text] = ACTIONS(4275), - [sym__cite_suppress_author] = ACTIONS(4275), - [sym__shortcode_open_escaped] = ACTIONS(4275), - [sym__shortcode_open] = ACTIONS(4275), - [sym__unclosed_span] = ACTIONS(4275), - [sym__strong_emphasis_open_star] = ACTIONS(4275), - [sym__strong_emphasis_open_underscore] = ACTIONS(4275), - }, - [STATE(1769)] = { + [STATE(1765)] = { [sym__backslash_escape] = ACTIONS(4711), [sym_entity_reference] = ACTIONS(4711), [sym_numeric_character_reference] = ACTIONS(4711), @@ -167106,7 +166837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4711), [sym__strong_emphasis_open_underscore] = ACTIONS(4711), }, - [STATE(1770)] = { + [STATE(1766)] = { [sym__backslash_escape] = ACTIONS(4715), [sym_entity_reference] = ACTIONS(4715), [sym_numeric_character_reference] = ACTIONS(4715), @@ -167173,7 +166904,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4715), [sym__strong_emphasis_open_underscore] = ACTIONS(4715), }, - [STATE(1771)] = { + [STATE(1767)] = { + [ts_builtin_sym_end] = ACTIONS(4535), + [sym__backslash_escape] = ACTIONS(4535), + [sym_entity_reference] = ACTIONS(4535), + [sym_numeric_character_reference] = ACTIONS(4535), + [anon_sym_LT] = ACTIONS(4537), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_BANG] = ACTIONS(4535), + [anon_sym_DQUOTE] = ACTIONS(4535), + [anon_sym_POUND] = ACTIONS(4535), + [anon_sym_DOLLAR] = ACTIONS(4535), + [anon_sym_PERCENT] = ACTIONS(4535), + [anon_sym_AMP] = ACTIONS(4537), + [anon_sym_SQUOTE] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_COMMA] = ACTIONS(4535), + [anon_sym_DASH] = ACTIONS(4537), + [anon_sym_DOT] = ACTIONS(4537), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_COLON] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(4535), + [anon_sym_QMARK] = ACTIONS(4535), + [anon_sym_LBRACK] = ACTIONS(4537), + [anon_sym_BSLASH] = ACTIONS(4537), + [anon_sym_CARET] = ACTIONS(4537), + [anon_sym_BQUOTE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4535), + [anon_sym_PIPE] = ACTIONS(4535), + [anon_sym_TILDE] = ACTIONS(4535), + [anon_sym_LPAREN] = ACTIONS(4535), + [anon_sym_RPAREN] = ACTIONS(4535), + [sym__newline_token] = ACTIONS(4535), + [aux_sym_insert_token1] = ACTIONS(4535), + [aux_sym_delete_token1] = ACTIONS(4535), + [aux_sym_highlight_token1] = ACTIONS(4535), + [aux_sym_edit_comment_token1] = ACTIONS(4535), + [anon_sym_CARET_LBRACK] = ACTIONS(4535), + [anon_sym_LBRACK_CARET] = ACTIONS(4535), + [sym_uri_autolink] = ACTIONS(4535), + [sym_email_autolink] = ACTIONS(4535), + [sym__whitespace_ge_2] = ACTIONS(4535), + [aux_sym__whitespace_token1] = ACTIONS(4537), + [sym__word_no_digit] = ACTIONS(4535), + [sym__digits] = ACTIONS(4535), + [anon_sym_DASH_DASH] = ACTIONS(4537), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4535), + [sym__code_span_start] = ACTIONS(4535), + [sym__emphasis_open_star] = ACTIONS(4535), + [sym__emphasis_open_underscore] = ACTIONS(4535), + [sym__strikeout_open] = ACTIONS(4535), + [sym__latex_span_start] = ACTIONS(4535), + [sym__single_quote_open] = ACTIONS(4535), + [sym__double_quote_open] = ACTIONS(4535), + [sym__superscript_open] = ACTIONS(4535), + [sym__subscript_open] = ACTIONS(4535), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4535), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4535), + [sym__cite_author_in_text] = ACTIONS(4535), + [sym__cite_suppress_author] = ACTIONS(4535), + [sym__shortcode_open_escaped] = ACTIONS(4535), + [sym__shortcode_open] = ACTIONS(4535), + [sym__unclosed_span] = ACTIONS(4535), + [sym__strong_emphasis_open_star] = ACTIONS(4535), + [sym__strong_emphasis_open_underscore] = ACTIONS(4535), + }, + [STATE(1768)] = { + [sym__backslash_escape] = ACTIONS(4391), + [sym_entity_reference] = ACTIONS(4391), + [sym_numeric_character_reference] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_DOLLAR] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_COMMA] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_BSLASH] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym_RPAREN] = ACTIONS(4391), + [sym__newline_token] = ACTIONS(4391), + [aux_sym_insert_token1] = ACTIONS(4391), + [aux_sym_delete_token1] = ACTIONS(4391), + [aux_sym_highlight_token1] = ACTIONS(4391), + [aux_sym_edit_comment_token1] = ACTIONS(4391), + [anon_sym_CARET_LBRACK] = ACTIONS(4391), + [anon_sym_LBRACK_CARET] = ACTIONS(4391), + [sym_uri_autolink] = ACTIONS(4391), + [sym_email_autolink] = ACTIONS(4391), + [sym__whitespace_ge_2] = ACTIONS(4391), + [aux_sym__whitespace_token1] = ACTIONS(4393), + [sym__word_no_digit] = ACTIONS(4391), + [sym__digits] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4391), + [sym__code_span_start] = ACTIONS(4391), + [sym__emphasis_open_star] = ACTIONS(4391), + [sym__emphasis_open_underscore] = ACTIONS(4391), + [sym__strikeout_open] = ACTIONS(4391), + [sym__latex_span_start] = ACTIONS(4391), + [sym__single_quote_open] = ACTIONS(4391), + [sym__double_quote_open] = ACTIONS(4391), + [sym__double_quote_close] = ACTIONS(4391), + [sym__superscript_open] = ACTIONS(4391), + [sym__subscript_open] = ACTIONS(4391), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4391), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4391), + [sym__cite_author_in_text] = ACTIONS(4391), + [sym__cite_suppress_author] = ACTIONS(4391), + [sym__shortcode_open_escaped] = ACTIONS(4391), + [sym__shortcode_open] = ACTIONS(4391), + [sym__unclosed_span] = ACTIONS(4391), + [sym__strong_emphasis_open_star] = ACTIONS(4391), + [sym__strong_emphasis_open_underscore] = ACTIONS(4391), + }, + [STATE(1769)] = { [sym__backslash_escape] = ACTIONS(4719), [sym_entity_reference] = ACTIONS(4719), [sym_numeric_character_reference] = ACTIONS(4719), @@ -167240,7 +167105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4719), [sym__strong_emphasis_open_underscore] = ACTIONS(4719), }, - [STATE(1772)] = { + [STATE(1770)] = { [ts_builtin_sym_end] = ACTIONS(4539), [sym__backslash_escape] = ACTIONS(4539), [sym_entity_reference] = ACTIONS(4539), @@ -167307,74 +167172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4539), [sym__strong_emphasis_open_underscore] = ACTIONS(4539), }, - [STATE(1773)] = { - [sym__backslash_escape] = ACTIONS(4413), - [sym_entity_reference] = ACTIONS(4413), - [sym_numeric_character_reference] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_POUND] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4413), - [anon_sym_PERCENT] = ACTIONS(4413), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4413), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_EQ] = ACTIONS(4413), - [anon_sym_QMARK] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_BSLASH] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_BQUOTE] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_PIPE] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [sym__newline_token] = ACTIONS(4413), - [aux_sym_insert_token1] = ACTIONS(4413), - [aux_sym_delete_token1] = ACTIONS(4413), - [aux_sym_highlight_token1] = ACTIONS(4413), - [aux_sym_edit_comment_token1] = ACTIONS(4413), - [anon_sym_CARET_LBRACK] = ACTIONS(4413), - [anon_sym_LBRACK_CARET] = ACTIONS(4413), - [sym_uri_autolink] = ACTIONS(4413), - [sym_email_autolink] = ACTIONS(4413), - [sym__whitespace_ge_2] = ACTIONS(4413), - [aux_sym__whitespace_token1] = ACTIONS(4415), - [sym__word_no_digit] = ACTIONS(4413), - [sym__digits] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4415), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4413), - [sym__code_span_start] = ACTIONS(4413), - [sym__emphasis_open_star] = ACTIONS(4413), - [sym__emphasis_open_underscore] = ACTIONS(4413), - [sym__strikeout_open] = ACTIONS(4413), - [sym__latex_span_start] = ACTIONS(4413), - [sym__single_quote_open] = ACTIONS(4413), - [sym__double_quote_open] = ACTIONS(4413), - [sym__double_quote_close] = ACTIONS(4413), - [sym__superscript_open] = ACTIONS(4413), - [sym__subscript_open] = ACTIONS(4413), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4413), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4413), - [sym__cite_author_in_text] = ACTIONS(4413), - [sym__cite_suppress_author] = ACTIONS(4413), - [sym__shortcode_open_escaped] = ACTIONS(4413), - [sym__shortcode_open] = ACTIONS(4413), - [sym__unclosed_span] = ACTIONS(4413), - [sym__strong_emphasis_open_star] = ACTIONS(4413), - [sym__strong_emphasis_open_underscore] = ACTIONS(4413), - }, - [STATE(1774)] = { + [STATE(1771)] = { [sym__backslash_escape] = ACTIONS(4723), [sym_entity_reference] = ACTIONS(4723), [sym_numeric_character_reference] = ACTIONS(4723), @@ -167441,74 +167239,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4723), [sym__strong_emphasis_open_underscore] = ACTIONS(4723), }, - [STATE(1775)] = { - [ts_builtin_sym_end] = ACTIONS(4543), - [sym__backslash_escape] = ACTIONS(4543), - [sym_entity_reference] = ACTIONS(4543), - [sym_numeric_character_reference] = ACTIONS(4543), - [anon_sym_LT] = ACTIONS(4545), - [anon_sym_GT] = ACTIONS(4543), - [anon_sym_BANG] = ACTIONS(4543), - [anon_sym_DQUOTE] = ACTIONS(4543), - [anon_sym_POUND] = ACTIONS(4543), - [anon_sym_DOLLAR] = ACTIONS(4543), - [anon_sym_PERCENT] = ACTIONS(4543), - [anon_sym_AMP] = ACTIONS(4545), - [anon_sym_SQUOTE] = ACTIONS(4543), - [anon_sym_PLUS] = ACTIONS(4543), - [anon_sym_COMMA] = ACTIONS(4543), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_DOT] = ACTIONS(4545), - [anon_sym_SLASH] = ACTIONS(4543), - [anon_sym_COLON] = ACTIONS(4543), - [anon_sym_SEMI] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4543), - [anon_sym_LBRACK] = ACTIONS(4545), - [anon_sym_BSLASH] = ACTIONS(4545), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_BQUOTE] = ACTIONS(4543), - [anon_sym_LBRACE] = ACTIONS(4543), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_TILDE] = ACTIONS(4543), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_RPAREN] = ACTIONS(4543), - [sym__newline_token] = ACTIONS(4543), - [aux_sym_insert_token1] = ACTIONS(4543), - [aux_sym_delete_token1] = ACTIONS(4543), - [aux_sym_highlight_token1] = ACTIONS(4543), - [aux_sym_edit_comment_token1] = ACTIONS(4543), - [anon_sym_CARET_LBRACK] = ACTIONS(4543), - [anon_sym_LBRACK_CARET] = ACTIONS(4543), - [sym_uri_autolink] = ACTIONS(4543), - [sym_email_autolink] = ACTIONS(4543), - [sym__whitespace_ge_2] = ACTIONS(4543), - [aux_sym__whitespace_token1] = ACTIONS(4545), - [sym__word_no_digit] = ACTIONS(4543), - [sym__digits] = ACTIONS(4543), - [anon_sym_DASH_DASH] = ACTIONS(4545), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4543), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4543), - [sym__code_span_start] = ACTIONS(4543), - [sym__emphasis_open_star] = ACTIONS(4543), - [sym__emphasis_open_underscore] = ACTIONS(4543), - [sym__strikeout_open] = ACTIONS(4543), - [sym__latex_span_start] = ACTIONS(4543), - [sym__single_quote_open] = ACTIONS(4543), - [sym__double_quote_open] = ACTIONS(4543), - [sym__superscript_open] = ACTIONS(4543), - [sym__subscript_open] = ACTIONS(4543), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4543), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4543), - [sym__cite_author_in_text] = ACTIONS(4543), - [sym__cite_suppress_author] = ACTIONS(4543), - [sym__shortcode_open_escaped] = ACTIONS(4543), - [sym__shortcode_open] = ACTIONS(4543), - [sym__unclosed_span] = ACTIONS(4543), - [sym__strong_emphasis_open_star] = ACTIONS(4543), - [sym__strong_emphasis_open_underscore] = ACTIONS(4543), + [STATE(1772)] = { + [sym__backslash_escape] = ACTIONS(4527), + [sym_entity_reference] = ACTIONS(4527), + [sym_numeric_character_reference] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_POUND] = ACTIONS(4527), + [anon_sym_DOLLAR] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_SQUOTE] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_BSLASH] = ACTIONS(4529), + [anon_sym_CARET] = ACTIONS(4529), + [anon_sym_BQUOTE] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_RPAREN] = ACTIONS(4527), + [sym__newline_token] = ACTIONS(4527), + [aux_sym_insert_token1] = ACTIONS(4527), + [aux_sym_delete_token1] = ACTIONS(4527), + [aux_sym_highlight_token1] = ACTIONS(4527), + [aux_sym_edit_comment_token1] = ACTIONS(4527), + [anon_sym_CARET_LBRACK] = ACTIONS(4527), + [anon_sym_LBRACK_CARET] = ACTIONS(4527), + [sym_uri_autolink] = ACTIONS(4527), + [sym_email_autolink] = ACTIONS(4527), + [sym__whitespace_ge_2] = ACTIONS(4527), + [aux_sym__whitespace_token1] = ACTIONS(4529), + [sym__word_no_digit] = ACTIONS(4527), + [sym__digits] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4527), + [sym__code_span_start] = ACTIONS(4527), + [sym__emphasis_open_star] = ACTIONS(4527), + [sym__emphasis_open_underscore] = ACTIONS(4527), + [sym__strikeout_open] = ACTIONS(4527), + [sym__latex_span_start] = ACTIONS(4527), + [sym__single_quote_open] = ACTIONS(4527), + [sym__double_quote_open] = ACTIONS(4527), + [sym__double_quote_close] = ACTIONS(4527), + [sym__superscript_open] = ACTIONS(4527), + [sym__subscript_open] = ACTIONS(4527), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4527), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4527), + [sym__cite_author_in_text] = ACTIONS(4527), + [sym__cite_suppress_author] = ACTIONS(4527), + [sym__shortcode_open_escaped] = ACTIONS(4527), + [sym__shortcode_open] = ACTIONS(4527), + [sym__unclosed_span] = ACTIONS(4527), + [sym__strong_emphasis_open_star] = ACTIONS(4527), + [sym__strong_emphasis_open_underscore] = ACTIONS(4527), }, - [STATE(1776)] = { + [STATE(1773)] = { [sym__backslash_escape] = ACTIONS(4727), [sym_entity_reference] = ACTIONS(4727), [sym_numeric_character_reference] = ACTIONS(4727), @@ -167575,7 +167373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4727), [sym__strong_emphasis_open_underscore] = ACTIONS(4727), }, - [STATE(1777)] = { + [STATE(1774)] = { [sym__backslash_escape] = ACTIONS(4731), [sym_entity_reference] = ACTIONS(4731), [sym_numeric_character_reference] = ACTIONS(4731), @@ -167642,7 +167440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4731), [sym__strong_emphasis_open_underscore] = ACTIONS(4731), }, - [STATE(1778)] = { + [STATE(1775)] = { [sym__backslash_escape] = ACTIONS(4735), [sym_entity_reference] = ACTIONS(4735), [sym_numeric_character_reference] = ACTIONS(4735), @@ -167709,7 +167507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4735), [sym__strong_emphasis_open_underscore] = ACTIONS(4735), }, - [STATE(1779)] = { + [STATE(1776)] = { [sym__backslash_escape] = ACTIONS(4739), [sym_entity_reference] = ACTIONS(4739), [sym_numeric_character_reference] = ACTIONS(4739), @@ -167776,7 +167574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4739), [sym__strong_emphasis_open_underscore] = ACTIONS(4739), }, - [STATE(1780)] = { + [STATE(1777)] = { [sym__backslash_escape] = ACTIONS(4743), [sym_entity_reference] = ACTIONS(4743), [sym_numeric_character_reference] = ACTIONS(4743), @@ -167843,7 +167641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4743), [sym__strong_emphasis_open_underscore] = ACTIONS(4743), }, - [STATE(1781)] = { + [STATE(1778)] = { [sym__backslash_escape] = ACTIONS(4747), [sym_entity_reference] = ACTIONS(4747), [sym_numeric_character_reference] = ACTIONS(4747), @@ -167910,7 +167708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4747), [sym__strong_emphasis_open_underscore] = ACTIONS(4747), }, - [STATE(1782)] = { + [STATE(1779)] = { [sym__backslash_escape] = ACTIONS(4751), [sym_entity_reference] = ACTIONS(4751), [sym_numeric_character_reference] = ACTIONS(4751), @@ -167977,7 +167775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4751), [sym__strong_emphasis_open_underscore] = ACTIONS(4751), }, - [STATE(1783)] = { + [STATE(1780)] = { [sym__backslash_escape] = ACTIONS(4755), [sym_entity_reference] = ACTIONS(4755), [sym_numeric_character_reference] = ACTIONS(4755), @@ -168044,7 +167842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4755), [sym__strong_emphasis_open_underscore] = ACTIONS(4755), }, - [STATE(1784)] = { + [STATE(1781)] = { [sym__backslash_escape] = ACTIONS(4759), [sym_entity_reference] = ACTIONS(4759), [sym_numeric_character_reference] = ACTIONS(4759), @@ -168111,72 +167909,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_star] = ACTIONS(4759), [sym__strong_emphasis_open_underscore] = ACTIONS(4759), }, + [STATE(1782)] = { + [sym__backslash_escape] = ACTIONS(4763), + [sym_entity_reference] = ACTIONS(4763), + [sym_numeric_character_reference] = ACTIONS(4763), + [anon_sym_LT] = ACTIONS(4765), + [anon_sym_GT] = ACTIONS(4763), + [anon_sym_BANG] = ACTIONS(4763), + [anon_sym_DQUOTE] = ACTIONS(4763), + [anon_sym_POUND] = ACTIONS(4763), + [anon_sym_DOLLAR] = ACTIONS(4763), + [anon_sym_PERCENT] = ACTIONS(4763), + [anon_sym_AMP] = ACTIONS(4765), + [anon_sym_SQUOTE] = ACTIONS(4763), + [anon_sym_PLUS] = ACTIONS(4763), + [anon_sym_COMMA] = ACTIONS(4763), + [anon_sym_DASH] = ACTIONS(4765), + [anon_sym_DOT] = ACTIONS(4765), + [anon_sym_SLASH] = ACTIONS(4763), + [anon_sym_COLON] = ACTIONS(4763), + [anon_sym_SEMI] = ACTIONS(4763), + [anon_sym_EQ] = ACTIONS(4763), + [anon_sym_QMARK] = ACTIONS(4763), + [anon_sym_LBRACK] = ACTIONS(4765), + [anon_sym_BSLASH] = ACTIONS(4765), + [anon_sym_CARET] = ACTIONS(4765), + [anon_sym_BQUOTE] = ACTIONS(4763), + [anon_sym_LBRACE] = ACTIONS(4763), + [anon_sym_PIPE] = ACTIONS(4763), + [anon_sym_TILDE] = ACTIONS(4763), + [anon_sym_LPAREN] = ACTIONS(4763), + [anon_sym_RPAREN] = ACTIONS(4763), + [sym__newline_token] = ACTIONS(4763), + [aux_sym_insert_token1] = ACTIONS(4763), + [aux_sym_delete_token1] = ACTIONS(4763), + [aux_sym_highlight_token1] = ACTIONS(4763), + [aux_sym_edit_comment_token1] = ACTIONS(4763), + [anon_sym_CARET_LBRACK] = ACTIONS(4763), + [anon_sym_LBRACK_CARET] = ACTIONS(4763), + [sym_uri_autolink] = ACTIONS(4763), + [sym_email_autolink] = ACTIONS(4763), + [sym__whitespace_ge_2] = ACTIONS(4763), + [aux_sym__whitespace_token1] = ACTIONS(4765), + [sym__word_no_digit] = ACTIONS(4763), + [sym__digits] = ACTIONS(4763), + [anon_sym_DASH_DASH] = ACTIONS(4765), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4763), + [sym__code_span_start] = ACTIONS(4763), + [sym__emphasis_open_star] = ACTIONS(4763), + [sym__emphasis_open_underscore] = ACTIONS(4763), + [sym__strikeout_open] = ACTIONS(4763), + [sym__latex_span_start] = ACTIONS(4763), + [sym__single_quote_open] = ACTIONS(4763), + [sym__double_quote_open] = ACTIONS(4763), + [sym__double_quote_close] = ACTIONS(4763), + [sym__superscript_open] = ACTIONS(4763), + [sym__subscript_open] = ACTIONS(4763), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4763), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4763), + [sym__cite_author_in_text] = ACTIONS(4763), + [sym__cite_suppress_author] = ACTIONS(4763), + [sym__shortcode_open_escaped] = ACTIONS(4763), + [sym__shortcode_open] = ACTIONS(4763), + [sym__unclosed_span] = ACTIONS(4763), + [sym__strong_emphasis_open_star] = ACTIONS(4763), + [sym__strong_emphasis_open_underscore] = ACTIONS(4763), + }, + [STATE(1783)] = { + [sym__backslash_escape] = ACTIONS(4209), + [sym_entity_reference] = ACTIONS(4209), + [sym_numeric_character_reference] = ACTIONS(4209), + [anon_sym_LT] = ACTIONS(4211), + [anon_sym_GT] = ACTIONS(4209), + [anon_sym_BANG] = ACTIONS(4209), + [anon_sym_DQUOTE] = ACTIONS(4209), + [anon_sym_POUND] = ACTIONS(4209), + [anon_sym_DOLLAR] = ACTIONS(4209), + [anon_sym_PERCENT] = ACTIONS(4209), + [anon_sym_AMP] = ACTIONS(4211), + [anon_sym_SQUOTE] = ACTIONS(4209), + [anon_sym_PLUS] = ACTIONS(4209), + [anon_sym_COMMA] = ACTIONS(4209), + [anon_sym_DASH] = ACTIONS(4211), + [anon_sym_DOT] = ACTIONS(4211), + [anon_sym_SLASH] = ACTIONS(4209), + [anon_sym_COLON] = ACTIONS(4209), + [anon_sym_SEMI] = ACTIONS(4209), + [anon_sym_EQ] = ACTIONS(4209), + [anon_sym_QMARK] = ACTIONS(4209), + [anon_sym_LBRACK] = ACTIONS(4211), + [anon_sym_BSLASH] = ACTIONS(4211), + [anon_sym_CARET] = ACTIONS(4211), + [anon_sym_BQUOTE] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_PIPE] = ACTIONS(4209), + [anon_sym_TILDE] = ACTIONS(4209), + [anon_sym_LPAREN] = ACTIONS(4209), + [anon_sym_RPAREN] = ACTIONS(4209), + [sym__newline_token] = ACTIONS(4209), + [aux_sym_insert_token1] = ACTIONS(4209), + [aux_sym_delete_token1] = ACTIONS(4209), + [aux_sym_highlight_token1] = ACTIONS(4209), + [aux_sym_edit_comment_token1] = ACTIONS(4209), + [anon_sym_CARET_LBRACK] = ACTIONS(4209), + [anon_sym_LBRACK_CARET] = ACTIONS(4209), + [sym_uri_autolink] = ACTIONS(4209), + [sym_email_autolink] = ACTIONS(4209), + [sym__whitespace_ge_2] = ACTIONS(4209), + [aux_sym__whitespace_token1] = ACTIONS(4211), + [sym__word_no_digit] = ACTIONS(4209), + [sym__digits] = ACTIONS(4209), + [anon_sym_DASH_DASH] = ACTIONS(4211), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4209), + [sym__code_span_start] = ACTIONS(4209), + [sym__emphasis_open_star] = ACTIONS(4209), + [sym__emphasis_open_underscore] = ACTIONS(4209), + [sym__strikeout_open] = ACTIONS(4209), + [sym__latex_span_start] = ACTIONS(4209), + [sym__single_quote_open] = ACTIONS(4209), + [sym__double_quote_open] = ACTIONS(4209), + [sym__double_quote_close] = ACTIONS(4209), + [sym__superscript_open] = ACTIONS(4209), + [sym__subscript_open] = ACTIONS(4209), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4209), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4209), + [sym__cite_author_in_text] = ACTIONS(4209), + [sym__cite_suppress_author] = ACTIONS(4209), + [sym__shortcode_open_escaped] = ACTIONS(4209), + [sym__shortcode_open] = ACTIONS(4209), + [sym__unclosed_span] = ACTIONS(4209), + [sym__strong_emphasis_open_star] = ACTIONS(4209), + [sym__strong_emphasis_open_underscore] = ACTIONS(4209), + }, + [STATE(1784)] = { + [sym__backslash_escape] = ACTIONS(4213), + [sym_entity_reference] = ACTIONS(4213), + [sym_numeric_character_reference] = ACTIONS(4213), + [anon_sym_LT] = ACTIONS(4215), + [anon_sym_GT] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(4213), + [anon_sym_DQUOTE] = ACTIONS(4213), + [anon_sym_POUND] = ACTIONS(4213), + [anon_sym_DOLLAR] = ACTIONS(4213), + [anon_sym_PERCENT] = ACTIONS(4213), + [anon_sym_AMP] = ACTIONS(4215), + [anon_sym_SQUOTE] = ACTIONS(4213), + [anon_sym_PLUS] = ACTIONS(4213), + [anon_sym_COMMA] = ACTIONS(4213), + [anon_sym_DASH] = ACTIONS(4215), + [anon_sym_DOT] = ACTIONS(4215), + [anon_sym_SLASH] = ACTIONS(4213), + [anon_sym_COLON] = ACTIONS(4213), + [anon_sym_SEMI] = ACTIONS(4213), + [anon_sym_EQ] = ACTIONS(4213), + [anon_sym_QMARK] = ACTIONS(4213), + [anon_sym_LBRACK] = ACTIONS(4215), + [anon_sym_BSLASH] = ACTIONS(4215), + [anon_sym_CARET] = ACTIONS(4215), + [anon_sym_BQUOTE] = ACTIONS(4213), + [anon_sym_LBRACE] = ACTIONS(4213), + [anon_sym_PIPE] = ACTIONS(4213), + [anon_sym_TILDE] = ACTIONS(4213), + [anon_sym_LPAREN] = ACTIONS(4213), + [anon_sym_RPAREN] = ACTIONS(4213), + [sym__newline_token] = ACTIONS(4213), + [aux_sym_insert_token1] = ACTIONS(4213), + [aux_sym_delete_token1] = ACTIONS(4213), + [aux_sym_highlight_token1] = ACTIONS(4213), + [aux_sym_edit_comment_token1] = ACTIONS(4213), + [anon_sym_CARET_LBRACK] = ACTIONS(4213), + [anon_sym_LBRACK_CARET] = ACTIONS(4213), + [sym_uri_autolink] = ACTIONS(4213), + [sym_email_autolink] = ACTIONS(4213), + [sym__whitespace_ge_2] = ACTIONS(4213), + [aux_sym__whitespace_token1] = ACTIONS(4215), + [sym__word_no_digit] = ACTIONS(4213), + [sym__digits] = ACTIONS(4213), + [anon_sym_DASH_DASH] = ACTIONS(4215), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4213), + [sym__code_span_start] = ACTIONS(4213), + [sym__emphasis_open_star] = ACTIONS(4213), + [sym__emphasis_open_underscore] = ACTIONS(4213), + [sym__strikeout_open] = ACTIONS(4213), + [sym__latex_span_start] = ACTIONS(4213), + [sym__single_quote_open] = ACTIONS(4213), + [sym__double_quote_open] = ACTIONS(4213), + [sym__double_quote_close] = ACTIONS(4213), + [sym__superscript_open] = ACTIONS(4213), + [sym__subscript_open] = ACTIONS(4213), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4213), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4213), + [sym__cite_author_in_text] = ACTIONS(4213), + [sym__cite_suppress_author] = ACTIONS(4213), + [sym__shortcode_open_escaped] = ACTIONS(4213), + [sym__shortcode_open] = ACTIONS(4213), + [sym__unclosed_span] = ACTIONS(4213), + [sym__strong_emphasis_open_star] = ACTIONS(4213), + [sym__strong_emphasis_open_underscore] = ACTIONS(4213), + }, [STATE(1785)] = { - [sym__backslash_escape] = ACTIONS(4229), - [sym_entity_reference] = ACTIONS(4229), - [sym_numeric_character_reference] = ACTIONS(4229), - [anon_sym_LT] = ACTIONS(4231), - [anon_sym_GT] = ACTIONS(4229), - [anon_sym_BANG] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(4229), - [anon_sym_POUND] = ACTIONS(4229), - [anon_sym_DOLLAR] = ACTIONS(4229), - [anon_sym_PERCENT] = ACTIONS(4229), - [anon_sym_AMP] = ACTIONS(4231), - [anon_sym_SQUOTE] = ACTIONS(4229), - [anon_sym_PLUS] = ACTIONS(4229), - [anon_sym_COMMA] = ACTIONS(4229), - [anon_sym_DASH] = ACTIONS(4231), - [anon_sym_DOT] = ACTIONS(4231), - [anon_sym_SLASH] = ACTIONS(4229), - [anon_sym_COLON] = ACTIONS(4229), - [anon_sym_SEMI] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4229), - [anon_sym_QMARK] = ACTIONS(4229), - [anon_sym_LBRACK] = ACTIONS(4231), - [anon_sym_BSLASH] = ACTIONS(4231), - [anon_sym_CARET] = ACTIONS(4231), - [anon_sym_BQUOTE] = ACTIONS(4229), - [anon_sym_LBRACE] = ACTIONS(4229), - [anon_sym_PIPE] = ACTIONS(4229), - [anon_sym_TILDE] = ACTIONS(4229), - [anon_sym_LPAREN] = ACTIONS(4229), - [anon_sym_RPAREN] = ACTIONS(4229), - [sym__newline_token] = ACTIONS(4229), - [aux_sym_insert_token1] = ACTIONS(4229), - [aux_sym_delete_token1] = ACTIONS(4229), - [aux_sym_highlight_token1] = ACTIONS(4229), - [aux_sym_edit_comment_token1] = ACTIONS(4229), - [anon_sym_CARET_LBRACK] = ACTIONS(4229), - [anon_sym_LBRACK_CARET] = ACTIONS(4229), - [sym_uri_autolink] = ACTIONS(4229), - [sym_email_autolink] = ACTIONS(4229), - [sym__whitespace_ge_2] = ACTIONS(4229), - [aux_sym__whitespace_token1] = ACTIONS(4231), - [sym__word_no_digit] = ACTIONS(4229), - [sym__digits] = ACTIONS(4229), - [anon_sym_DASH_DASH] = ACTIONS(4231), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4229), - [sym__code_span_start] = ACTIONS(4229), - [sym__emphasis_open_star] = ACTIONS(4229), - [sym__emphasis_open_underscore] = ACTIONS(4229), - [sym__strikeout_open] = ACTIONS(4229), - [sym__latex_span_start] = ACTIONS(4229), - [sym__single_quote_open] = ACTIONS(4229), - [sym__double_quote_open] = ACTIONS(4229), - [sym__superscript_open] = ACTIONS(4229), - [sym__superscript_close] = ACTIONS(4229), - [sym__subscript_open] = ACTIONS(4229), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4229), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4229), - [sym__cite_author_in_text] = ACTIONS(4229), - [sym__cite_suppress_author] = ACTIONS(4229), - [sym__shortcode_open_escaped] = ACTIONS(4229), - [sym__shortcode_open] = ACTIONS(4229), - [sym__unclosed_span] = ACTIONS(4229), - [sym__strong_emphasis_open_star] = ACTIONS(4229), - [sym__strong_emphasis_open_underscore] = ACTIONS(4229), + [sym__backslash_escape] = ACTIONS(4551), + [sym_entity_reference] = ACTIONS(4551), + [sym_numeric_character_reference] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4553), + [anon_sym_GT] = ACTIONS(4551), + [anon_sym_BANG] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_POUND] = ACTIONS(4551), + [anon_sym_DOLLAR] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_AMP] = ACTIONS(4553), + [anon_sym_SQUOTE] = ACTIONS(4551), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_COMMA] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_DOT] = ACTIONS(4553), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_COLON] = ACTIONS(4551), + [anon_sym_SEMI] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4551), + [anon_sym_QMARK] = ACTIONS(4551), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_BSLASH] = ACTIONS(4553), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_BQUOTE] = ACTIONS(4551), + [anon_sym_LBRACE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_LPAREN] = ACTIONS(4551), + [anon_sym_RPAREN] = ACTIONS(4551), + [sym__newline_token] = ACTIONS(4551), + [aux_sym_insert_token1] = ACTIONS(4551), + [aux_sym_delete_token1] = ACTIONS(4551), + [aux_sym_highlight_token1] = ACTIONS(4551), + [aux_sym_edit_comment_token1] = ACTIONS(4551), + [anon_sym_CARET_LBRACK] = ACTIONS(4551), + [anon_sym_LBRACK_CARET] = ACTIONS(4551), + [sym_uri_autolink] = ACTIONS(4551), + [sym_email_autolink] = ACTIONS(4551), + [sym__whitespace_ge_2] = ACTIONS(4551), + [aux_sym__whitespace_token1] = ACTIONS(4553), + [sym__word_no_digit] = ACTIONS(4551), + [sym__digits] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4553), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), + [sym__code_span_start] = ACTIONS(4551), + [sym__emphasis_open_star] = ACTIONS(4551), + [sym__emphasis_open_underscore] = ACTIONS(4551), + [sym__strikeout_open] = ACTIONS(4551), + [sym__latex_span_start] = ACTIONS(4551), + [sym__single_quote_open] = ACTIONS(4551), + [sym__double_quote_open] = ACTIONS(4551), + [sym__superscript_open] = ACTIONS(4551), + [sym__superscript_close] = ACTIONS(4551), + [sym__subscript_open] = ACTIONS(4551), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4551), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4551), + [sym__cite_author_in_text] = ACTIONS(4551), + [sym__cite_suppress_author] = ACTIONS(4551), + [sym__shortcode_open_escaped] = ACTIONS(4551), + [sym__shortcode_open] = ACTIONS(4551), + [sym__unclosed_span] = ACTIONS(4551), + [sym__strong_emphasis_open_star] = ACTIONS(4551), + [sym__strong_emphasis_open_underscore] = ACTIONS(4551), }, }; @@ -168200,18 +168199,18 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - STATE(2160), 1, + STATE(2272), 1, sym_link_destination, - STATE(2161), 1, + STATE(2276), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1876), 3, + STATE(1874), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, @@ -168265,10 +168264,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__whitespace_token1, ACTIONS(4795), 1, anon_sym_RPAREN, - STATE(2265), 1, - sym_link_destination, - STATE(2267), 1, + STATE(2148), 1, sym_link_title, + STATE(2315), 1, + sym_link_destination, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, @@ -168276,10 +168275,723 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4773), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4777), 25, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [162] = 16, + ACTIONS(4771), 1, + sym__backslash_escape, + ACTIONS(4775), 1, + anon_sym_LT, + ACTIONS(4779), 1, + anon_sym_DQUOTE, + ACTIONS(4783), 1, + anon_sym_SQUOTE, + ACTIONS(4785), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym__newline_token, + ACTIONS(4791), 1, + sym__whitespace_ge_2, + ACTIONS(4793), 1, + aux_sym__whitespace_token1, + ACTIONS(4797), 1, + anon_sym_RPAREN, + STATE(2324), 1, + sym_link_destination, + STATE(2343), 1, + sym_link_title, + ACTIONS(4781), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1790), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4773), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4777), 25, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [243] = 16, + ACTIONS(4771), 1, + sym__backslash_escape, + ACTIONS(4775), 1, + anon_sym_LT, + ACTIONS(4779), 1, + anon_sym_DQUOTE, + ACTIONS(4783), 1, + anon_sym_SQUOTE, + ACTIONS(4785), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym__newline_token, + ACTIONS(4791), 1, + sym__whitespace_ge_2, + ACTIONS(4793), 1, + aux_sym__whitespace_token1, + ACTIONS(4799), 1, + anon_sym_RPAREN, + STATE(2406), 1, + sym_link_destination, + STATE(2408), 1, + sym_link_title, + ACTIONS(4781), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, + STATE(1874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(4773), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4777), 25, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [324] = 16, + ACTIONS(4771), 1, + sym__backslash_escape, + ACTIONS(4775), 1, + anon_sym_LT, + ACTIONS(4779), 1, + anon_sym_DQUOTE, + ACTIONS(4783), 1, + anon_sym_SQUOTE, + ACTIONS(4785), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym__newline_token, + ACTIONS(4791), 1, + sym__whitespace_ge_2, + ACTIONS(4793), 1, + aux_sym__whitespace_token1, + ACTIONS(4801), 1, + anon_sym_RPAREN, + STATE(2151), 1, + sym_link_title, + STATE(2304), 1, + sym_link_destination, + ACTIONS(4781), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(1874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(4773), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4777), 25, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [405] = 15, + ACTIONS(4771), 1, + sym__backslash_escape, + ACTIONS(4807), 1, + anon_sym_DQUOTE, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4813), 1, + anon_sym_RPAREN, + ACTIONS(4816), 1, + sym__newline_token, + ACTIONS(4819), 1, + sym__whitespace_ge_2, + ACTIONS(4822), 1, + aux_sym__whitespace_token1, + ACTIONS(4825), 1, + sym__last_token_punctuation, + STATE(1885), 1, + sym__soft_line_break, + ACTIONS(4809), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1842), 2, + sym__whitespace, + aux_sym_link_title_repeat1, + STATE(1846), 2, + sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + STATE(1908), 2, + sym_backslash_escape, + sym__word, + ACTIONS(4803), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4805), 27, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [484] = 15, + ACTIONS(4771), 1, + sym__backslash_escape, + ACTIONS(4807), 1, + anon_sym_SQUOTE, + ACTIONS(4816), 1, + sym__newline_token, + ACTIONS(4819), 1, + sym__whitespace_ge_2, + ACTIONS(4822), 1, + aux_sym__whitespace_token1, + ACTIONS(4825), 1, + sym__last_token_punctuation, + ACTIONS(4833), 1, + anon_sym_LPAREN, + ACTIONS(4835), 1, + anon_sym_RPAREN, + STATE(1890), 1, + sym__soft_line_break, + ACTIONS(4831), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1838), 2, + sym__whitespace, + aux_sym_link_title_repeat2, + STATE(1846), 2, + sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + STATE(1899), 2, + sym_backslash_escape, + sym__word, + ACTIONS(4827), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4829), 27, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [563] = 16, + ACTIONS(4771), 1, + sym__backslash_escape, + ACTIONS(4775), 1, + anon_sym_LT, + ACTIONS(4779), 1, + anon_sym_DQUOTE, + ACTIONS(4783), 1, + anon_sym_SQUOTE, + ACTIONS(4785), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym__newline_token, + ACTIONS(4791), 1, + sym__whitespace_ge_2, + ACTIONS(4793), 1, + aux_sym__whitespace_token1, + ACTIONS(4838), 1, + anon_sym_RPAREN, + STATE(2244), 1, + sym_link_destination, + STATE(2248), 1, + sym_link_title, + ACTIONS(4781), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1797), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4773), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4777), 25, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [644] = 16, + ACTIONS(4771), 1, + sym__backslash_escape, + ACTIONS(4775), 1, + anon_sym_LT, + ACTIONS(4779), 1, + anon_sym_DQUOTE, + ACTIONS(4783), 1, + anon_sym_SQUOTE, + ACTIONS(4785), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym__newline_token, + ACTIONS(4791), 1, + sym__whitespace_ge_2, + ACTIONS(4793), 1, + aux_sym__whitespace_token1, + ACTIONS(4840), 1, + anon_sym_RPAREN, + STATE(2370), 1, + sym_link_destination, + STATE(2371), 1, + sym_link_title, + ACTIONS(4781), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(1874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(4773), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4777), 25, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [725] = 16, + ACTIONS(4771), 1, + sym__backslash_escape, + ACTIONS(4775), 1, + anon_sym_LT, + ACTIONS(4779), 1, + anon_sym_DQUOTE, + ACTIONS(4783), 1, + anon_sym_SQUOTE, + ACTIONS(4785), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym__newline_token, + ACTIONS(4791), 1, + sym__whitespace_ge_2, + ACTIONS(4793), 1, + aux_sym__whitespace_token1, + ACTIONS(4842), 1, + anon_sym_RPAREN, + STATE(2269), 1, + sym_link_destination, + STATE(2270), 1, + sym_link_title, + ACTIONS(4781), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1798), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4773), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4777), 25, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [806] = 16, + ACTIONS(4771), 1, + sym__backslash_escape, + ACTIONS(4775), 1, + anon_sym_LT, + ACTIONS(4779), 1, + anon_sym_DQUOTE, + ACTIONS(4783), 1, + anon_sym_SQUOTE, + ACTIONS(4785), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym__newline_token, + ACTIONS(4791), 1, + sym__whitespace_ge_2, + ACTIONS(4793), 1, + aux_sym__whitespace_token1, + ACTIONS(4844), 1, + anon_sym_RPAREN, + STATE(2273), 1, + sym_link_destination, + STATE(2274), 1, + sym_link_title, + ACTIONS(4781), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1799), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4773), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4777), 25, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [887] = 16, + ACTIONS(4771), 1, + sym__backslash_escape, + ACTIONS(4775), 1, + anon_sym_LT, + ACTIONS(4779), 1, + anon_sym_DQUOTE, + ACTIONS(4783), 1, + anon_sym_SQUOTE, + ACTIONS(4785), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym__newline_token, + ACTIONS(4791), 1, + sym__whitespace_ge_2, + ACTIONS(4793), 1, + aux_sym__whitespace_token1, + ACTIONS(4846), 1, + anon_sym_RPAREN, + STATE(2379), 1, + sym_link_destination, + STATE(2407), 1, + sym_link_title, + ACTIONS(4781), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(1874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(4773), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4777), 25, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [968] = 16, + ACTIONS(4771), 1, + sym__backslash_escape, + ACTIONS(4775), 1, + anon_sym_LT, + ACTIONS(4779), 1, + anon_sym_DQUOTE, + ACTIONS(4783), 1, + anon_sym_SQUOTE, + ACTIONS(4785), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym__newline_token, + ACTIONS(4791), 1, + sym__whitespace_ge_2, + ACTIONS(4793), 1, + aux_sym__whitespace_token1, + ACTIONS(4848), 1, + anon_sym_RPAREN, + STATE(2294), 1, + sym_link_destination, + STATE(2295), 1, + sym_link_title, + ACTIONS(4781), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(1874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -168311,7 +169023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [162] = 16, + [1049] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -168328,23 +169040,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4797), 1, + ACTIONS(4850), 1, anon_sym_RPAREN, - STATE(2269), 1, + STATE(2307), 1, sym_link_destination, - STATE(2270), 1, + STATE(2309), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1790), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, + STATE(1874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -168376,7 +169088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [243] = 16, + [1130] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -168393,23 +169105,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4799), 1, + ACTIONS(4852), 1, anon_sym_RPAREN, - STATE(2281), 1, + STATE(2420), 1, sym_link_destination, - STATE(2284), 1, + STATE(2424), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1876), 3, + STATE(1802), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -168441,7 +169153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [324] = 16, + [1211] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -168458,23 +169170,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4801), 1, + ACTIONS(4854), 1, anon_sym_RPAREN, - STATE(2291), 1, - sym_link_destination, - STATE(2293), 1, + STATE(2219), 1, sym_link_title, + STATE(2277), 1, + sym_link_destination, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1876), 3, + STATE(1803), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -168506,50 +169218,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [405] = 15, + [1292] = 16, ACTIONS(4771), 1, sym__backslash_escape, - ACTIONS(4807), 1, + ACTIONS(4775), 1, + anon_sym_LT, + ACTIONS(4779), 1, anon_sym_DQUOTE, - ACTIONS(4811), 1, + ACTIONS(4783), 1, + anon_sym_SQUOTE, + ACTIONS(4785), 1, anon_sym_LPAREN, - ACTIONS(4813), 1, - anon_sym_RPAREN, - ACTIONS(4816), 1, + ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4819), 1, + ACTIONS(4791), 1, sym__whitespace_ge_2, - ACTIONS(4822), 1, + ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4825), 1, - sym__last_token_punctuation, - STATE(1894), 1, - sym__soft_line_break, - ACTIONS(4809), 2, + ACTIONS(4856), 1, + anon_sym_RPAREN, + STATE(2175), 1, + sym_link_destination, + STATE(2176), 1, + sym_link_title, + ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1844), 2, - sym__whitespace, - aux_sym_link_title_repeat1, - STATE(1846), 2, - sym__link_destination_parenthesis, - aux_sym_link_destination_repeat2, - STATE(1903), 2, + STATE(1849), 3, sym_backslash_escape, + sym__link_destination_parenthesis, sym__word, - ACTIONS(4803), 4, + STATE(1874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4805), 27, - anon_sym_LT, + ACTIONS(4777), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -168570,47 +169283,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [484] = 15, + [1373] = 16, ACTIONS(4771), 1, sym__backslash_escape, - ACTIONS(4807), 1, + ACTIONS(4775), 1, + anon_sym_LT, + ACTIONS(4779), 1, + anon_sym_DQUOTE, + ACTIONS(4783), 1, anon_sym_SQUOTE, - ACTIONS(4816), 1, + ACTIONS(4785), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4819), 1, + ACTIONS(4791), 1, sym__whitespace_ge_2, - ACTIONS(4822), 1, + ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4825), 1, - sym__last_token_punctuation, - ACTIONS(4833), 1, - anon_sym_LPAREN, - ACTIONS(4835), 1, + ACTIONS(4858), 1, anon_sym_RPAREN, - STATE(1895), 1, - sym__soft_line_break, - ACTIONS(4831), 2, + STATE(2183), 1, + sym_link_destination, + STATE(2184), 1, + sym_link_title, + ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1840), 2, - sym__whitespace, - aux_sym_link_title_repeat2, - STATE(1846), 2, - sym__link_destination_parenthesis, - aux_sym_link_destination_repeat2, - STATE(1915), 2, + STATE(1849), 3, sym_backslash_escape, + sym__link_destination_parenthesis, sym__word, - ACTIONS(4827), 4, + STATE(1874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4829), 27, - anon_sym_LT, + ACTIONS(4777), 25, anon_sym_GT, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -168634,7 +169348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [563] = 16, + [1454] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -168651,20 +169365,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4838), 1, + ACTIONS(4860), 1, anon_sym_RPAREN, - STATE(2189), 1, + STATE(2418), 1, sym_link_destination, - STATE(2194), 1, + STATE(2421), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1796), 3, + STATE(1806), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, @@ -168699,7 +169413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [644] = 16, + [1535] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -168716,20 +169430,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4840), 1, + ACTIONS(4862), 1, anon_sym_RPAREN, - STATE(2197), 1, + STATE(2149), 1, sym_link_destination, - STATE(2198), 1, + STATE(2150), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1797), 3, + STATE(1807), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, @@ -168764,7 +169478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [725] = 16, + [1616] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -168781,20 +169495,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4842), 1, + ACTIONS(4864), 1, anon_sym_RPAREN, - STATE(2379), 1, + STATE(2156), 1, sym_link_destination, - STATE(2382), 1, + STATE(2157), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1876), 3, + STATE(1874), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, @@ -168829,7 +169543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [806] = 16, + [1697] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -168846,20 +169560,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4844), 1, + ACTIONS(4866), 1, anon_sym_RPAREN, - STATE(2220), 1, + STATE(2159), 1, sym_link_destination, - STATE(2221), 1, + STATE(2160), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1876), 3, + STATE(1874), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, @@ -168894,7 +169608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [887] = 16, + [1778] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -168911,23 +169625,88 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4846), 1, + ACTIONS(4868), 1, anon_sym_RPAREN, - STATE(2223), 1, + STATE(2192), 1, sym_link_destination, - STATE(2224), 1, + STATE(2193), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, + STATE(1810), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1876), 3, + ACTIONS(4773), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4777), 25, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [1859] = 16, + ACTIONS(4771), 1, + sym__backslash_escape, + ACTIONS(4775), 1, + anon_sym_LT, + ACTIONS(4779), 1, + anon_sym_DQUOTE, + ACTIONS(4783), 1, + anon_sym_SQUOTE, + ACTIONS(4785), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym__newline_token, + ACTIONS(4791), 1, + sym__whitespace_ge_2, + ACTIONS(4793), 1, + aux_sym__whitespace_token1, + ACTIONS(4870), 1, + anon_sym_RPAREN, + STATE(2317), 1, + sym_link_destination, + STATE(2364), 1, + sym_link_title, + ACTIONS(4781), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1786), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -168959,7 +169738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [968] = 16, + [1940] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -168976,20 +169755,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4848), 1, + ACTIONS(4872), 1, anon_sym_RPAREN, - STATE(2416), 1, + STATE(2202), 1, sym_link_destination, - STATE(2418), 1, + STATE(2203), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1876), 3, + STATE(1874), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, @@ -169024,7 +169803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1049] = 16, + [2021] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -169041,23 +169820,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4850), 1, + ACTIONS(4874), 1, anon_sym_RPAREN, - STATE(2311), 1, + STATE(2206), 1, sym_link_destination, - STATE(2312), 1, + STATE(2207), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1801), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, + STATE(1874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -169089,7 +169868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1130] = 16, + [2102] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -169106,20 +169885,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4852), 1, + ACTIONS(4876), 1, anon_sym_RPAREN, - STATE(2316), 1, + STATE(2225), 1, sym_link_destination, - STATE(2317), 1, + STATE(2232), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1802), 3, + STATE(1794), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, @@ -169154,7 +169933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1211] = 16, + [2183] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -169171,88 +169950,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4854), 1, + ACTIONS(4878), 1, anon_sym_RPAREN, - STATE(2325), 1, + STATE(2237), 1, sym_link_destination, - STATE(2326), 1, + STATE(2238), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1876), 3, + STATE(1815), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(4773), 4, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4777), 25, - anon_sym_GT, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [1292] = 16, - ACTIONS(4771), 1, - sym__backslash_escape, - ACTIONS(4775), 1, - anon_sym_LT, - ACTIONS(4779), 1, - anon_sym_DQUOTE, - ACTIONS(4783), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LPAREN, - ACTIONS(4789), 1, - sym__newline_token, - ACTIONS(4791), 1, - sym__whitespace_ge_2, - ACTIONS(4793), 1, - aux_sym__whitespace_token1, - ACTIONS(4856), 1, - anon_sym_RPAREN, - STATE(2332), 1, - sym_link_destination, - STATE(2333), 1, - sym_link_title, - ACTIONS(4781), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1876), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -169284,7 +169998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1373] = 16, + [2264] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -169301,20 +170015,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4858), 1, + ACTIONS(4880), 1, anon_sym_RPAREN, - STATE(2187), 1, + STATE(2240), 1, sym_link_destination, - STATE(2245), 1, + STATE(2241), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1798), 3, + STATE(1816), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, @@ -169349,7 +170063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1454] = 16, + [2345] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -169366,23 +170080,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4860), 1, + ACTIONS(4882), 1, anon_sym_RPAREN, - STATE(2151), 1, - sym_link_title, - STATE(2428), 1, + STATE(2246), 1, sym_link_destination, + STATE(2247), 1, + sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1806), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, + STATE(1874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -169414,7 +170128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1535] = 16, + [2426] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -169431,23 +170145,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4862), 1, + ACTIONS(4884), 1, anon_sym_RPAREN, - STATE(2153), 1, + STATE(2250), 1, sym_link_destination, - STATE(2154), 1, + STATE(2251), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1786), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, + STATE(1874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -169479,7 +170193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1616] = 16, + [2507] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -169496,23 +170210,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4864), 1, + ACTIONS(4886), 1, anon_sym_RPAREN, - STATE(2157), 1, + STATE(2275), 1, sym_link_destination, - STATE(2158), 1, + STATE(2278), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1876), 3, + STATE(1821), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -169544,7 +170258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1697] = 16, + [2588] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -169561,23 +170275,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4866), 1, + ACTIONS(4888), 1, anon_sym_RPAREN, - STATE(2404), 1, + STATE(2280), 1, sym_link_destination, - STATE(2420), 1, + STATE(2308), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1876), 3, + STATE(1824), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -169609,7 +170323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1778] = 16, + [2669] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -169626,20 +170340,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4868), 1, + ACTIONS(4890), 1, anon_sym_RPAREN, - STATE(2192), 1, + STATE(2281), 1, sym_link_destination, - STATE(2193), 1, + STATE(2282), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1810), 3, + STATE(1822), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, @@ -169674,7 +170388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1859] = 16, + [2750] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -169691,20 +170405,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4870), 1, + ACTIONS(4892), 1, anon_sym_RPAREN, - STATE(2195), 1, + STATE(2284), 1, sym_link_destination, - STATE(2196), 1, + STATE(2285), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1811), 3, + STATE(1823), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, @@ -169739,7 +170453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1940] = 16, + [2831] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -169756,20 +170470,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4872), 1, + ACTIONS(4894), 1, anon_sym_RPAREN, - STATE(2202), 1, + STATE(2314), 1, sym_link_destination, - STATE(2203), 1, + STATE(2316), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1876), 3, + STATE(1874), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, @@ -169804,7 +170518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2021] = 16, + [2912] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -169821,20 +170535,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, + ACTIONS(4896), 1, anon_sym_RPAREN, - STATE(2205), 1, + STATE(2288), 1, sym_link_destination, - STATE(2206), 1, + STATE(2289), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1876), 3, + STATE(1874), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, @@ -169869,7 +170583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2102] = 16, + [2993] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -169886,23 +170600,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4876), 1, + ACTIONS(4898), 1, anon_sym_RPAREN, - STATE(2177), 1, + STATE(2292), 1, sym_link_destination, - STATE(2180), 1, + STATE(2293), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1795), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, + STATE(1874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -169934,7 +170648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2183] = 16, + [3074] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -169951,23 +170665,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4878), 1, + ACTIONS(4900), 1, anon_sym_RPAREN, - STATE(2240), 1, + STATE(2320), 1, sym_link_destination, - STATE(2241), 1, + STATE(2322), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1815), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, + STATE(1874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -169999,7 +170713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2264] = 16, + [3155] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -170016,23 +170730,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4880), 1, + ACTIONS(4902), 1, anon_sym_RPAREN, - STATE(2243), 1, + STATE(2242), 1, sym_link_destination, - STATE(2244), 1, + STATE(2256), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1816), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, + STATE(1874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -170064,7 +170778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2345] = 16, + [3236] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -170081,23 +170795,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4882), 1, + ACTIONS(4904), 1, anon_sym_RPAREN, - STATE(2250), 1, + STATE(2332), 1, sym_link_destination, - STATE(2251), 1, + STATE(2333), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1876), 3, + STATE(1828), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -170129,7 +170843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2426] = 16, + [3317] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -170146,23 +170860,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4884), 1, + ACTIONS(4906), 1, anon_sym_RPAREN, - STATE(2253), 1, + STATE(2335), 1, sym_link_destination, - STATE(2254), 1, + STATE(2336), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1876), 3, + STATE(1829), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -170194,7 +170908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2507] = 16, + [3398] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -170211,23 +170925,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4886), 1, + ACTIONS(4908), 1, anon_sym_RPAREN, - STATE(2280), 1, + STATE(2341), 1, sym_link_destination, - STATE(2282), 1, + STATE(2342), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1823), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, + STATE(1874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -170259,7 +170973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2588] = 16, + [3479] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -170276,23 +170990,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4888), 1, + ACTIONS(4910), 1, anon_sym_RPAREN, - STATE(2313), 1, + STATE(2345), 1, sym_link_destination, - STATE(2314), 1, + STATE(2346), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1824), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, + STATE(1874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -170324,7 +171038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2669] = 16, + [3560] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -170341,20 +171055,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(4912), 1, anon_sym_RPAREN, - STATE(2285), 1, + STATE(2382), 1, sym_link_destination, - STATE(2286), 1, + STATE(2383), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1821), 3, + STATE(1832), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, @@ -170389,7 +171103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2750] = 16, + [3641] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -170406,20 +171120,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4892), 1, + ACTIONS(4914), 1, anon_sym_RPAREN, - STATE(2288), 1, + STATE(2384), 1, sym_link_destination, - STATE(2289), 1, + STATE(2385), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1822), 3, + STATE(1833), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, @@ -170454,7 +171168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2831] = 16, + [3722] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -170471,20 +171185,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4916), 1, anon_sym_RPAREN, - STATE(2295), 1, + STATE(2389), 1, sym_link_destination, - STATE(2296), 1, + STATE(2390), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1876), 3, + STATE(1874), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, @@ -170519,7 +171233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2912] = 16, + [3803] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -170536,20 +171250,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4896), 1, + ACTIONS(4918), 1, anon_sym_RPAREN, - STATE(2298), 1, + STATE(2392), 1, sym_link_destination, - STATE(2299), 1, + STATE(2393), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, + STATE(1849), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1876), 3, + STATE(1874), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, @@ -170584,7 +171298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2993] = 16, + [3884] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -170601,23 +171315,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4898), 1, + ACTIONS(4920), 1, anon_sym_RPAREN, - STATE(2321), 1, + STATE(2423), 1, sym_link_destination, - STATE(2322), 1, + STATE(2425), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1876), 3, + STATE(1825), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -170649,7 +171363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3074] = 16, + [3965] = 16, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4775), 1, @@ -170666,23 +171380,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4900), 1, + ACTIONS(4922), 1, anon_sym_RPAREN, - STATE(2329), 1, + STATE(2195), 1, sym_link_destination, - STATE(2330), 1, + STATE(2196), 1, sym_link_title, ACTIONS(4781), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1876), 3, + STATE(1811), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, + STATE(1849), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, ACTIONS(4773), 4, sym_entity_reference, sym_numeric_character_reference, @@ -170714,51 +171428,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3155] = 16, + [4046] = 13, ACTIONS(4771), 1, sym__backslash_escape, - ACTIONS(4775), 1, - anon_sym_LT, - ACTIONS(4779), 1, - anon_sym_DQUOTE, - ACTIONS(4783), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LPAREN, ACTIONS(4789), 1, sym__newline_token, ACTIONS(4791), 1, sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4902), 1, + ACTIONS(4930), 1, + anon_sym_LPAREN, + ACTIONS(4932), 1, anon_sym_RPAREN, - STATE(2337), 1, - sym_link_destination, - STATE(2338), 1, - sym_link_title, - ACTIONS(4781), 2, + STATE(1919), 1, + sym__soft_line_break, + ACTIONS(4928), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1827), 3, + STATE(1852), 2, sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1853), 3, - sym_backslash_escape, + aux_sym_link_title_repeat3, + STATE(1893), 2, sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + STATE(1909), 2, + sym_backslash_escape, sym__word, - ACTIONS(4773), 4, + ACTIONS(4924), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4777), 25, + ACTIONS(4926), 28, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -170779,51 +171489,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3236] = 16, + [4120] = 9, ACTIONS(4771), 1, sym__backslash_escape, - ACTIONS(4775), 1, - anon_sym_LT, - ACTIONS(4779), 1, - anon_sym_DQUOTE, - ACTIONS(4783), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4825), 1, + sym__last_token_punctuation, + ACTIONS(4930), 1, anon_sym_LPAREN, - ACTIONS(4789), 1, - sym__newline_token, - ACTIONS(4791), 1, - sym__whitespace_ge_2, - ACTIONS(4793), 1, + ACTIONS(4942), 1, aux_sym__whitespace_token1, - ACTIONS(4904), 1, - anon_sym_RPAREN, - STATE(2339), 1, - sym_link_destination, - STATE(2340), 1, - sym_link_title, - ACTIONS(4781), 2, + ACTIONS(4938), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1828), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4773), 4, + ACTIONS(4940), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(4934), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4777), 25, + STATE(1846), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(4936), 28, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -170844,48 +171544,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3317] = 16, + [4184] = 10, ACTIONS(4771), 1, sym__backslash_escape, - ACTIONS(4775), 1, - anon_sym_LT, - ACTIONS(4779), 1, - anon_sym_DQUOTE, - ACTIONS(4783), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LPAREN, ACTIONS(4789), 1, sym__newline_token, ACTIONS(4791), 1, sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4906), 1, - anon_sym_RPAREN, - STATE(2344), 1, - sym_link_destination, - STATE(2345), 1, - sym_link_title, - ACTIONS(4781), 2, + ACTIONS(4950), 1, + anon_sym_SQUOTE, + STATE(1890), 1, + sym__soft_line_break, + ACTIONS(4948), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1876), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(4773), 4, + ACTIONS(4944), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4777), 25, + STATE(1840), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(4946), 29, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -170909,51 +171598,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3398] = 16, - ACTIONS(4771), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + [4250] = 10, + ACTIONS(4952), 1, sym__backslash_escape, - ACTIONS(4775), 1, - anon_sym_LT, - ACTIONS(4779), 1, - anon_sym_DQUOTE, - ACTIONS(4783), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4789), 1, - sym__newline_token, - ACTIONS(4791), 1, - sym__whitespace_ge_2, - ACTIONS(4793), 1, - aux_sym__whitespace_token1, - ACTIONS(4908), 1, + ACTIONS(4967), 1, anon_sym_RPAREN, - STATE(2348), 1, - sym_link_destination, - STATE(2349), 1, - sym_link_title, - ACTIONS(4781), 2, + ACTIONS(4972), 1, + aux_sym__whitespace_token1, + ACTIONS(4974), 1, + sym__last_token_punctuation, + ACTIONS(4961), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1876), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(4773), 4, + ACTIONS(4970), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(4955), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4777), 25, + STATE(1893), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(4958), 28, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -170974,48 +171656,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3479] = 16, - ACTIONS(4771), 1, + [4316] = 10, + ACTIONS(4976), 1, sym__backslash_escape, - ACTIONS(4775), 1, - anon_sym_LT, - ACTIONS(4779), 1, - anon_sym_DQUOTE, - ACTIONS(4783), 1, + ACTIONS(4988), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LPAREN, - ACTIONS(4789), 1, + ACTIONS(4990), 1, sym__newline_token, - ACTIONS(4791), 1, + ACTIONS(4993), 1, sym__whitespace_ge_2, - ACTIONS(4793), 1, + ACTIONS(4996), 1, aux_sym__whitespace_token1, - ACTIONS(4910), 1, - anon_sym_RPAREN, - STATE(2389), 1, - sym_link_destination, - STATE(2390), 1, - sym_link_title, - ACTIONS(4781), 2, + STATE(1890), 1, + sym__soft_line_break, + ACTIONS(4985), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1831), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4773), 4, + ACTIONS(4979), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4777), 25, + STATE(1840), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(4982), 29, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -171039,51 +171710,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3560] = 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + [4382] = 10, ACTIONS(4771), 1, sym__backslash_escape, - ACTIONS(4775), 1, - anon_sym_LT, - ACTIONS(4779), 1, - anon_sym_DQUOTE, - ACTIONS(4783), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LPAREN, ACTIONS(4789), 1, sym__newline_token, ACTIONS(4791), 1, sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4912), 1, - anon_sym_RPAREN, - STATE(2391), 1, - sym_link_destination, - STATE(2392), 1, - sym_link_title, - ACTIONS(4781), 2, + ACTIONS(5003), 1, + anon_sym_DQUOTE, + STATE(1885), 1, + sym__soft_line_break, + ACTIONS(5005), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1832), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4773), 4, + ACTIONS(4999), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4777), 25, + STATE(1842), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat1, + ACTIONS(5001), 29, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -171104,51 +171766,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3641] = 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + [4448] = 10, ACTIONS(4771), 1, sym__backslash_escape, - ACTIONS(4775), 1, - anon_sym_LT, - ACTIONS(4779), 1, - anon_sym_DQUOTE, - ACTIONS(4783), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LPAREN, ACTIONS(4789), 1, sym__newline_token, ACTIONS(4791), 1, sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4914), 1, - anon_sym_RPAREN, - STATE(2396), 1, - sym_link_destination, - STATE(2397), 1, - sym_link_title, - ACTIONS(4781), 2, + ACTIONS(4950), 1, + anon_sym_DQUOTE, + STATE(1885), 1, + sym__soft_line_break, + ACTIONS(5005), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1876), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(4773), 4, + ACTIONS(5007), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4777), 25, + STATE(1845), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat1, + ACTIONS(5001), 29, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -171169,51 +171822,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3722] = 16, - ACTIONS(4771), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + [4514] = 10, + ACTIONS(5009), 1, sym__backslash_escape, - ACTIONS(4775), 1, - anon_sym_LT, - ACTIONS(4779), 1, - anon_sym_DQUOTE, - ACTIONS(4783), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4789), 1, - sym__newline_token, - ACTIONS(4791), 1, - sym__whitespace_ge_2, - ACTIONS(4793), 1, - aux_sym__whitespace_token1, - ACTIONS(4916), 1, + ACTIONS(5024), 1, anon_sym_RPAREN, - STATE(2400), 1, - sym_link_destination, - STATE(2401), 1, - sym_link_title, - ACTIONS(4781), 2, + ACTIONS(5029), 1, + aux_sym__whitespace_token1, + ACTIONS(5031), 1, + sym__last_token_punctuation, + ACTIONS(5018), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1876), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(4773), 4, + ACTIONS(5027), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(5012), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4777), 25, + STATE(1893), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(5015), 28, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -171234,48 +171880,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3803] = 16, + [4580] = 10, ACTIONS(4771), 1, sym__backslash_escape, - ACTIONS(4775), 1, - anon_sym_LT, - ACTIONS(4779), 1, - anon_sym_DQUOTE, - ACTIONS(4783), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LPAREN, ACTIONS(4789), 1, sym__newline_token, ACTIONS(4791), 1, sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4918), 1, - anon_sym_RPAREN, - STATE(2398), 1, - sym_link_title, - STATE(2423), 1, - sym_link_destination, - ACTIONS(4781), 2, + ACTIONS(5003), 1, + anon_sym_SQUOTE, + STATE(1890), 1, + sym__soft_line_break, + ACTIONS(4948), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1835), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4773), 4, + ACTIONS(5033), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4777), 25, + STATE(1838), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(4946), 29, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -171299,51 +171934,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3884] = 16, - ACTIONS(4771), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + [4646] = 10, + ACTIONS(5035), 1, sym__backslash_escape, - ACTIONS(4775), 1, - anon_sym_LT, - ACTIONS(4779), 1, + ACTIONS(5044), 1, anon_sym_DQUOTE, - ACTIONS(4783), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LPAREN, - ACTIONS(4789), 1, + ACTIONS(5049), 1, sym__newline_token, - ACTIONS(4791), 1, + ACTIONS(5052), 1, sym__whitespace_ge_2, - ACTIONS(4793), 1, + ACTIONS(5055), 1, aux_sym__whitespace_token1, - ACTIONS(4920), 1, - anon_sym_RPAREN, - STATE(2272), 1, - sym_link_title, - STATE(2425), 1, - sym_link_destination, - ACTIONS(4781), 2, + STATE(1885), 1, + sym__soft_line_break, + ACTIONS(5046), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1807), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1853), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4773), 4, + ACTIONS(5038), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4777), 25, + STATE(1845), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat1, + ACTIONS(5041), 29, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -171364,51 +171990,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3965] = 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + [4712] = 8, ACTIONS(4771), 1, sym__backslash_escape, - ACTIONS(4775), 1, - anon_sym_LT, - ACTIONS(4779), 1, - anon_sym_DQUOTE, - ACTIONS(4783), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4930), 1, anon_sym_LPAREN, - ACTIONS(4789), 1, - sym__newline_token, - ACTIONS(4791), 1, - sym__whitespace_ge_2, - ACTIONS(4793), 1, + ACTIONS(5062), 1, aux_sym__whitespace_token1, - ACTIONS(4922), 1, - anon_sym_RPAREN, - STATE(2287), 1, - sym_link_destination, - STATE(2315), 1, - sym_link_title, - ACTIONS(4781), 2, + ACTIONS(4938), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1853), 3, + ACTIONS(5060), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(5058), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(1851), 4, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1876), 3, - sym__whitespace, + aux_sym_link_destination_repeat2, + ACTIONS(4936), 28, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [4773] = 10, + ACTIONS(5064), 1, + sym__backslash_escape, + ACTIONS(5076), 1, + anon_sym_RPAREN, + ACTIONS(5078), 1, + sym__newline_token, + ACTIONS(5081), 1, + sym__whitespace_ge_2, + ACTIONS(5084), 1, + aux_sym__whitespace_token1, + STATE(1919), 1, sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(4773), 4, + ACTIONS(5073), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5067), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4777), 25, + STATE(1847), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat3, + ACTIONS(5070), 28, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -171429,39 +172100,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [4046] = 13, + [4838] = 8, ACTIONS(4771), 1, sym__backslash_escape, - ACTIONS(4789), 1, - sym__newline_token, - ACTIONS(4791), 1, - sym__whitespace_ge_2, - ACTIONS(4793), 1, - aux_sym__whitespace_token1, ACTIONS(4930), 1, anon_sym_LPAREN, - ACTIONS(4932), 1, - anon_sym_RPAREN, - STATE(1905), 1, - sym__soft_line_break, - ACTIONS(4928), 2, + ACTIONS(5062), 1, + aux_sym__whitespace_token1, + ACTIONS(4938), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1852), 2, - sym__whitespace, - aux_sym_link_title_repeat3, - STATE(1887), 2, - sym__link_destination_parenthesis, - aux_sym_link_destination_repeat2, - STATE(1919), 2, - sym_backslash_escape, - sym__word, - ACTIONS(4924), 4, + ACTIONS(5060), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(5087), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4926), 28, + STATE(1853), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(4936), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -171490,11 +172153,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [4120] = 9, + [4899] = 8, ACTIONS(4771), 1, sym__backslash_escape, - ACTIONS(4825), 1, - sym__last_token_punctuation, ACTIONS(4930), 1, anon_sym_LPAREN, ACTIONS(4942), 1, @@ -171545,36 +172206,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [4184] = 10, - ACTIONS(4944), 1, + [4960] = 10, + ACTIONS(4771), 1, sym__backslash_escape, - ACTIONS(4953), 1, - anon_sym_DQUOTE, - ACTIONS(4958), 1, + ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4961), 1, + ACTIONS(4791), 1, sym__whitespace_ge_2, - ACTIONS(4964), 1, + ACTIONS(4793), 1, aux_sym__whitespace_token1, - STATE(1894), 1, + ACTIONS(5003), 1, + anon_sym_RPAREN, + STATE(1919), 1, sym__soft_line_break, - ACTIONS(4955), 2, + ACTIONS(5093), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4947), 4, + ACTIONS(5089), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1838), 4, + STATE(1852), 4, sym_backslash_escape, sym__whitespace, sym__word, - aux_sym_link_title_repeat1, - ACTIONS(4950), 29, + aux_sym_link_title_repeat3, + ACTIONS(5091), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -171599,36 +172261,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [4250] = 10, - ACTIONS(4967), 1, + [5025] = 8, + ACTIONS(5095), 1, sym__backslash_escape, - ACTIONS(4979), 1, + ACTIONS(5107), 1, anon_sym_LPAREN, - ACTIONS(4982), 1, - anon_sym_RPAREN, - ACTIONS(4987), 1, + ACTIONS(5112), 1, aux_sym__whitespace_token1, - ACTIONS(4989), 1, - sym__last_token_punctuation, - ACTIONS(4976), 2, + ACTIONS(5104), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4985), 2, + ACTIONS(5110), 3, + anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(4970), 4, + ACTIONS(5098), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1887), 4, + STATE(1851), 4, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, aux_sym_link_destination_repeat2, - ACTIONS(4973), 28, + ACTIONS(5101), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -171657,7 +172314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [4316] = 10, + [5086] = 10, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4789), 1, @@ -171666,24 +172323,24 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(4997), 1, - anon_sym_SQUOTE, - STATE(1895), 1, + ACTIONS(4950), 1, + anon_sym_RPAREN, + STATE(1919), 1, sym__soft_line_break, - ACTIONS(4995), 2, + ACTIONS(5093), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4991), 4, + ACTIONS(5114), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1843), 4, + STATE(1847), 4, sym_backslash_escape, sym__whitespace, sym__word, - aux_sym_link_title_repeat2, - ACTIONS(4993), 29, + aux_sym_link_title_repeat3, + ACTIONS(5091), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -171691,6 +172348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -171711,38 +172369,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [4382] = 10, + [5151] = 8, ACTIONS(4771), 1, sym__backslash_escape, - ACTIONS(4789), 1, - sym__newline_token, - ACTIONS(4791), 1, - sym__whitespace_ge_2, - ACTIONS(4793), 1, + ACTIONS(4930), 1, + anon_sym_LPAREN, + ACTIONS(5118), 1, aux_sym__whitespace_token1, - ACTIONS(5003), 1, - anon_sym_DQUOTE, - STATE(1894), 1, - sym__soft_line_break, - ACTIONS(5005), 2, + ACTIONS(4938), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4999), 4, + ACTIONS(5116), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(5058), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1844), 4, + STATE(1851), 4, sym_backslash_escape, - sym__whitespace, + sym__link_destination_parenthesis, sym__word, - aux_sym_link_title_repeat1, - ACTIONS(5001), 29, + aux_sym_link_destination_repeat2, + ACTIONS(4936), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -171767,35 +172422,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [4448] = 10, - ACTIONS(4771), 1, - sym__backslash_escape, - ACTIONS(4789), 1, + [5212] = 8, + ACTIONS(5122), 1, sym__newline_token, - ACTIONS(4791), 1, + ACTIONS(5124), 1, sym__whitespace_ge_2, - ACTIONS(4793), 1, + ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(5003), 1, - anon_sym_SQUOTE, - STATE(1895), 1, - sym__soft_line_break, - ACTIONS(4995), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5007), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5130), 1, + sym__code_span_close, + STATE(1857), 1, + aux_sym_code_span_repeat1, + ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1840), 4, - sym_backslash_escape, + STATE(1929), 4, sym__whitespace, sym__word, - aux_sym_link_title_repeat2, - ACTIONS(4993), 29, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5120), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -171803,6 +172449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -171815,6 +172463,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__, @@ -171825,33 +172474,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [4514] = 10, - ACTIONS(5009), 1, - sym__backslash_escape, - ACTIONS(5021), 1, - anon_sym_SQUOTE, - ACTIONS(5023), 1, + [5272] = 8, + ACTIONS(5122), 1, sym__newline_token, - ACTIONS(5026), 1, + ACTIONS(5124), 1, sym__whitespace_ge_2, - ACTIONS(5029), 1, + ACTIONS(5126), 1, aux_sym__whitespace_token1, - STATE(1895), 1, - sym__soft_line_break, - ACTIONS(5018), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5012), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5132), 1, + sym__code_span_close, + STATE(1865), 1, + aux_sym_code_span_repeat1, + ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1843), 4, - sym_backslash_escape, + STATE(1929), 4, sym__whitespace, sym__word, - aux_sym_link_title_repeat2, - ACTIONS(5015), 29, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5120), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -171859,6 +172501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -171871,6 +172515,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__, @@ -171881,39 +172526,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [4580] = 10, - ACTIONS(4771), 1, - sym__backslash_escape, - ACTIONS(4789), 1, + [5332] = 8, + ACTIONS(5122), 1, sym__newline_token, - ACTIONS(4791), 1, + ACTIONS(5124), 1, sym__whitespace_ge_2, - ACTIONS(4793), 1, + ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(4997), 1, - anon_sym_DQUOTE, - STATE(1894), 1, - sym__soft_line_break, - ACTIONS(5005), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5032), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5134), 1, + sym__code_span_close, + STATE(1882), 1, + aux_sym_code_span_repeat1, + ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1838), 4, - sym_backslash_escape, + STATE(1929), 4, sym__whitespace, sym__word, - aux_sym_link_title_repeat1, - ACTIONS(5001), 29, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5120), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -171927,6 +172567,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__, @@ -171937,34 +172578,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [4646] = 10, - ACTIONS(5034), 1, - sym__backslash_escape, - ACTIONS(5046), 1, - anon_sym_LPAREN, - ACTIONS(5049), 1, - anon_sym_RPAREN, - ACTIONS(5054), 1, - aux_sym__whitespace_token1, - ACTIONS(5056), 1, - sym__last_token_punctuation, - ACTIONS(5043), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5052), 2, + [5392] = 8, + ACTIONS(5122), 1, sym__newline_token, + ACTIONS(5124), 1, sym__whitespace_ge_2, - ACTIONS(5037), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5126), 1, + aux_sym__whitespace_token1, + ACTIONS(5136), 1, + sym__code_span_close, + STATE(1860), 1, + aux_sym_code_span_repeat1, + ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1887), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, + STATE(1929), 4, + sym__whitespace, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(5040), 28, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5120), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -171972,6 +172605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -171985,6 +172619,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__, @@ -171993,31 +172628,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [4712] = 8, - ACTIONS(4771), 1, - sym__backslash_escape, - ACTIONS(4930), 1, anon_sym_LPAREN, - ACTIONS(5062), 1, - aux_sym__whitespace_token1, - ACTIONS(4938), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5060), 3, anon_sym_RPAREN, + [5452] = 8, + ACTIONS(5122), 1, sym__newline_token, + ACTIONS(5124), 1, sym__whitespace_ge_2, - ACTIONS(5058), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5126), 1, + aux_sym__whitespace_token1, + ACTIONS(5138), 1, + sym__code_span_close, + STATE(1861), 1, + aux_sym_code_span_repeat1, + ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1848), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, + STATE(1929), 4, + sym__whitespace, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4936), 28, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5120), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -172025,6 +172657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -172038,6 +172671,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__, @@ -172046,31 +172680,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [4773] = 8, - ACTIONS(4771), 1, - sym__backslash_escape, - ACTIONS(4930), 1, anon_sym_LPAREN, - ACTIONS(5062), 1, - aux_sym__whitespace_token1, - ACTIONS(4938), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5060), 3, anon_sym_RPAREN, + [5512] = 8, + ACTIONS(5122), 1, sym__newline_token, + ACTIONS(5124), 1, sym__whitespace_ge_2, - ACTIONS(5064), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5126), 1, + aux_sym__whitespace_token1, + ACTIONS(5140), 1, + sym__code_span_close, + STATE(1863), 1, + aux_sym_code_span_repeat1, + ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1850), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, + STATE(1929), 4, + sym__whitespace, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4936), 28, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5120), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -172078,6 +172709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -172091,6 +172723,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__, @@ -172099,31 +172732,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [4834] = 8, - ACTIONS(5066), 1, - sym__backslash_escape, - ACTIONS(5078), 1, anon_sym_LPAREN, - ACTIONS(5083), 1, - aux_sym__whitespace_token1, - ACTIONS(5075), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5081), 3, anon_sym_RPAREN, + [5572] = 8, + ACTIONS(5145), 1, sym__newline_token, + ACTIONS(5148), 1, sym__whitespace_ge_2, - ACTIONS(5069), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5151), 1, + aux_sym__whitespace_token1, + ACTIONS(5157), 1, + sym__code_span_close, + STATE(1860), 1, + aux_sym_code_span_repeat1, + ACTIONS(5154), 2, sym__word_no_digit, sym__digits, - STATE(1848), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, + STATE(1929), 4, + sym__whitespace, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(5072), 28, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5142), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -172131,6 +172761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -172144,6 +172775,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__, @@ -172152,33 +172784,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [4895] = 10, - ACTIONS(5085), 1, - sym__backslash_escape, - ACTIONS(5097), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(5099), 1, + [5632] = 8, + ACTIONS(5122), 1, sym__newline_token, - ACTIONS(5102), 1, + ACTIONS(5124), 1, sym__whitespace_ge_2, - ACTIONS(5105), 1, + ACTIONS(5126), 1, aux_sym__whitespace_token1, - STATE(1905), 1, - sym__soft_line_break, - ACTIONS(5094), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5088), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5159), 1, + sym__code_span_close, + STATE(1860), 1, + aux_sym_code_span_repeat1, + ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1849), 4, - sym_backslash_escape, + STATE(1929), 4, sym__whitespace, sym__word, - aux_sym_link_title_repeat3, - ACTIONS(5091), 28, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5120), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -172186,6 +172813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -172199,6 +172827,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__, @@ -172207,31 +172836,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [4960] = 8, - ACTIONS(4771), 1, - sym__backslash_escape, - ACTIONS(4930), 1, anon_sym_LPAREN, - ACTIONS(5110), 1, - aux_sym__whitespace_token1, - ACTIONS(4938), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5108), 3, anon_sym_RPAREN, + [5692] = 8, + ACTIONS(5122), 1, sym__newline_token, + ACTIONS(5124), 1, sym__whitespace_ge_2, - ACTIONS(5058), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5126), 1, + aux_sym__whitespace_token1, + ACTIONS(5161), 1, + sym__code_span_close, + STATE(1877), 1, + aux_sym_code_span_repeat1, + ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1848), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, + STATE(1929), 4, + sym__whitespace, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4936), 28, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5120), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -172239,6 +172865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -172252,6 +172879,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__, @@ -172260,33 +172888,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [5021] = 10, - ACTIONS(4771), 1, - sym__backslash_escape, - ACTIONS(4789), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + [5752] = 8, + ACTIONS(5122), 1, sym__newline_token, - ACTIONS(4791), 1, + ACTIONS(5124), 1, sym__whitespace_ge_2, - ACTIONS(4793), 1, + ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(5003), 1, - anon_sym_RPAREN, - STATE(1905), 1, - sym__soft_line_break, - ACTIONS(5116), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5112), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5163), 1, + sym__code_span_close, + STATE(1860), 1, + aux_sym_code_span_repeat1, + ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1852), 4, - sym_backslash_escape, + STATE(1929), 4, sym__whitespace, sym__word, - aux_sym_link_title_repeat3, - ACTIONS(5114), 28, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5120), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -172294,6 +172917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -172307,6 +172931,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__, @@ -172315,35 +172940,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [5086] = 10, - ACTIONS(4771), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + [5812] = 8, + ACTIONS(5165), 1, sym__backslash_escape, - ACTIONS(4789), 1, - sym__newline_token, - ACTIONS(4791), 1, + ACTIONS(5171), 1, + anon_sym_GT, + ACTIONS(5179), 1, sym__whitespace_ge_2, - ACTIONS(4793), 1, + ACTIONS(5182), 1, aux_sym__whitespace_token1, - ACTIONS(4997), 1, - anon_sym_RPAREN, - STATE(1905), 1, - sym__soft_line_break, - ACTIONS(5116), 2, + ACTIONS(5176), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5118), 4, + ACTIONS(5168), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1849), 4, + STATE(1864), 5, sym_backslash_escape, + sym__text_no_angle, sym__whitespace, sym__word, - aux_sym_link_title_repeat3, - ACTIONS(5114), 28, - anon_sym_LT, - anon_sym_GT, + aux_sym_link_destination_repeat1, + ACTIONS(5173), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -172370,31 +172992,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [5151] = 8, - ACTIONS(4771), 1, - sym__backslash_escape, - ACTIONS(4930), 1, anon_sym_LPAREN, - ACTIONS(4942), 1, - aux_sym__whitespace_token1, - ACTIONS(4938), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4940), 3, anon_sym_RPAREN, + [5872] = 8, + ACTIONS(5122), 1, sym__newline_token, + ACTIONS(5124), 1, sym__whitespace_ge_2, - ACTIONS(4934), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5126), 1, + aux_sym__whitespace_token1, + ACTIONS(5185), 1, + sym__code_span_close, + STATE(1860), 1, + aux_sym_code_span_repeat1, + ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1846), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, + STATE(1929), 4, + sym__whitespace, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4936), 28, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5120), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -172402,6 +173021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -172415,6 +173035,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__, @@ -172423,21 +173044,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [5212] = 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + [5932] = 8, ACTIONS(5122), 1, sym__newline_token, ACTIONS(5124), 1, sym__whitespace_ge_2, ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(5130), 1, + ACTIONS(5187), 1, sym__code_span_close, - STATE(1881), 1, + STATE(1867), 1, aux_sym_code_span_repeat1, ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, + STATE(1929), 4, sym__whitespace, sym__word, sym__soft_line_break, @@ -172475,21 +173098,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5272] = 8, + [5992] = 8, ACTIONS(5122), 1, sym__newline_token, ACTIONS(5124), 1, sym__whitespace_ge_2, ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(5132), 1, + ACTIONS(5189), 1, sym__code_span_close, - STATE(1857), 1, + STATE(1860), 1, aux_sym_code_span_repeat1, ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, + STATE(1929), 4, sym__whitespace, sym__word, sym__soft_line_break, @@ -172527,21 +173150,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5332] = 8, + [6052] = 8, ACTIONS(5122), 1, sym__newline_token, ACTIONS(5124), 1, sym__whitespace_ge_2, ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(5134), 1, + ACTIONS(5191), 1, sym__code_span_close, - STATE(1881), 1, + STATE(1869), 1, aux_sym_code_span_repeat1, ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, + STATE(1929), 4, sym__whitespace, sym__word, sym__soft_line_break, @@ -172579,21 +173202,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5392] = 8, + [6112] = 8, ACTIONS(5122), 1, sym__newline_token, ACTIONS(5124), 1, sym__whitespace_ge_2, ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(5136), 1, + ACTIONS(5193), 1, sym__code_span_close, - STATE(1881), 1, + STATE(1860), 1, aux_sym_code_span_repeat1, ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, + STATE(1929), 4, sym__whitespace, sym__word, sym__soft_line_break, @@ -172631,30 +173254,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5452] = 8, + [6172] = 8, ACTIONS(4771), 1, sym__backslash_escape, ACTIONS(4791), 1, sym__whitespace_ge_2, ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(5140), 1, + ACTIONS(5197), 1, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5201), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5138), 4, + ACTIONS(5195), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1863), 5, + STATE(1880), 5, sym_backslash_escape, sym__text_no_angle, sym__whitespace, sym__word, aux_sym_link_destination_repeat1, - ACTIONS(5142), 28, + ACTIONS(5199), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -172683,21 +173306,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5512] = 8, + [6232] = 8, ACTIONS(5122), 1, sym__newline_token, ACTIONS(5124), 1, sym__whitespace_ge_2, ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(5146), 1, + ACTIONS(5203), 1, sym__code_span_close, - STATE(1881), 1, + STATE(1860), 1, aux_sym_code_span_repeat1, ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, + STATE(1929), 4, sym__whitespace, sym__word, sym__soft_line_break, @@ -172735,21 +173358,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5572] = 8, + [6292] = 8, ACTIONS(5122), 1, sym__newline_token, ACTIONS(5124), 1, sym__whitespace_ge_2, ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(5148), 1, + ACTIONS(5205), 1, sym__code_span_close, - STATE(1862), 1, + STATE(1873), 1, aux_sym_code_span_repeat1, ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, + STATE(1929), 4, sym__whitespace, sym__word, sym__soft_line_break, @@ -172787,21 +173410,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5632] = 8, + [6352] = 8, ACTIONS(5122), 1, sym__newline_token, ACTIONS(5124), 1, sym__whitespace_ge_2, ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(5150), 1, + ACTIONS(5207), 1, sym__code_span_close, - STATE(1881), 1, + STATE(1860), 1, aux_sym_code_span_repeat1, ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, + STATE(1929), 4, sym__whitespace, sym__word, sym__soft_line_break, @@ -172839,26 +173462,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5692] = 8, - ACTIONS(5122), 1, + [6412] = 6, + ACTIONS(5213), 1, sym__newline_token, - ACTIONS(5124), 1, + ACTIONS(5216), 1, sym__whitespace_ge_2, - ACTIONS(5126), 1, + ACTIONS(5219), 1, aux_sym__whitespace_token1, - ACTIONS(5152), 1, - sym__code_span_close, - STATE(1881), 1, - aux_sym_code_span_repeat1, - ACTIONS(5128), 2, - sym__word_no_digit, - sym__digits, - STATE(1933), 4, + ACTIONS(5211), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1874), 3, sym__whitespace, - sym__word, sym__soft_line_break, - sym__code_span_text_base, - ACTIONS(5120), 32, + aux_sym_inline_link_repeat1, + ACTIONS(5209), 35, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -172866,7 +173487,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -172880,7 +173500,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__, @@ -172891,73 +173510,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5752] = 8, - ACTIONS(5154), 1, - sym__backslash_escape, - ACTIONS(5160), 1, - anon_sym_GT, - ACTIONS(5168), 1, - sym__whitespace_ge_2, - ACTIONS(5171), 1, - aux_sym__whitespace_token1, - ACTIONS(5165), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5157), 4, - sym_entity_reference, - sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1863), 5, - sym_backslash_escape, - sym__text_no_angle, - sym__whitespace, - sym__word, - aux_sym_link_destination_repeat1, - ACTIONS(5162), 28, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [5812] = 8, + [6468] = 8, ACTIONS(5122), 1, sym__newline_token, ACTIONS(5124), 1, sym__whitespace_ge_2, ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(5174), 1, + ACTIONS(5222), 1, sym__code_span_close, - STATE(1881), 1, + STATE(1878), 1, aux_sym_code_span_repeat1, ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, + STATE(1929), 4, sym__whitespace, sym__word, sym__soft_line_break, @@ -172995,21 +173564,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5872] = 8, + [6528] = 8, ACTIONS(5122), 1, sym__newline_token, ACTIONS(5124), 1, sym__whitespace_ge_2, ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(5176), 1, + ACTIONS(5224), 1, sym__code_span_close, - STATE(1867), 1, + STATE(1881), 1, aux_sym_code_span_repeat1, ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, + STATE(1929), 4, sym__whitespace, sym__word, sym__soft_line_break, @@ -173047,21 +173616,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5932] = 8, + [6588] = 8, ACTIONS(5122), 1, sym__newline_token, ACTIONS(5124), 1, sym__whitespace_ge_2, ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(5178), 1, + ACTIONS(5226), 1, sym__code_span_close, - STATE(1864), 1, + STATE(1860), 1, aux_sym_code_span_repeat1, ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, + STATE(1929), 4, sym__whitespace, sym__word, sym__soft_line_break, @@ -173099,21 +173668,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5992] = 8, + [6648] = 8, ACTIONS(5122), 1, sym__newline_token, ACTIONS(5124), 1, sym__whitespace_ge_2, ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, + ACTIONS(5228), 1, sym__code_span_close, - STATE(1881), 1, + STATE(1860), 1, aux_sym_code_span_repeat1, ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, + STATE(1929), 4, sym__whitespace, sym__word, sym__soft_line_break, @@ -173151,21 +173720,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [6052] = 8, + [6708] = 8, ACTIONS(5122), 1, sym__newline_token, ACTIONS(5124), 1, sym__whitespace_ge_2, ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(5182), 1, + ACTIONS(5230), 1, sym__code_span_close, - STATE(1861), 1, + STATE(1871), 1, aux_sym_code_span_repeat1, ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, + STATE(1929), 4, sym__whitespace, sym__word, sym__soft_line_break, @@ -173203,86 +173772,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [6112] = 8, - ACTIONS(5122), 1, - sym__newline_token, - ACTIONS(5124), 1, + [6768] = 8, + ACTIONS(4771), 1, + sym__backslash_escape, + ACTIONS(4791), 1, sym__whitespace_ge_2, - ACTIONS(5126), 1, + ACTIONS(4793), 1, aux_sym__whitespace_token1, - ACTIONS(5184), 1, - sym__code_span_close, - STATE(1870), 1, - aux_sym_code_span_repeat1, - ACTIONS(5128), 2, - sym__word_no_digit, - sym__digits, - STATE(1933), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__code_span_text_base, - ACTIONS(5120), 32, - anon_sym_LT, + ACTIONS(5234), 1, anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, + ACTIONS(5201), 2, anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [6172] = 8, - ACTIONS(5122), 1, - sym__newline_token, - ACTIONS(5124), 1, - sym__whitespace_ge_2, - ACTIONS(5126), 1, - aux_sym__whitespace_token1, - ACTIONS(5186), 1, - sym__code_span_close, - STATE(1881), 1, - aux_sym_code_span_repeat1, - ACTIONS(5128), 2, + ACTIONS(5232), 4, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1933), 4, + STATE(1864), 5, + sym_backslash_escape, + sym__text_no_angle, sym__whitespace, sym__word, - sym__soft_line_break, - sym__code_span_text_base, - ACTIONS(5120), 32, - anon_sym_LT, - anon_sym_GT, + aux_sym_link_destination_repeat1, + ACTIONS(5199), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -173296,7 +173814,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__, @@ -173307,21 +173824,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [6232] = 8, + [6828] = 8, ACTIONS(5122), 1, sym__newline_token, ACTIONS(5124), 1, sym__whitespace_ge_2, ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(5188), 1, + ACTIONS(5236), 1, sym__code_span_close, - STATE(1859), 1, + STATE(1860), 1, aux_sym_code_span_repeat1, ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, + STATE(1929), 4, sym__whitespace, sym__word, sym__soft_line_break, @@ -173359,21 +173876,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [6292] = 8, + [6888] = 8, ACTIONS(5122), 1, sym__newline_token, ACTIONS(5124), 1, sym__whitespace_ge_2, ACTIONS(5126), 1, aux_sym__whitespace_token1, - ACTIONS(5190), 1, + ACTIONS(5238), 1, sym__code_span_close, - STATE(1856), 1, + STATE(1860), 1, aux_sym_code_span_repeat1, ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, + STATE(1929), 4, sym__whitespace, sym__word, sym__soft_line_break, @@ -173411,26 +173928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [6352] = 8, - ACTIONS(5122), 1, - sym__newline_token, - ACTIONS(5124), 1, - sym__whitespace_ge_2, - ACTIONS(5126), 1, + [6948] = 3, + ACTIONS(5246), 1, + sym__last_token_punctuation, + ACTIONS(5243), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5192), 1, - sym__code_span_close, - STATE(1875), 1, - aux_sym_code_span_repeat1, - ACTIONS(5128), 2, - sym__word_no_digit, - sym__digits, - STATE(1933), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__code_span_text_base, - ACTIONS(5120), 32, + ACTIONS(5240), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -173438,7 +173946,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -173452,7 +173959,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__, @@ -173463,26 +173969,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [6412] = 8, - ACTIONS(5122), 1, sym__newline_token, - ACTIONS(5124), 1, sym__whitespace_ge_2, - ACTIONS(5126), 1, - aux_sym__whitespace_token1, - ACTIONS(5194), 1, - sym__code_span_close, - STATE(1878), 1, - aux_sym_code_span_repeat1, - ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__code_span_text_base, - ACTIONS(5120), 32, + [6996] = 3, + ACTIONS(5031), 1, + sym__last_token_punctuation, + ACTIONS(5029), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(5027), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -173490,7 +173991,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -173504,7 +174004,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__, @@ -173515,26 +174014,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [6472] = 8, - ACTIONS(5122), 1, sym__newline_token, - ACTIONS(5124), 1, sym__whitespace_ge_2, - ACTIONS(5126), 1, - aux_sym__whitespace_token1, - ACTIONS(5196), 1, - sym__code_span_close, - STATE(1881), 1, - aux_sym_code_span_repeat1, - ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, - sym__whitespace, - sym__word, + [7044] = 4, + ACTIONS(5248), 1, + sym__newline_token, + STATE(2820), 1, sym__soft_line_break, - sym__code_span_text_base, - ACTIONS(5120), 32, + ACTIONS(5029), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(5027), 36, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -173542,7 +174038,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -173556,7 +174051,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__, @@ -173567,21 +174061,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [6532] = 6, - ACTIONS(5202), 1, - sym__newline_token, - ACTIONS(5205), 1, sym__whitespace_ge_2, - ACTIONS(5208), 1, - aux_sym__whitespace_token1, - ACTIONS(5200), 2, + sym__word_no_digit, + sym__digits, + [7094] = 3, + ACTIONS(5251), 1, + sym__last_token_whitespace, + ACTIONS(4399), 3, anon_sym_AMP, anon_sym_BSLASH, - STATE(1876), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(5198), 35, + aux_sym__whitespace_token1, + ACTIONS(4397), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -173615,28 +174105,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__word_no_digit, - sym__digits, - [6588] = 8, - ACTIONS(5122), 1, sym__newline_token, - ACTIONS(5124), 1, sym__whitespace_ge_2, - ACTIONS(5126), 1, - aux_sym__whitespace_token1, - ACTIONS(5211), 1, - sym__code_span_close, - STATE(1880), 1, - aux_sym_code_span_repeat1, - ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__code_span_text_base, - ACTIONS(5120), 32, + [7142] = 5, + ACTIONS(5260), 1, + aux_sym__whitespace_token1, + ACTIONS(5263), 1, + sym__last_token_punctuation, + ACTIONS(5255), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5257), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(5253), 34, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -173644,7 +174132,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -173658,7 +174145,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__, @@ -173668,27 +174154,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LPAREN, + sym__word_no_digit, + sym__digits, + [7194] = 7, + ACTIONS(4771), 1, + sym__backslash_escape, + ACTIONS(4930), 1, + anon_sym_LPAREN, + ACTIONS(5267), 1, anon_sym_RPAREN, - [6648] = 8, - ACTIONS(5122), 1, - sym__newline_token, - ACTIONS(5124), 1, - sym__whitespace_ge_2, - ACTIONS(5126), 1, - aux_sym__whitespace_token1, - ACTIONS(5213), 1, - sym__code_span_close, - STATE(1881), 1, - aux_sym_code_span_repeat1, - ACTIONS(5128), 2, + ACTIONS(4938), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5265), 4, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1933), 4, - sym__whitespace, + STATE(1893), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, sym__word, - sym__soft_line_break, - sym__code_span_text_base, - ACTIONS(5120), 32, + aux_sym_link_destination_repeat2, + ACTIONS(4936), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -173696,7 +174184,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -173710,7 +174197,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__, @@ -173719,28 +174205,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [6708] = 8, - ACTIONS(5122), 1, - sym__newline_token, - ACTIONS(5124), 1, - sym__whitespace_ge_2, - ACTIONS(5126), 1, + [7250] = 3, + ACTIONS(5269), 1, + sym__last_token_whitespace, + ACTIONS(4339), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5215), 1, - sym__code_span_close, - STATE(1854), 1, - aux_sym_code_span_repeat1, - ACTIONS(5128), 2, - sym__word_no_digit, - sym__digits, - STATE(1933), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__code_span_text_base, - ACTIONS(5120), 32, + ACTIONS(4337), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -173748,7 +174223,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -173762,7 +174236,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__, @@ -173773,26 +174246,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [6768] = 8, - ACTIONS(5122), 1, sym__newline_token, - ACTIONS(5124), 1, sym__whitespace_ge_2, - ACTIONS(5126), 1, - aux_sym__whitespace_token1, - ACTIONS(5217), 1, - sym__code_span_close, - STATE(1881), 1, - aux_sym_code_span_repeat1, - ACTIONS(5128), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, - sym__whitespace, - sym__word, + [7298] = 4, + ACTIONS(5271), 1, + sym__newline_token, + STATE(2768), 1, sym__soft_line_break, - sym__code_span_text_base, - ACTIONS(5120), 32, + ACTIONS(4972), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4970), 36, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -173800,7 +174270,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -173814,7 +174283,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__, @@ -173825,26 +174293,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [6828] = 8, - ACTIONS(5222), 1, - sym__newline_token, - ACTIONS(5225), 1, sym__whitespace_ge_2, - ACTIONS(5228), 1, - aux_sym__whitespace_token1, - ACTIONS(5234), 1, - sym__code_span_close, - STATE(1881), 1, - aux_sym_code_span_repeat1, - ACTIONS(5231), 2, sym__word_no_digit, sym__digits, - STATE(1933), 4, - sym__whitespace, - sym__word, - sym__soft_line_break, - sym__code_span_text_base, - ACTIONS(5219), 32, + [7348] = 3, + ACTIONS(5263), 1, + sym__last_token_punctuation, + ACTIONS(5255), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(5253), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -173852,7 +174314,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -173866,7 +174327,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__, @@ -173877,30 +174337,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [6888] = 8, - ACTIONS(4771), 1, - sym__backslash_escape, - ACTIONS(4791), 1, + sym__newline_token, sym__whitespace_ge_2, - ACTIONS(4793), 1, + sym__word_no_digit, + sym__digits, + [7396] = 6, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, aux_sym__whitespace_token1, - ACTIONS(5238), 1, - anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5284), 1, + sym__last_token_punctuation, + ACTIONS(5277), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5236), 4, + ACTIONS(5280), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(5274), 34, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - STATE(1858), 5, - sym_backslash_escape, - sym__text_no_angle, - sym__whitespace, - sym__word, - aux_sym_link_destination_repeat1, - ACTIONS(5142), 28, + anon_sym_LT, + anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -173927,25 +174386,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, - [6948] = 6, - ACTIONS(5246), 1, + sym__word_no_digit, + sym__digits, + [7450] = 7, + ACTIONS(4771), 1, + sym__backslash_escape, + ACTIONS(4930), 1, anon_sym_LPAREN, - ACTIONS(5250), 1, - aux_sym__whitespace_token1, - ACTIONS(5252), 1, - sym__last_token_punctuation, - ACTIONS(5243), 2, + ACTIONS(5286), 1, + anon_sym_RPAREN, + ACTIONS(4938), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5248), 2, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(5240), 34, - sym__backslash_escape, + ACTIONS(5058), 4, sym_entity_reference, sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(1851), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(4936), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -173974,22 +174438,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RPAREN, - sym__word_no_digit, - sym__digits, - [7002] = 5, - ACTIONS(5259), 1, - aux_sym__whitespace_token1, - ACTIONS(5262), 1, + [7506] = 3, + ACTIONS(5294), 1, sym__last_token_punctuation, - ACTIONS(5254), 2, + ACTIONS(5291), 3, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5256), 3, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(5246), 34, + aux_sym__whitespace_token1, + ACTIONS(5288), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -174022,16 +174478,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7054] = 3, - ACTIONS(5262), 1, + [7554] = 3, + ACTIONS(4974), 1, sym__last_token_punctuation, - ACTIONS(5254), 3, + ACTIONS(4972), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5246), 37, + ACTIONS(4970), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -174069,14 +174528,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7102] = 3, - ACTIONS(5270), 1, - sym__last_token_punctuation, - ACTIONS(5267), 3, + [7602] = 2, + ACTIONS(4641), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5264), 37, + ACTIONS(4639), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -174114,27 +174571,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7150] = 7, - ACTIONS(4771), 1, - sym__backslash_escape, - ACTIONS(4930), 1, - anon_sym_LPAREN, - ACTIONS(5272), 1, - anon_sym_RPAREN, - ACTIONS(4938), 2, - anon_sym_AMP, + [7647] = 6, + ACTIONS(5298), 1, + anon_sym_SQUOTE, + ACTIONS(5300), 1, anon_sym_BSLASH, - ACTIONS(5058), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5302), 1, + sym__newline_token, + STATE(1906), 3, + sym__word, + sym__soft_line_break, + aux_sym_key_value_value_repeat1, + ACTIONS(5304), 4, + sym__commonmark_whitespace, + anon_sym_BSLASH_SQUOTE, sym__word_no_digit, sym__digits, - STATE(1848), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4936), 28, + ACTIONS(5296), 30, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -174142,7 +174595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_SQUOTE, + anon_sym_AMP, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -174163,24 +174616,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [7206] = 3, - ACTIONS(5280), 1, - sym__last_token_punctuation, - ACTIONS(5277), 3, - anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + [7700] = 6, + ACTIONS(5298), 1, + anon_sym_DQUOTE, + ACTIONS(5308), 1, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(5274), 37, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5310), 1, + sym__newline_token, + STATE(1917), 3, + sym__word, + sym__soft_line_break, + aux_sym_key_value_value_repeat2, + ACTIONS(5312), 4, + sym__commonmark_whitespace, + anon_sym_BSLASH_DQUOTE, + sym__word_no_digit, + sym__digits, + ACTIONS(5306), 30, anon_sym_LT, anon_sym_GT, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -174204,31 +174665,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [7254] = 7, - ACTIONS(4771), 1, - sym__backslash_escape, - ACTIONS(4930), 1, - anon_sym_LPAREN, - ACTIONS(5284), 1, - anon_sym_RPAREN, - ACTIONS(4938), 2, + [7753] = 2, + ACTIONS(5291), 3, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5282), 4, + aux_sym__whitespace_token1, + ACTIONS(5288), 37, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - STATE(1887), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4936), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -174257,14 +174702,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [7310] = 3, - ACTIONS(5056), 1, - sym__last_token_punctuation, - ACTIONS(5054), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7798] = 2, + ACTIONS(5317), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5052), 37, + ACTIONS(5314), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -174302,14 +174751,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7358] = 3, - ACTIONS(5286), 1, - sym__last_token_whitespace, - ACTIONS(4395), 3, + [7843] = 2, + ACTIONS(5112), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4393), 37, + ACTIONS(5110), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -174347,14 +174794,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7406] = 3, - ACTIONS(4989), 1, - sym__last_token_punctuation, - ACTIONS(4987), 3, + [7888] = 2, + ACTIONS(5320), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4985), 37, + ACTIONS(5044), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -174392,14 +174837,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7454] = 3, - ACTIONS(5288), 1, - sym__last_token_whitespace, - ACTIONS(4331), 3, + [7933] = 2, + ACTIONS(5324), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4329), 37, + ACTIONS(5322), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -174437,16 +174880,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7502] = 4, - ACTIONS(5290), 1, - sym__newline_token, - STATE(2758), 1, - sym__soft_line_break, - ACTIONS(5054), 3, + [7978] = 2, + ACTIONS(4637), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5052), 36, + ACTIONS(4635), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -174480,67 +174919,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [7552] = 4, - ACTIONS(5293), 1, sym__newline_token, - STATE(2806), 1, - sym__soft_line_break, - ACTIONS(4987), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4985), 36, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7602] = 6, - ACTIONS(5298), 1, - anon_sym_SQUOTE, + [8023] = 6, ACTIONS(5300), 1, anon_sym_BSLASH, ACTIONS(5302), 1, sym__newline_token, - STATE(1899), 3, + ACTIONS(5326), 1, + anon_sym_SQUOTE, + STATE(1897), 3, sym__word, sym__soft_line_break, aux_sym_key_value_value_repeat1, - ACTIONS(5304), 4, + ACTIONS(5328), 4, sym__commonmark_whitespace, anon_sym_BSLASH_SQUOTE, sym__word_no_digit, @@ -174576,15 +174970,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [7655] = 2, - ACTIONS(5309), 3, - anon_sym_AMP, + [8076] = 6, + ACTIONS(5333), 1, + anon_sym_SQUOTE, + ACTIONS(5335), 1, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(5306), 37, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5338), 1, + sym__newline_token, + STATE(1906), 3, + sym__word, + sym__soft_line_break, + aux_sym_key_value_value_repeat1, + ACTIONS(5341), 4, + sym__commonmark_whitespace, + anon_sym_BSLASH_SQUOTE, + sym__word_no_digit, + sym__digits, + ACTIONS(5330), 30, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -174592,7 +174994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_SQUOTE, + anon_sym_AMP, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -174615,16 +175017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [8129] = 5, + ACTIONS(5110), 1, + anon_sym_LPAREN, + ACTIONS(5350), 1, + aux_sym__whitespace_token1, + ACTIONS(5076), 2, sym__newline_token, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [7700] = 2, - ACTIONS(5314), 3, + ACTIONS(5347), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(5312), 37, + ACTIONS(5344), 34, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -174656,65 +175060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7745] = 6, - ACTIONS(5319), 1, - anon_sym_SQUOTE, - ACTIONS(5321), 1, - anon_sym_BSLASH, - ACTIONS(5324), 1, - sym__newline_token, - STATE(1899), 3, - sym__word, - sym__soft_line_break, - aux_sym_key_value_value_repeat1, - ACTIONS(5327), 4, - sym__commonmark_whitespace, - anon_sym_BSLASH_SQUOTE, - sym__word_no_digit, - sym__digits, - ACTIONS(5316), 30, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [7798] = 2, - ACTIONS(5333), 3, + [8180] = 2, + ACTIONS(5243), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5330), 37, + ACTIONS(5240), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -174752,17 +175106,18 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7843] = 4, - ACTIONS(5343), 1, + [8225] = 5, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, aux_sym__whitespace_token1, - ACTIONS(5338), 2, + ACTIONS(5277), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5340), 3, - anon_sym_RPAREN, + ACTIONS(5280), 2, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(5336), 34, + ACTIONS(5274), 34, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -174794,15 +175149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, + anon_sym_RPAREN, sym__word_no_digit, sym__digits, - [7892] = 2, - ACTIONS(5348), 3, + [8276] = 2, + ACTIONS(4585), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5346), 37, + ACTIONS(4583), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -174840,12 +175195,17 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7937] = 2, - ACTIONS(5267), 3, + [8321] = 4, + ACTIONS(5359), 1, + aux_sym__whitespace_token1, + ACTIONS(5354), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(5264), 37, + ACTIONS(5356), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(5352), 34, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -174878,17 +175238,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7982] = 2, - ACTIONS(4589), 3, + [8370] = 2, + ACTIONS(5364), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4587), 37, + ACTIONS(5362), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -174926,16 +175283,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8027] = 4, - ACTIONS(5350), 1, - sym__newline_token, - STATE(2759), 1, - sym__soft_line_break, - ACTIONS(5250), 3, + [8415] = 2, + ACTIONS(5368), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5248), 35, + ACTIONS(5366), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -174967,16 +175320,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8076] = 2, - ACTIONS(5353), 3, + [8460] = 2, + ACTIONS(5373), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5021), 37, + ACTIONS(5370), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -175014,14 +175369,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8121] = 3, - ACTIONS(5355), 1, + [8505] = 3, + ACTIONS(5376), 1, sym__last_token_punctuation, - ACTIONS(5250), 3, + ACTIONS(5282), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5248), 36, + ACTIONS(5280), 36, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -175058,59 +175413,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8168] = 6, - ACTIONS(5298), 1, - anon_sym_DQUOTE, - ACTIONS(5359), 1, - anon_sym_BSLASH, - ACTIONS(5361), 1, - sym__newline_token, - STATE(1910), 3, - sym__word, - sym__soft_line_break, - aux_sym_key_value_value_repeat2, - ACTIONS(5363), 4, - sym__commonmark_whitespace, - anon_sym_BSLASH_DQUOTE, - sym__word_no_digit, - sym__digits, - ACTIONS(5357), 30, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [8221] = 2, - ACTIONS(5367), 3, + [8552] = 2, + ACTIONS(5378), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5365), 37, + ACTIONS(4988), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -175148,23 +175456,23 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8266] = 6, - ACTIONS(5372), 1, + [8597] = 6, + ACTIONS(5383), 1, anon_sym_DQUOTE, - ACTIONS(5374), 1, + ACTIONS(5385), 1, anon_sym_BSLASH, - ACTIONS(5377), 1, + ACTIONS(5388), 1, sym__newline_token, - STATE(1910), 3, + STATE(1917), 3, sym__word, sym__soft_line_break, aux_sym_key_value_value_repeat2, - ACTIONS(5380), 4, + ACTIONS(5391), 4, sym__commonmark_whitespace, anon_sym_BSLASH_DQUOTE, sym__word_no_digit, sym__digits, - ACTIONS(5369), 30, + ACTIONS(5380), 30, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -175195,23 +175503,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [8319] = 6, - ACTIONS(5359), 1, + [8650] = 6, + ACTIONS(5308), 1, anon_sym_BSLASH, - ACTIONS(5361), 1, + ACTIONS(5310), 1, sym__newline_token, - ACTIONS(5383), 1, + ACTIONS(5326), 1, anon_sym_DQUOTE, - STATE(1908), 3, + STATE(1898), 3, sym__word, sym__soft_line_break, aux_sym_key_value_value_repeat2, - ACTIONS(5385), 4, + ACTIONS(5394), 4, sym__commonmark_whitespace, anon_sym_BSLASH_DQUOTE, sym__word_no_digit, sym__digits, - ACTIONS(5357), 30, + ACTIONS(5306), 30, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -175242,59 +175550,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [8372] = 6, - ACTIONS(5300), 1, - anon_sym_BSLASH, - ACTIONS(5302), 1, + [8703] = 4, + ACTIONS(5396), 1, sym__newline_token, - ACTIONS(5383), 1, - anon_sym_SQUOTE, - STATE(1896), 3, - sym__word, + STATE(2887), 1, sym__soft_line_break, - aux_sym_key_value_value_repeat1, - ACTIONS(5387), 4, - sym__commonmark_whitespace, - anon_sym_BSLASH_SQUOTE, - sym__word_no_digit, - sym__digits, - ACTIONS(5296), 30, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [8425] = 2, - ACTIONS(4641), 3, + ACTIONS(5282), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4639), 37, + ACTIONS(5280), 35, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -175326,61 +175591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8470] = 2, - ACTIONS(5338), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(5336), 37, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [8515] = 2, - ACTIONS(5277), 3, + [8752] = 2, + ACTIONS(5354), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5274), 37, + ACTIONS(5352), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -175418,62 +175638,17 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8560] = 5, - ACTIONS(5081), 1, - anon_sym_LPAREN, - ACTIONS(5395), 1, - aux_sym__whitespace_token1, - ACTIONS(5097), 2, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(5392), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5389), 34, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_RPAREN, - sym__word_no_digit, - sym__digits, - [8611] = 2, - ACTIONS(4645), 3, + [8797] = 3, + ACTIONS(5403), 1, + sym__last_token_punctuation, + ACTIONS(5401), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4643), 37, + ACTIONS(5399), 35, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -175503,16 +175678,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__newline_token, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8656] = 2, - ACTIONS(5083), 3, + [8843] = 2, + ACTIONS(5350), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5081), 37, + ACTIONS(5076), 36, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -175544,27 +175718,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8701] = 5, - ACTIONS(5246), 1, - anon_sym_LPAREN, - ACTIONS(5250), 1, + [8887] = 3, + ACTIONS(5407), 1, aux_sym__whitespace_token1, - ACTIONS(5243), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5248), 2, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(5240), 34, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5409), 1, + sym__last_token_punctuation, + ACTIONS(5405), 37, + sym__code_span_close, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -175572,46 +175737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_RPAREN, - sym__word_no_digit, - sym__digits, - [8752] = 2, - ACTIONS(5397), 3, anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4953), 37, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, @@ -175625,6 +175751,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__, @@ -175639,12 +175766,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8797] = 3, - ACTIONS(4331), 1, + [8933] = 3, + ACTIONS(4339), 1, aux_sym__whitespace_token1, - ACTIONS(5399), 1, + ACTIONS(5411), 1, sym__last_token_whitespace, - ACTIONS(4329), 37, + ACTIONS(4337), 37, sym__code_span_close, anon_sym_LT, anon_sym_GT, @@ -175682,96 +175809,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8843] = 2, - ACTIONS(5403), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [8979] = 3, + ACTIONS(4399), 1, aux_sym__whitespace_token1, - ACTIONS(5401), 36, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [8887] = 2, - ACTIONS(5395), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(5097), 36, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [8931] = 3, - ACTIONS(4395), 1, - aux_sym__whitespace_token1, - ACTIONS(5405), 1, + ACTIONS(5413), 1, sym__last_token_whitespace, - ACTIONS(4393), 37, + ACTIONS(4397), 37, sym__code_span_close, anon_sym_LT, anon_sym_GT, @@ -175809,17 +175852,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8977] = 3, - ACTIONS(5411), 1, - sym__last_token_punctuation, - ACTIONS(5409), 3, + [9025] = 2, + ACTIONS(5417), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5407), 35, + ACTIONS(5415), 36, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -175847,17 +175889,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, anon_sym_RPAREN, + sym__newline_token, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9023] = 3, - ACTIONS(5415), 1, + [9069] = 2, + ACTIONS(5421), 1, aux_sym__whitespace_token1, - ACTIONS(5417), 1, - sym__last_token_punctuation, - ACTIONS(5413), 37, + ACTIONS(5419), 37, sym__code_span_close, anon_sym_LT, anon_sym_GT, @@ -175895,12 +175935,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9069] = 3, - ACTIONS(4395), 1, + [9112] = 3, + ACTIONS(5425), 1, anon_sym_BSLASH, - ACTIONS(5419), 1, - sym__last_token_whitespace, - ACTIONS(4393), 36, + ACTIONS(5427), 1, + sym__last_token_punctuation, + ACTIONS(5423), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -175937,10 +175977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_DQUOTE, sym__word_no_digit, sym__digits, - [9114] = 2, - ACTIONS(4645), 1, + [9157] = 2, + ACTIONS(5431), 1, aux_sym__whitespace_token1, - ACTIONS(4643), 37, + ACTIONS(5429), 37, sym__code_span_close, anon_sym_LT, anon_sym_GT, @@ -175978,12 +176018,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9157] = 3, - ACTIONS(4395), 1, - anon_sym_BSLASH, - ACTIONS(5421), 1, - sym__last_token_whitespace, - ACTIONS(4393), 36, + [9200] = 2, + ACTIONS(4637), 1, + aux_sym__whitespace_token1, + ACTIONS(4635), 37, + sym__code_span_close, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -176005,6 +176044,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__, @@ -176016,16 +176056,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, - sym__commonmark_whitespace, - anon_sym_BSLASH_SQUOTE, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9202] = 2, - ACTIONS(5425), 3, + [9243] = 2, + ACTIONS(5435), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5423), 35, + ACTIONS(5433), 35, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -176061,53 +176100,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9245] = 2, - ACTIONS(5429), 1, - aux_sym__whitespace_token1, - ACTIONS(5427), 37, - sym__code_span_close, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [9288] = 3, - ACTIONS(5433), 1, + [9286] = 3, + ACTIONS(4399), 1, anon_sym_BSLASH, - ACTIONS(5435), 1, - sym__last_token_punctuation, - ACTIONS(5431), 36, + ACTIONS(5437), 1, + sym__last_token_whitespace, + ACTIONS(4397), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -176141,14 +176139,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, sym__newline_token, sym__commonmark_whitespace, - anon_sym_BSLASH_SQUOTE, + anon_sym_BSLASH_DQUOTE, sym__word_no_digit, sym__digits, - [9333] = 2, + [9331] = 3, + ACTIONS(4399), 1, + anon_sym_BSLASH, ACTIONS(5439), 1, - aux_sym__whitespace_token1, - ACTIONS(5437), 37, - sym__code_span_close, + sym__last_token_whitespace, + ACTIONS(4397), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -176170,7 +176169,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__, @@ -176182,7 +176180,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, - sym__whitespace_ge_2, + sym__commonmark_whitespace, + anon_sym_BSLASH_SQUOTE, sym__word_no_digit, sym__digits, [9376] = 2, @@ -176265,13 +176264,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, sym__newline_token, sym__commonmark_whitespace, - anon_sym_BSLASH_DQUOTE, + anon_sym_BSLASH_SQUOTE, sym__word_no_digit, sym__digits, [9464] = 2, - ACTIONS(4641), 1, + ACTIONS(5447), 1, anon_sym_BSLASH, - ACTIONS(4639), 36, + ACTIONS(5383), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -176309,9 +176308,9 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, [9506] = 2, - ACTIONS(4641), 1, + ACTIONS(4637), 1, anon_sym_BSLASH, - ACTIONS(4639), 36, + ACTIONS(4635), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -176345,13 +176344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, sym__newline_token, sym__commonmark_whitespace, - anon_sym_BSLASH_SQUOTE, + anon_sym_BSLASH_DQUOTE, sym__word_no_digit, sym__digits, [9548] = 2, - ACTIONS(5447), 1, + ACTIONS(5449), 1, anon_sym_BSLASH, - ACTIONS(5372), 36, + ACTIONS(5333), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -176385,13 +176384,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, sym__newline_token, sym__commonmark_whitespace, - anon_sym_BSLASH_DQUOTE, + anon_sym_BSLASH_SQUOTE, sym__word_no_digit, sym__digits, [9590] = 2, - ACTIONS(5449), 1, + ACTIONS(4637), 1, anon_sym_BSLASH, - ACTIONS(5319), 36, + ACTIONS(4635), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -176434,13 +176433,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5457), 1, sym_shortcode_number, ACTIONS(5461), 1, - sym__whitespace_ge_2, + sym__shortcode_open, ACTIONS(5463), 1, - aux_sym__whitespace_token1, + sym__shortcode_close, ACTIONS(5465), 1, - sym__shortcode_open, - STATE(1992), 1, - sym__whitespace, + sym__key_name_and_equals, + STATE(2702), 1, + sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, @@ -176450,25 +176449,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2733), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [9670] = 10, + ACTIONS(5451), 1, + sym_shortcode_name, + ACTIONS(5457), 1, + sym_shortcode_number, ACTIONS(5461), 1, - sym__whitespace_ge_2, - ACTIONS(5463), 1, - aux_sym__whitespace_token1, - ACTIONS(5465), 1, sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(5467), 1, - sym_shortcode_name, - ACTIONS(5469), 1, - sym_shortcode_number, - STATE(1993), 1, - sym__whitespace, + sym__shortcode_close_escaped, + STATE(2702), 1, + sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, @@ -176478,22 +176477,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2729), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [9708] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [9708] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5475), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5469), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176504,22 +176505,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [9743] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [9746] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5477), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5471), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176530,22 +176533,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [9778] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [9784] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5479), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5473), 1, + sym__shortcode_close, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176556,22 +176561,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [9813] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [9822] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5481), 1, - sym__shortcode_close, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5475), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176582,22 +176589,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [9848] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [9860] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5483), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5477), 1, + sym__shortcode_close, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176608,22 +176617,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [9883] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [9898] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5485), 1, - sym__shortcode_close, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5479), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176634,22 +176645,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [9918] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [9936] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5487), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5481), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176660,22 +176673,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [9953] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [9974] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5489), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5483), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176686,22 +176701,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [9988] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10012] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5491), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5485), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176712,22 +176729,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10023] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10050] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5493), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5487), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176738,22 +176757,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10058] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10088] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5495), 1, - sym__shortcode_close, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5489), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176764,22 +176785,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10093] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10126] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5497), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5491), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176790,22 +176813,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10128] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10164] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5499), 1, - sym__shortcode_close, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5493), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176816,22 +176841,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10163] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10202] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5501), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5495), 1, + sym__shortcode_close, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176842,22 +176869,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10198] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10240] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5503), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5497), 1, + sym__shortcode_close, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176868,22 +176897,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10233] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10278] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5505), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5499), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176894,22 +176925,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10268] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10316] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5507), 1, - sym__shortcode_close, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5501), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176920,22 +176953,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10303] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10354] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5509), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5503), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176946,22 +176981,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10338] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10392] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5511), 1, - sym__shortcode_close, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5505), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176972,22 +177009,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10373] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10430] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5513), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5507), 1, + sym__shortcode_close, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -176998,22 +177037,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10408] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10468] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5515), 1, - sym__shortcode_close, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5509), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177024,22 +177065,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10443] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10506] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5517), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5511), 1, + sym__shortcode_close, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177050,22 +177093,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10478] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10544] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5519), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5513), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177076,22 +177121,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10513] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10582] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5521), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5515), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177102,22 +177149,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10548] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10620] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5523), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5517), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177128,22 +177177,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10583] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10658] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5525), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5519), 1, + sym__shortcode_close, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177154,22 +177205,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10618] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10696] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5527), 1, - sym__shortcode_close, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5521), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177180,22 +177233,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10653] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10734] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5529), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5523), 1, + sym__shortcode_close, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177206,22 +177261,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10688] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10772] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5531), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5525), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177232,22 +177289,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10723] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10810] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5533), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5527), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177258,22 +177317,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10758] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10848] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5535), 1, - sym__shortcode_close, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5529), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177284,22 +177345,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10793] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10886] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5537), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5531), 1, + sym__shortcode_close, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177310,22 +177373,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10828] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10924] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5539), 1, - sym__shortcode_close, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5533), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177336,22 +177401,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10863] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [10962] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5541), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5535), 1, + sym__shortcode_close, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177362,22 +177429,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10898] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [11000] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5543), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5537), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177388,22 +177457,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10933] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [11038] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5545), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5539), 1, + sym__shortcode_close, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177414,22 +177485,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [10968] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [11076] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, - ACTIONS(5547), 1, - sym__shortcode_close, - STATE(2718), 1, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5541), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177440,23 +177513,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [11003] = 9, - ACTIONS(5465), 1, + [11114] = 10, + ACTIONS(5461), 1, sym__shortcode_open, - ACTIONS(5471), 1, + ACTIONS(5543), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5545), 1, sym_shortcode_number, + ACTIONS(5547), 1, + sym__whitespace_ge_2, ACTIONS(5549), 1, - sym__shortcode_close, - STATE(2718), 1, - sym_shortcode_keyword_param, + aux_sym__whitespace_token1, + STATE(1991), 1, + sym__whitespace, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, @@ -177466,22 +177541,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2723), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [11038] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [11152] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(5551), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177492,22 +177569,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [11073] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [11190] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(5553), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177518,22 +177597,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [11108] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [11228] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(5555), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177544,22 +177625,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [11143] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [11266] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(5557), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177570,22 +177653,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [11178] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [11304] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(5559), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177596,22 +177681,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [11213] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [11342] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(5561), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177622,22 +177709,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [11248] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [11380] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(5563), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177648,22 +177737,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [11283] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [11418] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(5565), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177674,22 +177765,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [11318] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [11456] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(5567), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177700,22 +177793,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [11353] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [11494] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(5569), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177726,22 +177821,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [11388] = 9, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5471), 1, + [11532] = 10, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5457), 1, sym_shortcode_number, + ACTIONS(5461), 1, + sym__shortcode_open, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(5571), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, @@ -177752,23 +177849,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [11423] = 9, - ACTIONS(5465), 1, + [11570] = 7, + ACTIONS(5461), 1, sym__shortcode_open, - ACTIONS(5471), 1, + ACTIONS(5573), 1, sym_shortcode_name, - ACTIONS(5473), 1, + ACTIONS(5575), 1, sym_shortcode_number, - ACTIONS(5573), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, - sym_shortcode_keyword_param, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, @@ -177778,19 +177871,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2711), 5, + STATE(2739), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [11458] = 7, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5467), 1, + [11599] = 7, + ACTIONS(5451), 1, sym_shortcode_name, - ACTIONS(5469), 1, + ACTIONS(5457), 1, sym_shortcode_number, + ACTIONS(5461), 1, + sym__shortcode_open, ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, @@ -177800,57 +177893,45 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - STATE(2729), 5, + STATE(2707), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [11487] = 7, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5575), 1, - sym_shortcode_name, + [11628] = 3, ACTIONS(5577), 1, - sym_shortcode_number, - ACTIONS(5453), 2, + sym__last_token_whitespace, + ACTIONS(4339), 3, + sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5455), 2, + ACTIONS(4337), 8, + sym__shortcode_open, + sym__shortcode_close, + sym__key_name_and_equals, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5459), 2, + sym_shortcode_number, anon_sym_true, anon_sym_false, - STATE(2734), 5, - sym_shortcode, - sym__shortcode_value, - sym_shortcode_naked_string, - sym_shortcode_string, - sym_shortcode_boolean, - [11516] = 7, - ACTIONS(5465), 1, - sym__shortcode_open, - ACTIONS(5473), 1, - sym_shortcode_number, + [11647] = 3, ACTIONS(5579), 1, + sym__last_token_whitespace, + ACTIONS(4339), 3, sym_shortcode_name, - ACTIONS(5453), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5455), 2, + ACTIONS(4337), 8, + sym__shortcode_close_escaped, + sym__shortcode_open, + sym__key_name_and_equals, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5459), 2, + sym_shortcode_number, anon_sym_true, anon_sym_false, - STATE(2711), 5, - sym_shortcode, - sym__shortcode_value, - sym_shortcode_naked_string, - sym_shortcode_string, - sym_shortcode_boolean, - [11545] = 9, + [11666] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -177865,13 +177946,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2376), 1, + STATE(2164), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11575] = 9, + [11696] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -177886,36 +177967,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__whitespace_token1, ACTIONS(5593), 1, anon_sym_RPAREN, - STATE(2300), 1, + STATE(2187), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11605] = 11, - ACTIONS(5595), 1, - anon_sym_RBRACE, - ACTIONS(5597), 1, - sym_raw_specifier, - ACTIONS(5599), 1, - sym__commonmark_whitespace, - ACTIONS(5601), 1, - sym_commonmark_name, - ACTIONS(5603), 1, - sym_id_specifier, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - STATE(2124), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2266), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2455), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [11639] = 9, + [11726] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -177928,15 +177986,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5609), 1, + ACTIONS(5595), 1, anon_sym_RPAREN, - STATE(2306), 1, + STATE(2178), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11669] = 9, + [11756] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -177949,15 +178007,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5611), 1, + ACTIONS(5597), 1, anon_sym_RPAREN, - STATE(2308), 1, + STATE(2161), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11699] = 9, + [11786] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -177970,15 +178028,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5613), 1, + ACTIONS(5599), 1, anon_sym_RPAREN, - STATE(2335), 1, + STATE(2215), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11729] = 9, + [11816] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -177991,15 +178049,38 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5615), 1, + ACTIONS(5601), 1, anon_sym_RPAREN, - STATE(2179), 1, + STATE(2189), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11759] = 9, + [11846] = 11, + ACTIONS(5603), 1, + anon_sym_RBRACE, + ACTIONS(5605), 1, + sym_raw_specifier, + ACTIONS(5607), 1, + sym__commonmark_whitespace, + ACTIONS(5609), 1, + sym_commonmark_name, + ACTIONS(5611), 1, + sym_id_specifier, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + STATE(2125), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2239), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2447), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [11880] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178014,36 +178095,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__whitespace_token1, ACTIONS(5617), 1, anon_sym_RPAREN, - STATE(2226), 1, + STATE(2168), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11789] = 11, - ACTIONS(5603), 1, - sym_id_specifier, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5619), 1, - anon_sym_RBRACE, - ACTIONS(5621), 1, - sym_raw_specifier, - ACTIONS(5623), 1, - sym__commonmark_whitespace, - ACTIONS(5625), 1, - sym_commonmark_name, - STATE(2112), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2176), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2503), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [11823] = 9, + [11910] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178056,15 +178114,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5627), 1, + ACTIONS(5619), 1, anon_sym_RPAREN, - STATE(2230), 1, + STATE(2253), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11853] = 9, + [11940] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178077,15 +178135,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5629), 1, + ACTIONS(5621), 1, anon_sym_RPAREN, - STATE(2168), 1, + STATE(2255), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11883] = 9, + [11970] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178098,15 +178156,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5631), 1, + ACTIONS(5623), 1, anon_sym_RPAREN, - STATE(2364), 1, + STATE(2349), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11913] = 9, + [12000] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178119,15 +178177,52 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5633), 1, + ACTIONS(5625), 1, anon_sym_RPAREN, - STATE(2170), 1, + STATE(2351), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11943] = 9, + [12030] = 2, + ACTIONS(4641), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(4639), 8, + sym__shortcode_close_escaped, + sym__shortcode_open, + sym__key_name_and_equals, + aux_sym_shortcode_string_token1, + aux_sym_shortcode_string_token2, + sym_shortcode_number, + anon_sym_true, + anon_sym_false, + [12046] = 11, + ACTIONS(5611), 1, + sym_id_specifier, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5627), 1, + anon_sym_RBRACE, + ACTIONS(5629), 1, + sym_raw_specifier, + ACTIONS(5631), 1, + sym__commonmark_whitespace, + ACTIONS(5633), 1, + sym_commonmark_name, + STATE(2116), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2229), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2435), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [12080] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178142,13 +178237,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__whitespace_token1, ACTIONS(5635), 1, anon_sym_RPAREN, - STATE(2370), 1, + STATE(2355), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11973] = 9, + [12110] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178163,13 +178258,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__whitespace_token1, ACTIONS(5637), 1, anon_sym_RPAREN, - STATE(2234), 1, + STATE(2357), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12003] = 9, + [12140] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178184,13 +178279,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__whitespace_token1, ACTIONS(5639), 1, anon_sym_RPAREN, - STATE(2380), 1, + STATE(2170), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12033] = 9, + [12170] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178205,13 +178300,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__whitespace_token1, ACTIONS(5641), 1, anon_sym_RPAREN, - STATE(2386), 1, + STATE(2367), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12063] = 9, + [12200] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178226,13 +178321,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__whitespace_token1, ACTIONS(5643), 1, anon_sym_RPAREN, - STATE(2236), 1, + STATE(2348), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12093] = 9, + [12230] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178247,13 +178342,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__whitespace_token1, ACTIONS(5645), 1, anon_sym_RPAREN, - STATE(2208), 1, + STATE(2372), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12123] = 9, + [12260] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178268,13 +178363,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__whitespace_token1, ACTIONS(5647), 1, anon_sym_RPAREN, - STATE(2210), 1, + STATE(2223), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12153] = 9, + [12290] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178289,13 +178384,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__whitespace_token1, ACTIONS(5649), 1, anon_sym_RPAREN, - STATE(2341), 1, + STATE(2386), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12183] = 9, + [12320] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178310,13 +178405,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__whitespace_token1, ACTIONS(5651), 1, anon_sym_RPAREN, - STATE(2255), 1, + STATE(2177), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12213] = 9, + [12350] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178331,34 +178426,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__whitespace_token1, ACTIONS(5653), 1, anon_sym_RPAREN, - STATE(2257), 1, + STATE(2419), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12243] = 9, - ACTIONS(4789), 1, - sym__newline_token, - ACTIONS(5581), 1, - anon_sym_DQUOTE, - ACTIONS(5583), 1, - anon_sym_SQUOTE, - ACTIONS(5585), 1, - anon_sym_LPAREN, - ACTIONS(5589), 1, - sym__whitespace_ge_2, - ACTIONS(5591), 1, - aux_sym__whitespace_token1, + [12380] = 11, + ACTIONS(5611), 1, + sym_id_specifier, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, ACTIONS(5655), 1, - anon_sym_RPAREN, - STATE(2352), 1, - sym_link_title, - STATE(2064), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [12273] = 9, + anon_sym_RBRACE, + ACTIONS(5657), 1, + sym_raw_specifier, + ACTIONS(5659), 1, + sym__commonmark_whitespace, + ACTIONS(5661), 1, + sym_commonmark_name, + STATE(2141), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2415), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2512), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [12414] = 11, + ACTIONS(5611), 1, + sym_id_specifier, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5663), 1, + anon_sym_RBRACE, + ACTIONS(5665), 1, + sym_raw_specifier, + ACTIONS(5667), 1, + sym__commonmark_whitespace, + ACTIONS(5669), 1, + sym_commonmark_name, + STATE(2110), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2347), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2504), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [12448] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178371,53 +178491,38 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5657), 1, + ACTIONS(5671), 1, anon_sym_RPAREN, - STATE(2355), 1, + STATE(2259), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12303] = 3, - ACTIONS(5659), 1, - sym__last_token_whitespace, - ACTIONS(4331), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(4329), 7, - sym__shortcode_open, - sym__shortcode_close, - aux_sym_shortcode_string_token1, - aux_sym_shortcode_string_token2, - sym_shortcode_number, - anon_sym_true, - anon_sym_false, - [12321] = 11, - ACTIONS(5603), 1, + [12478] = 11, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5661), 1, + ACTIONS(5673), 1, anon_sym_RBRACE, - ACTIONS(5663), 1, + ACTIONS(5675), 1, sym_raw_specifier, - ACTIONS(5665), 1, + ACTIONS(5677), 1, sym__commonmark_whitespace, - ACTIONS(5667), 1, + ACTIONS(5679), 1, sym_commonmark_name, - STATE(2134), 1, + STATE(2114), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2183), 1, + STATE(2325), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2468), 1, + STATE(2444), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [12355] = 9, + [12512] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178430,30 +178535,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5669), 1, + ACTIONS(5681), 1, anon_sym_RPAREN, - STATE(2358), 1, + STATE(2328), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12385] = 3, - ACTIONS(5671), 1, - sym__last_token_whitespace, - ACTIONS(4331), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(4329), 7, - sym__shortcode_close_escaped, - sym__shortcode_open, - aux_sym_shortcode_string_token1, - aux_sym_shortcode_string_token2, - sym_shortcode_number, - anon_sym_true, - anon_sym_false, - [12403] = 9, + [12542] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178466,15 +178556,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5673), 1, + ACTIONS(5683), 1, anon_sym_RPAREN, - STATE(2350), 1, + STATE(2296), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12433] = 9, + [12572] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178487,15 +178577,38 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5675), 1, + ACTIONS(5685), 1, anon_sym_RPAREN, - STATE(2260), 1, + STATE(2298), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12463] = 9, + [12602] = 11, + ACTIONS(5611), 1, + sym_id_specifier, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5687), 1, + anon_sym_RBRACE, + ACTIONS(5689), 1, + sym_raw_specifier, + ACTIONS(5691), 1, + sym__commonmark_whitespace, + ACTIONS(5693), 1, + sym_commonmark_name, + STATE(2138), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2271), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2471), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [12636] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178508,15 +178621,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5677), 1, + ACTIONS(5695), 1, anon_sym_RPAREN, - STATE(2374), 1, + STATE(2394), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12493] = 9, + [12666] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178529,15 +178642,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5679), 1, + ACTIONS(5697), 1, anon_sym_RPAREN, - STATE(2262), 1, + STATE(2396), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12523] = 9, + [12696] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178550,15 +178663,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5681), 1, + ACTIONS(5699), 1, anon_sym_RPAREN, - STATE(2173), 1, + STATE(2228), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12553] = 9, + [12726] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178571,15 +178684,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5683), 1, + ACTIONS(5701), 1, anon_sym_RPAREN, - STATE(2365), 1, + STATE(2302), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12583] = 9, + [12756] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178592,15 +178705,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5685), 1, + ACTIONS(5703), 1, anon_sym_RPAREN, - STATE(2367), 1, + STATE(2399), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12613] = 9, + [12786] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178613,15 +178726,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5687), 1, + ACTIONS(5705), 1, anon_sym_RPAREN, - STATE(2383), 1, + STATE(2401), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12643] = 9, + [12816] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178634,15 +178747,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5689), 1, + ACTIONS(5707), 1, anon_sym_RPAREN, - STATE(2191), 1, + STATE(2426), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12673] = 9, + [12846] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178655,15 +178768,38 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5691), 1, + ACTIONS(5709), 1, anon_sym_RPAREN, - STATE(2213), 1, + STATE(2231), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12703] = 9, + [12876] = 11, + ACTIONS(5611), 1, + sym_id_specifier, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5711), 1, + anon_sym_RBRACE, + ACTIONS(5713), 1, + sym_raw_specifier, + ACTIONS(5715), 1, + sym__commonmark_whitespace, + ACTIONS(5717), 1, + sym_commonmark_name, + STATE(2128), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2380), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2465), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [12910] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178676,82 +178812,61 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5693), 1, + ACTIONS(5719), 1, anon_sym_RPAREN, - STATE(2182), 1, + STATE(2334), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12733] = 11, - ACTIONS(5603), 1, + [12940] = 11, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5695), 1, + ACTIONS(5721), 1, anon_sym_RBRACE, - ACTIONS(5697), 1, + ACTIONS(5723), 1, sym_raw_specifier, - ACTIONS(5699), 1, + ACTIONS(5725), 1, sym__commonmark_whitespace, - ACTIONS(5701), 1, + ACTIONS(5727), 1, sym_commonmark_name, - STATE(2138), 1, + STATE(2145), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2229), 1, + STATE(2377), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2464), 1, + STATE(2460), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [12767] = 11, - ACTIONS(5603), 1, + [12974] = 11, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5703), 1, + ACTIONS(5729), 1, anon_sym_RBRACE, - ACTIONS(5705), 1, + ACTIONS(5731), 1, sym_raw_specifier, - ACTIONS(5707), 1, - sym__commonmark_whitespace, - ACTIONS(5709), 1, - sym_commonmark_name, - STATE(2118), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2181), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2452), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [12801] = 9, - ACTIONS(4789), 1, - sym__newline_token, - ACTIONS(5581), 1, - anon_sym_DQUOTE, - ACTIONS(5583), 1, - anon_sym_SQUOTE, - ACTIONS(5585), 1, - anon_sym_LPAREN, - ACTIONS(5589), 1, - sym__whitespace_ge_2, - ACTIONS(5591), 1, - aux_sym__whitespace_token1, - ACTIONS(5711), 1, - anon_sym_RPAREN, - STATE(2403), 1, - sym_link_title, - STATE(2064), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [12831] = 9, + ACTIONS(5733), 1, + sym__commonmark_whitespace, + ACTIONS(5735), 1, + sym_commonmark_name, + STATE(2133), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2410), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2484), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [13008] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178764,15 +178879,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5713), 1, + ACTIONS(5737), 1, anon_sym_RPAREN, - STATE(2406), 1, + STATE(2312), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12861] = 9, + [13038] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178785,15 +178900,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5715), 1, + ACTIONS(5739), 1, anon_sym_RPAREN, - STATE(2303), 1, + STATE(2321), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12891] = 9, + [13068] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178806,15 +178921,29 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5717), 1, + ACTIONS(5741), 1, anon_sym_RPAREN, - STATE(2215), 1, + STATE(2252), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12921] = 9, + [13098] = 2, + ACTIONS(4641), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(4639), 8, + sym__shortcode_open, + sym__shortcode_close, + sym__key_name_and_equals, + aux_sym_shortcode_string_token1, + aux_sym_shortcode_string_token2, + sym_shortcode_number, + anon_sym_true, + anon_sym_false, + [13114] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178827,15 +178956,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5719), 1, + ACTIONS(5743), 1, anon_sym_RPAREN, - STATE(2409), 1, + STATE(2162), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12951] = 9, + [13144] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178848,15 +178977,38 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5721), 1, + ACTIONS(5745), 1, anon_sym_RPAREN, - STATE(2411), 1, + STATE(2360), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12981] = 9, + [13174] = 11, + ACTIONS(5611), 1, + sym_id_specifier, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5747), 1, + anon_sym_RBRACE, + ACTIONS(5749), 1, + sym_raw_specifier, + ACTIONS(5751), 1, + sym__commonmark_whitespace, + ACTIONS(5753), 1, + sym_commonmark_name, + STATE(2131), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2404), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2491), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [13208] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178869,15 +179021,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5723), 1, + ACTIONS(5755), 1, anon_sym_RPAREN, - STATE(2227), 1, + STATE(2154), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [13011] = 9, + [13238] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -178890,112 +179042,20 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5725), 1, + ACTIONS(5757), 1, anon_sym_RPAREN, - STATE(2417), 1, + STATE(2199), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [13041] = 11, - ACTIONS(5603), 1, - sym_id_specifier, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5727), 1, - anon_sym_RBRACE, - ACTIONS(5729), 1, - sym_raw_specifier, - ACTIONS(5731), 1, - sym__commonmark_whitespace, - ACTIONS(5733), 1, - sym_commonmark_name, - STATE(2137), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2279), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2434), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [13075] = 11, - ACTIONS(5603), 1, - sym_id_specifier, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5735), 1, - anon_sym_RBRACE, - ACTIONS(5737), 1, - sym_raw_specifier, - ACTIONS(5739), 1, - sym__commonmark_whitespace, - ACTIONS(5741), 1, - sym_commonmark_name, - STATE(2111), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2424), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2516), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [13109] = 11, - ACTIONS(5603), 1, - sym_id_specifier, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5743), 1, - anon_sym_RBRACE, - ACTIONS(5745), 1, - sym_raw_specifier, - ACTIONS(5747), 1, - sym__commonmark_whitespace, - ACTIONS(5749), 1, - sym_commonmark_name, - STATE(2131), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2381), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2536), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [13143] = 11, - ACTIONS(5603), 1, - sym_id_specifier, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5751), 1, - anon_sym_RBRACE, - ACTIONS(5753), 1, - sym_raw_specifier, - ACTIONS(5755), 1, - sym__commonmark_whitespace, - ACTIONS(5757), 1, - sym_commonmark_name, - STATE(2116), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2276), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2511), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [13177] = 11, - ACTIONS(5603), 1, + [13268] = 11, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, ACTIONS(5759), 1, anon_sym_RBRACE, @@ -179005,38 +179065,59 @@ static const uint16_t ts_small_parse_table[] = { sym__commonmark_whitespace, ACTIONS(5765), 1, sym_commonmark_name, - STATE(2142), 1, + STATE(2139), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2327), 1, + STATE(2185), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2461), 1, + STATE(2524), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [13211] = 11, - ACTIONS(5603), 1, + [13302] = 9, + ACTIONS(4789), 1, + sym__newline_token, + ACTIONS(5581), 1, + anon_sym_DQUOTE, + ACTIONS(5583), 1, + anon_sym_SQUOTE, + ACTIONS(5585), 1, + anon_sym_LPAREN, + ACTIONS(5589), 1, + sym__whitespace_ge_2, + ACTIONS(5591), 1, + aux_sym__whitespace_token1, + ACTIONS(5767), 1, + anon_sym_RPAREN, + STATE(2363), 1, + sym_link_title, + STATE(2088), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [13332] = 11, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5767), 1, - anon_sym_RBRACE, ACTIONS(5769), 1, - sym_raw_specifier, + anon_sym_RBRACE, ACTIONS(5771), 1, - sym__commonmark_whitespace, + sym_raw_specifier, ACTIONS(5773), 1, + sym__commonmark_whitespace, + ACTIONS(5775), 1, sym_commonmark_name, - STATE(2148), 1, + STATE(2119), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2219), 1, + STATE(2234), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2476), 1, + STATE(2441), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [13245] = 9, + [13366] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -179049,15 +179130,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5775), 1, + ACTIONS(5777), 1, anon_sym_RPAREN, - STATE(2163), 1, + STATE(2208), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [13275] = 9, + [13396] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -179070,15 +179151,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5777), 1, + ACTIONS(5779), 1, anon_sym_RPAREN, - STATE(2165), 1, + STATE(2210), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [13305] = 9, + [13426] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -179091,15 +179172,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5779), 1, + ACTIONS(5781), 1, anon_sym_RPAREN, - STATE(2323), 1, + STATE(2218), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [13335] = 9, + [13456] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -179112,38 +179193,36 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5781), 1, + ACTIONS(5783), 1, anon_sym_RPAREN, - STATE(2242), 1, + STATE(2221), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [13365] = 11, - ACTIONS(5603), 1, - sym_id_specifier, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5783), 1, - anon_sym_RBRACE, + [13486] = 9, + ACTIONS(4789), 1, + sym__newline_token, + ACTIONS(5581), 1, + anon_sym_DQUOTE, + ACTIONS(5583), 1, + anon_sym_SQUOTE, + ACTIONS(5585), 1, + anon_sym_LPAREN, + ACTIONS(5589), 1, + sym__whitespace_ge_2, + ACTIONS(5591), 1, + aux_sym__whitespace_token1, ACTIONS(5785), 1, - sym_raw_specifier, - ACTIONS(5787), 1, - sym__commonmark_whitespace, - ACTIONS(5789), 1, - sym_commonmark_name, - STATE(2126), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2421), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2497), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [13399] = 9, + anon_sym_RPAREN, + STATE(2213), 1, + sym_link_title, + STATE(2088), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [13516] = 9, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5581), 1, @@ -179156,2117 +179235,2072 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5791), 1, + ACTIONS(5787), 1, anon_sym_RPAREN, - STATE(2360), 1, + STATE(2261), 1, sym_link_title, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [13429] = 10, - ACTIONS(5603), 1, + [13546] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5793), 1, + ACTIONS(5673), 1, anon_sym_RBRACE, - ACTIONS(5795), 1, - sym_raw_specifier, - ACTIONS(5797), 1, + ACTIONS(5789), 1, + sym__commonmark_whitespace, + ACTIONS(5791), 1, sym_commonmark_name, - STATE(2119), 1, + STATE(2114), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2184), 1, + STATE(2325), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2432), 1, + STATE(2444), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [13460] = 10, - ACTIONS(5595), 1, - anon_sym_RBRACE, - ACTIONS(5603), 1, - sym_id_specifier, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, + [13577] = 6, + ACTIONS(5793), 1, + sym__backslash_escape, ACTIONS(5797), 1, - sym_commonmark_name, + sym__newline_token, ACTIONS(5799), 1, - sym__commonmark_whitespace, - STATE(2124), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2266), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2455), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [13491] = 10, - ACTIONS(5603), 1, - sym_id_specifier, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5801), 1, - anon_sym_RBRACE, - ACTIONS(5803), 1, - sym_raw_specifier, - STATE(2125), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2426), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2531), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [13522] = 10, - ACTIONS(5603), 1, + sym__latex_span_close, + STATE(2060), 1, + aux_sym_latex_span_repeat1, + STATE(2411), 2, + sym_backslash_escape, + sym__soft_line_break, + ACTIONS(5795), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [13600] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5759), 1, + ACTIONS(5711), 1, anon_sym_RBRACE, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5805), 1, + ACTIONS(5801), 1, sym__commonmark_whitespace, - STATE(2142), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2327), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2461), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [13553] = 10, - ACTIONS(5603), 1, - sym_id_specifier, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5807), 1, - anon_sym_RBRACE, - ACTIONS(5809), 1, - sym_raw_specifier, - STATE(2127), 1, + STATE(2128), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2387), 1, + STATE(2380), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2435), 1, + STATE(2465), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [13584] = 6, - ACTIONS(5811), 1, + [13631] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5817), 1, + ACTIONS(5803), 1, sym__latex_span_close, - STATE(2102), 1, + STATE(2069), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [13607] = 6, - ACTIONS(5811), 1, + [13654] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5819), 1, + ACTIONS(5805), 1, sym__latex_span_close, - STATE(2102), 1, + STATE(2064), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [13630] = 5, - ACTIONS(5202), 1, - sym__newline_token, - ACTIONS(5821), 1, - sym__whitespace_ge_2, - ACTIONS(5824), 1, - aux_sym__whitespace_token1, - STATE(2064), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(5198), 4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [13651] = 2, - ACTIONS(4645), 3, + [13677] = 10, + ACTIONS(5611), 1, + sym_id_specifier, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5759), 1, + anon_sym_RBRACE, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5807), 1, + sym__commonmark_whitespace, + STATE(2139), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2185), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2524), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [13708] = 3, + ACTIONS(5809), 1, + sym__last_token_whitespace, + ACTIONS(4339), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4643), 7, + ACTIONS(4337), 6, sym__shortcode_open, - sym__shortcode_close, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, sym_shortcode_number, anon_sym_true, anon_sym_false, - [13666] = 6, + [13725] = 6, + ACTIONS(5793), 1, + sym__backslash_escape, + ACTIONS(5797), 1, + sym__newline_token, ACTIONS(5811), 1, + sym__latex_span_close, + STATE(2069), 1, + aux_sym_latex_span_repeat1, + STATE(2411), 2, + sym_backslash_escape, + sym__soft_line_break, + ACTIONS(5795), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [13748] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5827), 1, + ACTIONS(5813), 1, sym__latex_span_close, - STATE(2102), 1, + STATE(2074), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [13689] = 10, - ACTIONS(5603), 1, + [13771] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5767), 1, + ACTIONS(5769), 1, anon_sym_RBRACE, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5829), 1, + ACTIONS(5815), 1, sym__commonmark_whitespace, - STATE(2148), 1, + STATE(2119), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2219), 1, + STATE(2234), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2476), 1, + STATE(2441), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [13720] = 10, - ACTIONS(5603), 1, + [13802] = 6, + ACTIONS(5793), 1, + sym__backslash_escape, + ACTIONS(5797), 1, + sym__newline_token, + ACTIONS(5817), 1, + sym__latex_span_close, + STATE(2076), 1, + aux_sym_latex_span_repeat1, + STATE(2411), 2, + sym_backslash_escape, + sym__soft_line_break, + ACTIONS(5795), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [13825] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5661), 1, - anon_sym_RBRACE, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5831), 1, - sym__commonmark_whitespace, - STATE(2134), 1, + ACTIONS(5819), 1, + anon_sym_RBRACE, + ACTIONS(5821), 1, + sym_raw_specifier, + STATE(2129), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2183), 1, + STATE(2414), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2468), 1, + STATE(2507), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [13751] = 3, - ACTIONS(5833), 1, - sym__last_token_whitespace, - ACTIONS(4331), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(4329), 6, - sym__shortcode_open, - aux_sym_shortcode_string_token1, - aux_sym_shortcode_string_token2, - sym_shortcode_number, - anon_sym_true, - anon_sym_false, - [13768] = 6, - ACTIONS(5811), 1, + [13856] = 6, + ACTIONS(5823), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5829), 1, sym__newline_token, - ACTIONS(5835), 1, + ACTIONS(5832), 1, sym__latex_span_close, - STATE(2102), 1, + STATE(2069), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5826), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [13791] = 6, - ACTIONS(5811), 1, + [13879] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5837), 1, + ACTIONS(5834), 1, sym__latex_span_close, - STATE(2099), 1, + STATE(2075), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [13814] = 6, - ACTIONS(5811), 1, + [13902] = 10, + ACTIONS(5603), 1, + anon_sym_RBRACE, + ACTIONS(5611), 1, + sym_id_specifier, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5836), 1, + sym__commonmark_whitespace, + STATE(2125), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2239), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2447), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [13933] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5839), 1, + ACTIONS(5838), 1, sym__latex_span_close, - STATE(2083), 1, + STATE(2085), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [13837] = 6, - ACTIONS(5811), 1, + [13956] = 10, + ACTIONS(5611), 1, + sym_id_specifier, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5627), 1, + anon_sym_RBRACE, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5840), 1, + sym__commonmark_whitespace, + STATE(2116), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2229), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2435), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [13987] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5841), 1, + ACTIONS(5842), 1, sym__latex_span_close, - STATE(2093), 1, + STATE(2069), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [13860] = 6, - ACTIONS(5811), 1, + [14010] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5843), 1, + ACTIONS(5844), 1, sym__latex_span_close, - STATE(2066), 1, + STATE(2069), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [13883] = 10, - ACTIONS(5603), 1, + [14033] = 6, + ACTIONS(5793), 1, + sym__backslash_escape, + ACTIONS(5797), 1, + sym__newline_token, + ACTIONS(5846), 1, + sym__latex_span_close, + STATE(2069), 1, + aux_sym_latex_span_repeat1, + STATE(2411), 2, + sym_backslash_escape, + sym__soft_line_break, + ACTIONS(5795), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [14056] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5695), 1, - anon_sym_RBRACE, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5845), 1, - sym__commonmark_whitespace, - STATE(2138), 1, + ACTIONS(5848), 1, + anon_sym_RBRACE, + ACTIONS(5850), 1, + sym_raw_specifier, + STATE(2144), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2229), 1, + STATE(2279), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2464), 1, + STATE(2505), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [13914] = 10, - ACTIONS(5603), 1, + [14087] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5751), 1, + ACTIONS(5747), 1, anon_sym_RBRACE, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5847), 1, + ACTIONS(5852), 1, sym__commonmark_whitespace, - STATE(2116), 1, + STATE(2131), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2276), 1, + STATE(2404), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2511), 1, + STATE(2491), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [13945] = 6, - ACTIONS(5811), 1, + [14118] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5849), 1, + ACTIONS(5854), 1, sym__latex_span_close, - STATE(2084), 1, + STATE(2107), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [13968] = 10, - ACTIONS(5603), 1, + [14141] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5687), 1, + anon_sym_RBRACE, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5856), 1, + sym__commonmark_whitespace, + STATE(2138), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2271), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2471), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [14172] = 10, + ACTIONS(5611), 1, + sym_id_specifier, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5851), 1, + ACTIONS(5858), 1, anon_sym_RBRACE, - ACTIONS(5853), 1, + ACTIONS(5860), 1, sym_raw_specifier, STATE(2143), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2190), 1, + STATE(2179), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2463), 1, + STATE(2430), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [13999] = 10, - ACTIONS(5603), 1, + [14203] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5855), 1, + ACTIONS(5862), 1, anon_sym_RBRACE, - ACTIONS(5857), 1, + ACTIONS(5864), 1, sym_raw_specifier, - STATE(2129), 1, + STATE(2134), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2275), 1, + STATE(2267), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2482), 1, + STATE(2466), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [14030] = 10, - ACTIONS(5603), 1, + [14234] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5743), 1, - anon_sym_RBRACE, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5859), 1, - sym__commonmark_whitespace, - STATE(2131), 1, + ACTIONS(5866), 1, + anon_sym_RBRACE, + ACTIONS(5868), 1, + sym_raw_specifier, + STATE(2115), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2381), 1, + STATE(2330), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2536), 1, + STATE(2446), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [14061] = 6, - ACTIONS(5811), 1, - sym__backslash_escape, - ACTIONS(5815), 1, - sym__newline_token, - ACTIONS(5861), 1, - sym__latex_span_close, - STATE(2062), 1, - aux_sym_latex_span_repeat1, - STATE(2185), 2, - sym_backslash_escape, - sym__soft_line_break, - ACTIONS(5813), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [14084] = 10, - ACTIONS(5603), 1, + [14265] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5863), 1, + ACTIONS(5870), 1, anon_sym_RBRACE, - ACTIONS(5865), 1, + ACTIONS(5872), 1, sym_raw_specifier, - STATE(2123), 1, + STATE(2126), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2283), 1, + STATE(2381), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2440), 1, + STATE(2463), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [14115] = 6, - ACTIONS(5811), 1, + [14296] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5867), 1, + ACTIONS(5874), 1, sym__latex_span_close, - STATE(2102), 1, + STATE(2069), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14138] = 6, - ACTIONS(5811), 1, + [14319] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5869), 1, + ACTIONS(5876), 1, sym__latex_span_close, - STATE(2102), 1, + STATE(2087), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14161] = 6, - ACTIONS(5811), 1, + [14342] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5871), 1, + ACTIONS(5878), 1, sym__latex_span_close, - STATE(2109), 1, + STATE(2069), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14184] = 6, - ACTIONS(5811), 1, + [14365] = 5, + ACTIONS(5213), 1, + sym__newline_token, + ACTIONS(5880), 1, + sym__whitespace_ge_2, + ACTIONS(5883), 1, + aux_sym__whitespace_token1, + STATE(2088), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(5209), 4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [14386] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5873), 1, + ACTIONS(5886), 1, sym__latex_span_close, STATE(2096), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14207] = 10, - ACTIONS(5603), 1, - sym_id_specifier, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5703), 1, - anon_sym_RBRACE, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5875), 1, - sym__commonmark_whitespace, - STATE(2118), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2181), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2452), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [14238] = 10, - ACTIONS(5603), 1, - sym_id_specifier, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5877), 1, - anon_sym_RBRACE, - ACTIONS(5879), 1, - sym_raw_specifier, - STATE(2122), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2336), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2494), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [14269] = 6, - ACTIONS(5811), 1, + [14409] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5881), 1, + ACTIONS(5888), 1, sym__latex_span_close, - STATE(2104), 1, + STATE(2093), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14292] = 10, - ACTIONS(5603), 1, + [14432] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5883), 1, + ACTIONS(5729), 1, anon_sym_RBRACE, - ACTIONS(5885), 1, - sym_raw_specifier, - STATE(2139), 1, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5890), 1, + sym__commonmark_whitespace, + STATE(2133), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2246), 1, + STATE(2410), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2459), 1, + STATE(2484), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [14323] = 10, - ACTIONS(5603), 1, + [14463] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5783), 1, + ACTIONS(5721), 1, anon_sym_RBRACE, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5887), 1, + ACTIONS(5892), 1, sym__commonmark_whitespace, - STATE(2126), 1, + STATE(2145), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2421), 1, + STATE(2377), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2497), 1, + STATE(2460), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [14354] = 6, - ACTIONS(5811), 1, - sym__backslash_escape, - ACTIONS(5815), 1, - sym__newline_token, - ACTIONS(5889), 1, - sym__latex_span_close, - STATE(2102), 1, - aux_sym_latex_span_repeat1, - STATE(2185), 2, - sym_backslash_escape, - sym__soft_line_break, - ACTIONS(5813), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [14377] = 6, - ACTIONS(5811), 1, - sym__backslash_escape, - ACTIONS(5815), 1, - sym__newline_token, - ACTIONS(5891), 1, - sym__latex_span_close, - STATE(2102), 1, - aux_sym_latex_span_repeat1, - STATE(2185), 2, - sym_backslash_escape, - sym__soft_line_break, - ACTIONS(5813), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [14400] = 6, - ACTIONS(5811), 1, + [14494] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5893), 1, + ACTIONS(5894), 1, sym__latex_span_close, - STATE(2092), 1, + STATE(2069), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14423] = 3, - ACTIONS(4331), 1, - aux_sym__whitespace_token1, - ACTIONS(5895), 1, - sym__last_token_whitespace, - ACTIONS(4329), 8, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - sym_shortcode_name, - sym__whitespace_ge_2, - [14440] = 6, - ACTIONS(5811), 1, + [14517] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5897), 1, + ACTIONS(5896), 1, sym__latex_span_close, - STATE(2102), 1, + STATE(2101), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14463] = 10, - ACTIONS(5603), 1, + [14540] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5619), 1, - anon_sym_RBRACE, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5899), 1, - sym__commonmark_whitespace, - STATE(2112), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2176), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2503), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [14494] = 10, - ACTIONS(5603), 1, - sym_id_specifier, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5735), 1, + ACTIONS(5898), 1, anon_sym_RBRACE, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5901), 1, - sym__commonmark_whitespace, - STATE(2111), 1, + ACTIONS(5900), 1, + sym_raw_specifier, + STATE(2123), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2424), 1, + STATE(2190), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2516), 1, + STATE(2440), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [14525] = 6, - ACTIONS(5811), 1, + [14571] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5903), 1, + ACTIONS(5902), 1, sym__latex_span_close, - STATE(2102), 1, + STATE(2069), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14548] = 10, - ACTIONS(5603), 1, + [14594] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5905), 1, + ACTIONS(5904), 1, anon_sym_RBRACE, - ACTIONS(5907), 1, + ACTIONS(5906), 1, sym_raw_specifier, - STATE(2147), 1, + STATE(2135), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2427), 1, + STATE(2268), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2537), 1, + STATE(2469), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [14579] = 10, - ACTIONS(5603), 1, + [14625] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5909), 1, + ACTIONS(5908), 1, anon_sym_RBRACE, - ACTIONS(5911), 1, + ACTIONS(5910), 1, sym_raw_specifier, - STATE(2128), 1, + STATE(2140), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2238), 1, + STATE(2422), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2438), 1, + STATE(2532), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [14610] = 6, - ACTIONS(5913), 1, + [14656] = 10, + ACTIONS(5611), 1, + sym_id_specifier, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5655), 1, + anon_sym_RBRACE, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5912), 1, + sym__commonmark_whitespace, + STATE(2141), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2415), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2512), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [14687] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5919), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5922), 1, + ACTIONS(5914), 1, sym__latex_span_close, - STATE(2102), 1, + STATE(2069), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5916), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14633] = 6, - ACTIONS(5811), 1, + [14710] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5924), 1, + ACTIONS(5916), 1, sym__latex_span_close, - STATE(2063), 1, + STATE(2069), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14656] = 6, - ACTIONS(5811), 1, + [14733] = 10, + ACTIONS(5611), 1, + sym_id_specifier, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5918), 1, + anon_sym_RBRACE, + ACTIONS(5920), 1, + sym_raw_specifier, + STATE(2121), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2236), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2442), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [14764] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5926), 1, + ACTIONS(5922), 1, sym__latex_span_close, - STATE(2102), 1, + STATE(2100), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14679] = 2, - ACTIONS(4645), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(4643), 7, - sym__shortcode_close_escaped, - sym__shortcode_open, - aux_sym_shortcode_string_token1, - aux_sym_shortcode_string_token2, - sym_shortcode_number, - anon_sym_true, - anon_sym_false, - [14694] = 10, - ACTIONS(5603), 1, + [14787] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5663), 1, + anon_sym_RBRACE, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5928), 1, + ACTIONS(5924), 1, + sym__commonmark_whitespace, + STATE(2110), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2347), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2504), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [14818] = 10, + ACTIONS(5611), 1, + sym_id_specifier, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5926), 1, anon_sym_RBRACE, - ACTIONS(5930), 1, + ACTIONS(5928), 1, sym_raw_specifier, - STATE(2140), 1, + STATE(2142), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2188), 1, + STATE(2416), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2437), 1, + STATE(2518), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [14725] = 10, - ACTIONS(5603), 1, + [14849] = 10, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5932), 1, + ACTIONS(5930), 1, anon_sym_RBRACE, - ACTIONS(5934), 1, + ACTIONS(5932), 1, sym_raw_specifier, - STATE(2120), 1, + STATE(2109), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2301), 1, + STATE(2222), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2502), 1, + STATE(2443), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [14756] = 6, - ACTIONS(5811), 1, - sym__backslash_escape, - ACTIONS(5815), 1, - sym__newline_token, - ACTIONS(5936), 1, - sym__latex_span_close, - STATE(2070), 1, - aux_sym_latex_span_repeat1, - STATE(2185), 2, - sym_backslash_escape, - sym__soft_line_break, - ACTIONS(5813), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [14779] = 6, - ACTIONS(5811), 1, + [14880] = 6, + ACTIONS(5793), 1, sym__backslash_escape, - ACTIONS(5815), 1, + ACTIONS(5797), 1, sym__newline_token, - ACTIONS(5938), 1, + ACTIONS(5934), 1, sym__latex_span_close, - STATE(2102), 1, + STATE(2069), 1, aux_sym_latex_span_repeat1, - STATE(2185), 2, + STATE(2411), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(5813), 4, + ACTIONS(5795), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14802] = 10, - ACTIONS(5603), 1, + [14903] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5727), 1, - anon_sym_RBRACE, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5940), 1, - sym__commonmark_whitespace, - STATE(2137), 1, + ACTIONS(5908), 1, + anon_sym_RBRACE, + STATE(2140), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2279), 1, + STATE(2422), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2434), 1, + STATE(2532), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [14833] = 9, - ACTIONS(5603), 1, + [14931] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5905), 1, + ACTIONS(5936), 1, anon_sym_RBRACE, - STATE(2427), 1, + STATE(2376), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2537), 1, + STATE(2467), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [14861] = 9, - ACTIONS(5603), 1, + [14959] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5793), 1, - anon_sym_RBRACE, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - STATE(2184), 1, + ACTIONS(5858), 1, + anon_sym_RBRACE, + STATE(2179), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2432), 1, + STATE(2430), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [14889] = 9, - ACTIONS(5603), 1, + [14987] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5855), 1, + ACTIONS(5819), 1, anon_sym_RBRACE, STATE(2129), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2275), 1, + STATE(2414), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2482), 1, + STATE(2507), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [14917] = 9, - ACTIONS(5603), 1, + [15015] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5928), 1, + ACTIONS(5918), 1, anon_sym_RBRACE, - STATE(2140), 1, + STATE(2121), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2188), 1, + STATE(2236), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2437), 1, + STATE(2442), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [14945] = 9, - ACTIONS(5603), 1, + [15043] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5863), 1, + ACTIONS(5866), 1, anon_sym_RBRACE, - STATE(2123), 1, + STATE(2115), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2283), 1, + STATE(2330), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2440), 1, + STATE(2446), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [14973] = 9, - ACTIONS(5603), 1, + [15071] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5863), 1, + ACTIONS(5866), 1, anon_sym_RBRACE, - STATE(2283), 1, + STATE(2330), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2440), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [15001] = 9, - ACTIONS(5603), 1, - sym_id_specifier, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5801), 1, - anon_sym_RBRACE, - STATE(2125), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2426), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2531), 1, + STATE(2446), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15029] = 9, - ACTIONS(5603), 1, + [15099] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5883), 1, + ACTIONS(5938), 1, anon_sym_RBRACE, - STATE(2246), 1, + STATE(2339), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2459), 1, + STATE(2450), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15057] = 9, - ACTIONS(5603), 1, + [15127] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5942), 1, + ACTIONS(5918), 1, anon_sym_RBRACE, - STATE(2207), 1, + STATE(2236), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2445), 1, + STATE(2442), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15085] = 9, - ACTIONS(5603), 1, + [15155] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5944), 1, + ACTIONS(5858), 1, anon_sym_RBRACE, - STATE(2319), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2143), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2450), 1, + STATE(2179), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2430), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15113] = 2, - ACTIONS(4645), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(4643), 6, - sym__shortcode_open, - aux_sym_shortcode_string_token1, - aux_sym_shortcode_string_token2, - sym_shortcode_number, - anon_sym_true, - anon_sym_false, - [15127] = 9, - ACTIONS(5603), 1, + [15183] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5946), 1, + ACTIONS(5904), 1, anon_sym_RBRACE, - STATE(2342), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2135), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2449), 1, + STATE(2268), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2469), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15155] = 9, - ACTIONS(5603), 1, + [15211] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5948), 1, + ACTIONS(5904), 1, anon_sym_RBRACE, - STATE(2292), 1, + STATE(2268), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2456), 1, + STATE(2469), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15183] = 9, - ACTIONS(5603), 1, + [15239] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5855), 1, + ACTIONS(5862), 1, anon_sym_RBRACE, - STATE(2275), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2134), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2482), 1, + STATE(2267), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2466), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15211] = 9, - ACTIONS(5603), 1, + [15267] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5950), 1, + ACTIONS(5940), 1, anon_sym_RBRACE, - STATE(2155), 1, + STATE(2243), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2475), 1, + STATE(2449), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15239] = 9, - ACTIONS(5603), 1, + [15295] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5801), 1, + ACTIONS(5870), 1, anon_sym_RBRACE, - STATE(2426), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2126), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2531), 1, + STATE(2381), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2463), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15267] = 9, - ACTIONS(5603), 1, + [15323] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5952), 1, + ACTIONS(5942), 1, anon_sym_RBRACE, - STATE(2394), 1, + STATE(2200), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2444), 1, + STATE(2451), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15295] = 9, - ACTIONS(5603), 1, + [15351] = 3, + ACTIONS(4339), 1, + aux_sym__whitespace_token1, + ACTIONS(5944), 1, + sym__last_token_whitespace, + ACTIONS(4337), 7, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_shortcode_name, + sym__whitespace_ge_2, + [15367] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5954), 1, + ACTIONS(5862), 1, anon_sym_RBRACE, - STATE(2247), 1, + STATE(2267), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2462), 1, + STATE(2466), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15323] = 9, - ACTIONS(5603), 1, + [15395] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5956), 1, + ACTIONS(5946), 1, anon_sym_RBRACE, - STATE(2318), 1, + STATE(2387), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2447), 1, + STATE(2468), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15351] = 9, - ACTIONS(5603), 1, + [15423] = 2, + ACTIONS(4641), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(4639), 6, + sym__shortcode_open, + aux_sym_shortcode_string_token1, + aux_sym_shortcode_string_token2, + sym_shortcode_number, + anon_sym_true, + anon_sym_false, + [15437] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5807), 1, + ACTIONS(5819), 1, anon_sym_RBRACE, - STATE(2127), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2387), 1, + STATE(2414), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2435), 1, + STATE(2427), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2507), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15379] = 9, - ACTIONS(5603), 1, + [15465] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5807), 1, + ACTIONS(5948), 1, anon_sym_RBRACE, - STATE(2387), 1, + STATE(2153), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2435), 1, + STATE(2448), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15407] = 9, - ACTIONS(5603), 1, + [15493] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5851), 1, + ACTIONS(5930), 1, anon_sym_RBRACE, - STATE(2143), 1, + STATE(2109), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2190), 1, + STATE(2222), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2463), 1, + STATE(2443), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15435] = 2, - ACTIONS(4645), 1, - aux_sym__whitespace_token1, - ACTIONS(4643), 8, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym__newline_token, - sym_shortcode_name, - sym__whitespace_ge_2, - [15449] = 9, - ACTIONS(5603), 1, + [15521] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5851), 1, + ACTIONS(5930), 1, anon_sym_RBRACE, - STATE(2190), 1, + STATE(2222), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2463), 1, + STATE(2443), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15477] = 9, - ACTIONS(5603), 1, + [15549] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5909), 1, + ACTIONS(5926), 1, anon_sym_RBRACE, - STATE(2128), 1, + STATE(2142), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2238), 1, + STATE(2416), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2438), 1, + STATE(2518), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15505] = 9, - ACTIONS(5603), 1, + [15577] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5905), 1, + ACTIONS(5926), 1, anon_sym_RBRACE, - STATE(2147), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2427), 1, + STATE(2416), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2537), 1, + STATE(2427), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2518), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15533] = 9, - ACTIONS(5603), 1, + [15605] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5932), 1, + ACTIONS(5950), 1, anon_sym_RBRACE, - STATE(2301), 1, + STATE(2283), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2502), 1, + STATE(2530), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15561] = 9, - ACTIONS(5603), 1, + [15633] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5909), 1, + ACTIONS(5952), 1, anon_sym_RBRACE, - STATE(2238), 1, + STATE(2311), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2438), 1, + STATE(2437), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15589] = 9, - ACTIONS(5603), 1, + [15661] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5958), 1, + ACTIONS(5898), 1, anon_sym_RBRACE, - STATE(2274), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2123), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2495), 1, + STATE(2190), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2440), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15617] = 9, - ACTIONS(5603), 1, + [15689] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5960), 1, + ACTIONS(5848), 1, anon_sym_RBRACE, - STATE(2422), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2144), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2509), 1, + STATE(2279), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2505), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15645] = 9, - ACTIONS(5603), 1, + [15717] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5877), 1, + ACTIONS(5848), 1, anon_sym_RBRACE, - STATE(2122), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2336), 1, + STATE(2279), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2494), 1, + STATE(2427), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2505), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15673] = 9, - ACTIONS(5603), 1, + [15745] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5877), 1, + ACTIONS(5898), 1, anon_sym_RBRACE, - STATE(2336), 1, + STATE(2190), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2494), 1, + STATE(2440), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15701] = 9, - ACTIONS(5603), 1, + [15773] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5962), 1, + ACTIONS(5954), 1, anon_sym_RBRACE, - STATE(2199), 1, + STATE(2264), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2454), 1, + STATE(2436), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15729] = 9, - ACTIONS(5603), 1, + [15801] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5883), 1, + ACTIONS(5908), 1, anon_sym_RBRACE, - STATE(2139), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2246), 1, + STATE(2422), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2459), 1, + STATE(2427), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2532), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15757] = 9, - ACTIONS(5603), 1, + [15829] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5793), 1, - anon_sym_RBRACE, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - STATE(2119), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2184), 1, + ACTIONS(5956), 1, + anon_sym_RBRACE, + STATE(2329), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2432), 1, + STATE(2427), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2461), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15785] = 9, - ACTIONS(5603), 1, + [15857] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5932), 1, + ACTIONS(5958), 1, anon_sym_RBRACE, - STATE(2120), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2301), 1, + STATE(2361), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2502), 1, + STATE(2427), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2458), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15813] = 9, - ACTIONS(5603), 1, + [15885] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5964), 1, + ACTIONS(5960), 1, anon_sym_RBRACE, - STATE(2174), 1, + STATE(2286), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2446), 1, + STATE(2439), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15841] = 9, - ACTIONS(5603), 1, + [15913] = 9, + ACTIONS(5611), 1, sym_id_specifier, - ACTIONS(5605), 1, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5928), 1, + ACTIONS(5870), 1, anon_sym_RBRACE, - STATE(2188), 1, + STATE(2381), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2437), 1, + STATE(2463), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [15869] = 3, - ACTIONS(5966), 1, + [15941] = 2, + ACTIONS(4641), 1, + aux_sym__whitespace_token1, + ACTIONS(4639), 7, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_shortcode_name, + sym__whitespace_ge_2, + [15954] = 3, + ACTIONS(5962), 1, sym__last_token_whitespace, - ACTIONS(4393), 2, + ACTIONS(4397), 2, sym__latex_span_close, sym__backslash_escape, - ACTIONS(4395), 5, + ACTIONS(4399), 5, anon_sym_LBRACK, anon_sym_RBRACK, sym__newline_token, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [15884] = 5, + [15969] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4799), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5968), 1, - anon_sym_RPAREN, - STATE(2064), 3, + STATE(2405), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [15902] = 5, + [15987] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4864), 1, + ACTIONS(4866), 1, anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2156), 3, + STATE(1995), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [15920] = 5, + [16005] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4866), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5689), 1, - anon_sym_RPAREN, - STATE(2064), 3, + STATE(2158), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [15938] = 5, - ACTIONS(4787), 1, - anon_sym_RPAREN, + [16023] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2052), 3, + ACTIONS(5651), 1, + anon_sym_RPAREN, + STATE(2181), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [15956] = 5, - ACTIONS(4787), 1, - anon_sym_RPAREN, + [16041] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2159), 3, + ACTIONS(5964), 1, + anon_sym_RPAREN, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [15974] = 7, - ACTIONS(5605), 1, + [16059] = 7, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5970), 1, + ACTIONS(5966), 1, anon_sym_RBRACE, - STATE(2460), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, + STATE(2462), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, + STATE(2472), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, sym__attribute, - [15996] = 5, + [16081] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5775), 1, + ACTIONS(5964), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2197), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16014] = 5, + [16099] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5775), 1, + ACTIONS(5597), 1, anon_sym_RPAREN, - STATE(2005), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16032] = 5, + [16117] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5775), 1, + ACTIONS(5597), 1, anon_sym_RPAREN, - STATE(2164), 3, + STATE(2002), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16050] = 5, + [16135] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5777), 1, + ACTIONS(5597), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2163), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16068] = 5, + [16153] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(5587), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5777), 1, - anon_sym_RPAREN, - STATE(2007), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16086] = 5, + [16171] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(5587), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5777), 1, + STATE(2011), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16189] = 5, + ACTIONS(4789), 1, + sym__newline_token, + ACTIONS(5587), 1, anon_sym_RPAREN, + ACTIONS(5589), 1, + sym__whitespace_ge_2, + ACTIONS(5591), 1, + aux_sym__whitespace_token1, STATE(2166), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16104] = 5, + [16207] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5972), 1, + ACTIONS(5617), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2167), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16122] = 5, + [16225] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5629), 1, + ACTIONS(5593), 1, anon_sym_RPAREN, - STATE(2167), 3, + STATE(2186), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16140] = 5, + [16243] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5629), 1, + ACTIONS(5617), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16158] = 5, + [16261] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5633), 1, + ACTIONS(5639), 1, anon_sym_RPAREN, STATE(2169), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16176] = 5, + [16279] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5633), 1, + ACTIONS(5968), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16194] = 5, + [16297] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5974), 1, + ACTIONS(5639), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16212] = 5, + [16315] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5974), 1, + ACTIONS(5970), 1, anon_sym_RPAREN, - STATE(2171), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16230] = 5, + [16333] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5976), 1, + ACTIONS(5970), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2171), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16248] = 5, + [16351] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5976), 1, + ACTIONS(5972), 1, anon_sym_RPAREN, - STATE(2172), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16266] = 5, + [16369] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5978), 1, + ACTIONS(5972), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2172), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16284] = 5, + [16387] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5980), 1, + ACTIONS(5974), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16302] = 5, + [16405] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5723), 1, + ACTIONS(5976), 1, anon_sym_RPAREN, - STATE(2225), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16320] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5982), 1, - anon_sym_RBRACE, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2524), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [16342] = 5, + [16423] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5723), 1, + ACTIONS(5593), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16360] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5793), 1, - anon_sym_RBRACE, - ACTIONS(5797), 1, - sym_commonmark_name, - STATE(2432), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, - sym__attribute, - [16382] = 5, + [16441] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4842), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2031), 3, + ACTIONS(5781), 1, + anon_sym_RPAREN, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16400] = 5, + [16459] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5984), 1, + ACTIONS(5781), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2029), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16418] = 5, + [16477] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, @@ -181275,831 +181309,748 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__whitespace_token1, ACTIONS(5781), 1, anon_sym_RPAREN, - STATE(2231), 3, + STATE(2220), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16436] = 5, + [16495] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4842), 1, + ACTIONS(5589), 1, + sym__whitespace_ge_2, + ACTIONS(5591), 1, + aux_sym__whitespace_token1, + ACTIONS(5601), 1, anon_sym_RPAREN, + STATE(2188), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16513] = 5, + ACTIONS(4789), 1, + sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2378), 3, + ACTIONS(5968), 1, + anon_sym_RPAREN, + STATE(2198), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16454] = 7, - ACTIONS(5605), 1, + [16531] = 7, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5883), 1, + ACTIONS(5958), 1, anon_sym_RBRACE, - STATE(2459), 1, + STATE(2458), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, + STATE(2462), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [16476] = 5, + [16553] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5725), 1, + ACTIONS(5783), 1, anon_sym_RPAREN, - STATE(2271), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16494] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5851), 1, - anon_sym_RBRACE, - STATE(2463), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, - sym__attribute, - [16516] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5942), 1, - anon_sym_RBRACE, - STATE(2445), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, - sym__attribute, - [16538] = 2, - ACTIONS(5986), 2, - sym__latex_span_close, - sym__backslash_escape, - ACTIONS(5988), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, + [16571] = 5, + ACTIONS(4789), 1, sym__newline_token, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [16550] = 2, - ACTIONS(4587), 2, + ACTIONS(5589), 1, + sym__whitespace_ge_2, + ACTIONS(5591), 1, + aux_sym__whitespace_token1, + ACTIONS(5601), 1, + anon_sym_RPAREN, + STATE(2088), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [16589] = 2, + ACTIONS(4583), 2, sym__latex_span_close, sym__backslash_escape, - ACTIONS(4589), 5, + ACTIONS(4585), 5, anon_sym_LBRACK, anon_sym_RBRACK, sym__newline_token, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [16562] = 5, + [16601] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4848), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, + ACTIONS(5783), 1, + anon_sym_RPAREN, STATE(2034), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16580] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5960), 1, - anon_sym_RBRACE, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2509), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [16602] = 5, + [16619] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4844), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2002), 3, + ACTIONS(5783), 1, + anon_sym_RPAREN, + STATE(2224), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16620] = 7, - ACTIONS(5605), 1, + [16637] = 7, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5962), 1, + ACTIONS(5898), 1, anon_sym_RBRACE, - STATE(2454), 1, + STATE(2440), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, + STATE(2462), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [16642] = 5, + [16659] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5990), 1, + ACTIONS(5978), 1, anon_sym_RPAREN, - STATE(2162), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16660] = 5, + [16677] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4872), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2013), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [16678] = 5, - ACTIONS(4789), 1, - sym__newline_token, - ACTIONS(4872), 1, + ACTIONS(5978), 1, anon_sym_RPAREN, - ACTIONS(5589), 1, - sym__whitespace_ge_2, - ACTIONS(5591), 1, - aux_sym__whitespace_token1, - STATE(2201), 3, + STATE(2191), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16696] = 5, + [16695] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4844), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2218), 3, + ACTIONS(5980), 1, + anon_sym_RPAREN, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16714] = 5, + [16713] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4874), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2014), 3, + ACTIONS(5980), 1, + anon_sym_RPAREN, + STATE(2194), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16732] = 5, + [16731] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5942), 1, + anon_sym_RBRACE, + STATE(2451), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2569), 1, + sym__attribute, + [16753] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4874), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2204), 3, + ACTIONS(5982), 1, + anon_sym_RPAREN, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16750] = 5, + [16771] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4846), 1, + ACTIONS(4872), 1, anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2004), 3, + STATE(2051), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16768] = 5, + [16789] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4846), 1, + ACTIONS(4872), 1, anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2222), 3, + STATE(2201), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16786] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5992), 1, - anon_sym_RBRACE, - STATE(2436), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, - sym__attribute, - [16808] = 5, + [16807] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5781), 1, + ACTIONS(5984), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16826] = 5, + [16825] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(5589), 1, - sym__whitespace_ge_2, - ACTIONS(5591), 1, - aux_sym__whitespace_token1, - ACTIONS(5645), 1, + ACTIONS(4874), 1, anon_sym_RPAREN, - STATE(2064), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [16844] = 5, - ACTIONS(4789), 1, - sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5645), 1, - anon_sym_RPAREN, - STATE(2033), 3, + STATE(2052), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16862] = 5, + [16843] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4874), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5645), 1, - anon_sym_RPAREN, - STATE(2209), 3, + STATE(2205), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16880] = 5, + [16861] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5647), 1, + ACTIONS(5986), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16898] = 5, + [16879] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5647), 1, + ACTIONS(5988), 1, anon_sym_RPAREN, - STATE(2040), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16916] = 5, + [16897] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5647), 1, + ACTIONS(5755), 1, anon_sym_RPAREN, - STATE(2211), 3, + STATE(2152), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16934] = 7, - ACTIONS(5605), 1, + [16915] = 7, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5994), 1, + ACTIONS(5990), 1, anon_sym_RBRACE, - STATE(2451), 1, + STATE(2457), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, + STATE(2462), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [16956] = 5, - ACTIONS(4789), 1, - sym__newline_token, - ACTIONS(5589), 1, - sym__whitespace_ge_2, - ACTIONS(5591), 1, - aux_sym__whitespace_token1, - ACTIONS(5691), 1, - anon_sym_RPAREN, - STATE(2212), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [16974] = 5, + [16937] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5691), 1, + ACTIONS(5777), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16992] = 5, + [16955] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5717), 1, + ACTIONS(5777), 1, anon_sym_RPAREN, - STATE(2214), 3, + STATE(2055), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17010] = 5, + [16973] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5717), 1, + ACTIONS(5777), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2209), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17028] = 5, + [16991] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5996), 1, + ACTIONS(5757), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17046] = 5, + [17009] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5996), 1, + ACTIONS(5779), 1, anon_sym_RPAREN, - STATE(2216), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17064] = 5, + [17027] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5998), 1, + ACTIONS(5779), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(1999), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17082] = 5, + [17045] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5998), 1, + ACTIONS(5779), 1, anon_sym_RPAREN, - STATE(2217), 3, + STATE(2211), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17100] = 5, + [17063] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6000), 1, + ACTIONS(5785), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2212), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17118] = 5, + [17081] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6002), 1, + ACTIONS(5785), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17136] = 5, + [17099] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5617), 1, + ACTIONS(5599), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2214), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17154] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5928), 1, - anon_sym_RBRACE, - STATE(2437), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, - sym__attribute, - [17176] = 5, + [17117] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5617), 1, + ACTIONS(5599), 1, anon_sym_RPAREN, - STATE(2009), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17194] = 5, + [17135] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5617), 1, + ACTIONS(5992), 1, anon_sym_RPAREN, - STATE(2228), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17212] = 5, + [17153] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5627), 1, + ACTIONS(5992), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2216), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17230] = 5, + [17171] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5627), 1, + ACTIONS(5994), 1, anon_sym_RPAREN, - STATE(2012), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17248] = 5, + [17189] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5627), 1, + ACTIONS(5994), 1, anon_sym_RPAREN, - STATE(2232), 3, + STATE(2217), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17266] = 5, + [17207] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6004), 1, + ACTIONS(5996), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17284] = 5, + [17225] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5637), 1, + ACTIONS(5998), 1, anon_sym_RPAREN, - STATE(2233), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17302] = 5, + [17243] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6004), 1, + ACTIONS(5699), 1, anon_sym_RPAREN, - STATE(2248), 3, + STATE(2227), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17320] = 5, + [17261] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4858), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5637), 1, - anon_sym_RPAREN, - STATE(2064), 3, + STATE(2180), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17338] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5909), 1, - anon_sym_RBRACE, - STATE(2438), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, - sym__attribute, - [17360] = 5, + [17279] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5643), 1, + ACTIONS(5699), 1, anon_sym_RPAREN, - STATE(2235), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17378] = 5, + [17297] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6006), 1, + ACTIONS(5709), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2230), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17396] = 5, + [17315] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5936), 1, + anon_sym_RBRACE, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2467), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [17337] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5643), 1, + ACTIONS(5741), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2226), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17414] = 5, + [17355] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6008), 1, + ACTIONS(5709), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17432] = 5, + [17373] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4840), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6008), 1, - anon_sym_RPAREN, - STATE(2237), 3, + STATE(2015), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17450] = 5, + [17391] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6010), 1, + ACTIONS(6000), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17468] = 5, + [17409] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6010), 1, + ACTIONS(6002), 1, anon_sym_RPAREN, - STATE(2239), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17486] = 5, + [17427] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6012), 1, + ACTIONS(6002), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2233), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17504] = 7, - ACTIONS(5605), 1, + [17445] = 7, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5954), 1, + ACTIONS(5918), 1, anon_sym_RBRACE, - STATE(2462), 1, + STATE(2442), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, + STATE(2462), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [17526] = 5, + [17467] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6014), 1, + ACTIONS(6004), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17544] = 5, + [17485] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4882), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2016), 3, + ACTIONS(6004), 1, + anon_sym_RPAREN, + STATE(2235), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17562] = 5, + [17503] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4882), 1, + ACTIONS(4840), 1, anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2249), 3, + STATE(2369), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17580] = 5, + [17521] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, @@ -182108,586 +182059,599 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__whitespace_token1, ACTIONS(6006), 1, anon_sym_RPAREN, - STATE(2268), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17598] = 5, + [17539] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5904), 1, + anon_sym_RBRACE, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2469), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [17561] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4884), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2017), 3, + ACTIONS(6008), 1, + anon_sym_RPAREN, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17616] = 5, + [17579] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5940), 1, + anon_sym_RBRACE, + STATE(2449), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2569), 1, + sym__attribute, + [17601] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4884), 1, + ACTIONS(4882), 1, anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2252), 3, + STATE(2003), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17634] = 5, + [17619] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4848), 1, + ACTIONS(4882), 1, anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2415), 3, + STATE(2245), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17652] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5958), 1, - anon_sym_RBRACE, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2495), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [17674] = 7, - ACTIONS(5605), 1, + [17637] = 7, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6016), 1, + ACTIONS(5862), 1, anon_sym_RBRACE, - STATE(2481), 1, + STATE(2462), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2491), 1, + STATE(2466), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [17696] = 5, + [17659] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4884), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6018), 1, - anon_sym_RPAREN, - STATE(2064), 3, + STATE(2004), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17714] = 5, + [17677] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4884), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5651), 1, - anon_sym_RPAREN, - STATE(2064), 3, + STATE(2249), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17732] = 5, + [17695] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5651), 1, + ACTIONS(5757), 1, anon_sym_RPAREN, - STATE(2025), 3, + STATE(2046), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17750] = 5, + [17713] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(6010), 1, + anon_sym_RBRACE, + STATE(2455), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2569), 1, + sym__attribute, + [17735] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4846), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5651), 1, - anon_sym_RPAREN, - STATE(2256), 3, + STATE(2018), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17768] = 5, + [17753] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5653), 1, + ACTIONS(5619), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17786] = 5, + [17771] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5653), 1, + ACTIONS(5619), 1, anon_sym_RPAREN, - STATE(2027), 3, + STATE(2021), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17804] = 5, + [17789] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5653), 1, + ACTIONS(5619), 1, anon_sym_RPAREN, - STATE(2258), 3, + STATE(2254), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17822] = 5, + [17807] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4846), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5675), 1, - anon_sym_RPAREN, - STATE(2259), 3, + STATE(2378), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17840] = 5, + [17825] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5675), 1, + ACTIONS(5621), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17858] = 5, + [17843] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5679), 1, + ACTIONS(5621), 1, anon_sym_RPAREN, - STATE(2261), 3, + STATE(2056), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17876] = 5, + [17861] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5679), 1, + ACTIONS(5621), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2257), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17894] = 5, + [17879] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6020), 1, + ACTIONS(6000), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2412), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17912] = 5, + [17897] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6020), 1, + ACTIONS(5671), 1, anon_sym_RPAREN, - STATE(2263), 3, + STATE(2258), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17930] = 5, + [17915] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6022), 1, + ACTIONS(5671), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17948] = 5, + [17933] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6022), 1, + ACTIONS(5787), 1, anon_sym_RPAREN, - STATE(2264), 3, + STATE(2260), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17966] = 5, + [17951] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6024), 1, + ACTIONS(5757), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2323), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17984] = 5, + [17969] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6026), 1, + ACTIONS(5787), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18002] = 5, + [17987] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4799), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2053), 3, + ACTIONS(6012), 1, + anon_sym_RPAREN, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18020] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5855), 1, - anon_sym_RBRACE, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2482), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [18042] = 5, + [18005] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4799), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2278), 3, + ACTIONS(6012), 1, + anon_sym_RPAREN, + STATE(2262), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18060] = 5, + [18023] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6028), 1, + ACTIONS(6014), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18078] = 5, + [18041] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4801), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2000), 3, + ACTIONS(6014), 1, + anon_sym_RPAREN, + STATE(2263), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18096] = 5, + [18059] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4801), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2290), 3, + ACTIONS(6016), 1, + anon_sym_RPAREN, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18114] = 5, + [18077] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6030), 1, + ACTIONS(6018), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18132] = 5, + [18095] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(6020), 1, + anon_sym_RBRACE, + STATE(2434), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2569), 1, + sym__attribute, + [18117] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4866), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2402), 3, + ACTIONS(5643), 1, + anon_sym_RPAREN, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18150] = 5, + [18135] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5725), 1, + ACTIONS(5741), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18168] = 7, - ACTIONS(5605), 1, + [18153] = 7, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6032), 1, + ACTIONS(5950), 1, anon_sym_RBRACE, - STATE(2448), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, + STATE(2462), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, - sym__attribute, - [18190] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5956), 1, - anon_sym_RBRACE, - STATE(2447), 1, + STATE(2530), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [18212] = 7, - ACTIONS(5605), 1, + [18175] = 7, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5863), 1, + ACTIONS(5952), 1, anon_sym_RBRACE, - STATE(2440), 1, + STATE(2437), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, + STATE(2462), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [18234] = 5, + [18197] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4848), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5681), 1, - anon_sym_RPAREN, - STATE(2064), 3, + STATE(2039), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18252] = 5, + [18215] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4848), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5779), 1, - anon_sym_RPAREN, - STATE(2064), 3, + STATE(2290), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18270] = 7, - ACTIONS(5605), 1, + [18233] = 7, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5932), 1, + ACTIONS(5848), 1, anon_sym_RBRACE, - STATE(2481), 1, + STATE(2462), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2502), 1, + STATE(2505), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [18292] = 5, + [18255] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4898), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2006), 3, + ACTIONS(5643), 1, + anon_sym_RPAREN, + STATE(1997), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18310] = 5, + [18273] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4850), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5779), 1, + STATE(2040), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [18291] = 5, + ACTIONS(4789), 1, + sym__newline_token, + ACTIONS(4850), 1, anon_sym_RPAREN, - STATE(2010), 3, + ACTIONS(5589), 1, + sym__whitespace_ge_2, + ACTIONS(5591), 1, + aux_sym__whitespace_token1, + STATE(2299), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18328] = 5, + [18309] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4898), 1, + ACTIONS(4894), 1, anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2320), 3, + STATE(2044), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18346] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5948), 1, - anon_sym_RBRACE, - STATE(2456), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, - sym__attribute, - [18368] = 5, + [18327] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5779), 1, + ACTIONS(5643), 1, anon_sym_RPAREN, - STATE(2334), 3, + STATE(2375), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18386] = 5, + [18345] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4894), 1, + ACTIONS(4858), 1, anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(1996), 3, + STATE(2054), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18404] = 5, + [18363] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(4894), 1, @@ -182696,24 +182660,39 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2294), 3, + STATE(2313), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18422] = 5, + [18381] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5960), 1, + anon_sym_RBRACE, + STATE(2439), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2569), 1, + sym__attribute, + [18403] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4900), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5681), 1, - anon_sym_RPAREN, - STATE(2043), 3, + STATE(2049), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18440] = 5, + [18421] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(4896), 1, @@ -182722,11 +182701,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2039), 3, + STATE(2024), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18458] = 5, + [18439] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(4896), 1, @@ -182735,660 +182714,660 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2297), 3, + STATE(2287), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18476] = 5, + [18457] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(6022), 1, + anon_sym_RBRACE, + STATE(2438), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2569), 1, + sym__attribute, + [18479] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4898), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5613), 1, - anon_sym_RPAREN, - STATE(2064), 3, + STATE(2025), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18494] = 5, + [18497] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4898), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5613), 1, - anon_sym_RPAREN, - STATE(2011), 3, + STATE(2291), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18512] = 7, - ACTIONS(5605), 1, + [18515] = 7, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6034), 1, + ACTIONS(6024), 1, anon_sym_RBRACE, - STATE(2467), 1, + STATE(2432), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, + STATE(2462), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [18534] = 5, + [18537] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5613), 1, + ACTIONS(5683), 1, anon_sym_RPAREN, - STATE(2351), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18552] = 5, + [18555] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5593), 1, + ACTIONS(5683), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2030), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18570] = 5, + [18573] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5593), 1, + ACTIONS(5683), 1, anon_sym_RPAREN, - STATE(1998), 3, + STATE(2297), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18588] = 5, + [18591] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5593), 1, + ACTIONS(5737), 1, anon_sym_RPAREN, - STATE(2302), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18606] = 5, + [18609] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5715), 1, + ACTIONS(5685), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18624] = 5, + [18627] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5715), 1, + ACTIONS(5685), 1, anon_sym_RPAREN, - STATE(1999), 3, + STATE(2033), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18642] = 5, + [18645] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5715), 1, + ACTIONS(5685), 1, anon_sym_RPAREN, - STATE(2304), 3, + STATE(2300), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18660] = 5, + [18663] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5609), 1, + ACTIONS(5737), 1, anon_sym_RPAREN, - STATE(2305), 3, + STATE(2023), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18678] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5944), 1, - anon_sym_RBRACE, - STATE(2450), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, - sym__attribute, - [18700] = 5, + [18681] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5609), 1, + ACTIONS(5737), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2318), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18718] = 5, + [18699] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5611), 1, + ACTIONS(5701), 1, anon_sym_RPAREN, - STATE(2307), 3, + STATE(2301), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18736] = 5, + [18717] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5611), 1, + ACTIONS(5701), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18754] = 5, + [18735] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6036), 1, + ACTIONS(5707), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2303), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18772] = 5, + [18753] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6036), 1, + ACTIONS(5739), 1, anon_sym_RPAREN, - STATE(2309), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18790] = 5, + [18771] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6038), 1, + ACTIONS(5707), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18808] = 5, + [18789] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6038), 1, + ACTIONS(6026), 1, anon_sym_RPAREN, - STATE(2310), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18826] = 5, + [18807] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6040), 1, + ACTIONS(6026), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2305), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18844] = 5, + [18825] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6042), 1, + ACTIONS(6028), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18862] = 5, + [18843] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4854), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2015), 3, + ACTIONS(5651), 1, + anon_sym_RPAREN, + STATE(2000), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18880] = 5, + [18861] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4854), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2324), 3, + ACTIONS(6030), 1, + anon_sym_RPAREN, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18898] = 5, + [18879] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4900), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2008), 3, + ACTIONS(6032), 1, + anon_sym_RPAREN, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18916] = 5, + [18897] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4900), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2328), 3, + ACTIONS(5739), 1, + anon_sym_RPAREN, + STATE(2036), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18934] = 5, + [18915] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4900), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5681), 1, - anon_sym_RPAREN, - STATE(2175), 3, + STATE(2319), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18952] = 5, + [18933] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4856), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2024), 3, + ACTIONS(5739), 1, + anon_sym_RPAREN, + STATE(2326), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18970] = 5, + [18951] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4856), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2331), 3, + ACTIONS(5649), 1, + anon_sym_RPAREN, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18988] = 7, - ACTIONS(5605), 1, + [18969] = 7, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6044), 1, + ACTIONS(6034), 1, anon_sym_RBRACE, - STATE(2457), 1, + STATE(2445), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, - sym__attribute, - [19010] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(6046), 1, - anon_sym_RBRACE, - STATE(2481), 1, + STATE(2462), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2529), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [19032] = 5, + [18991] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5631), 1, + ACTIONS(5681), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2327), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19050] = 5, + [19009] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5631), 1, + ACTIONS(5745), 1, anon_sym_RPAREN, - STATE(2026), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19068] = 5, + [19027] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5631), 1, + ACTIONS(5745), 1, anon_sym_RPAREN, - STATE(2369), 3, + STATE(2012), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19086] = 5, + [19045] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4799), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5639), 1, - anon_sym_RPAREN, - STATE(2150), 3, + STATE(2043), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19104] = 5, + [19063] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5649), 1, + ACTIONS(5745), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2362), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19122] = 5, + [19081] = 5, + ACTIONS(4787), 1, + anon_sym_RPAREN, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5649), 1, - anon_sym_RPAREN, - STATE(2029), 3, + STATE(2013), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19140] = 5, + [19099] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5649), 1, + ACTIONS(5681), 1, anon_sym_RPAREN, - STATE(2346), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19158] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5877), 1, - anon_sym_RBRACE, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2494), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [19180] = 5, + [19117] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5635), 1, + ACTIONS(5767), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19198] = 5, + [19135] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5635), 1, + ACTIONS(5767), 1, anon_sym_RPAREN, - STATE(1995), 3, + STATE(2014), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19216] = 5, + [19153] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5635), 1, + ACTIONS(5719), 1, anon_sym_RPAREN, - STATE(2372), 3, + STATE(2331), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19234] = 5, + [19171] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5673), 1, + ACTIONS(5767), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2365), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19252] = 5, + [19189] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5673), 1, + ACTIONS(5755), 1, anon_sym_RPAREN, - STATE(2030), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19270] = 5, + [19207] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4801), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5673), 1, - anon_sym_RPAREN, - STATE(2353), 3, + STATE(2017), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19288] = 5, + [19225] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5866), 1, + anon_sym_RBRACE, + STATE(2446), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2569), 1, + sym__attribute, + [19247] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5639), 1, + ACTIONS(5719), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19306] = 5, + [19265] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5641), 1, + ACTIONS(6036), 1, anon_sym_RPAREN, - STATE(2385), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19324] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5946), 1, - anon_sym_RBRACE, - STATE(2449), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, - sym__attribute, - [19346] = 5, + [19283] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4906), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2018), 3, + ACTIONS(6036), 1, + anon_sym_RPAREN, + STATE(2337), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19364] = 5, + [19301] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(6038), 1, + anon_sym_RBRACE, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2478), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [19323] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5938), 1, + anon_sym_RBRACE, + STATE(2450), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2569), 1, + sym__attribute, + [19345] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4906), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2343), 3, + ACTIONS(6040), 1, + anon_sym_RPAREN, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19382] = 5, + [19363] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(4908), 1, @@ -183397,11 +183376,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2019), 3, + STATE(2005), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19400] = 5, + [19381] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(4908), 1, @@ -183410,4324 +183389,4378 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2347), 3, + STATE(2340), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19418] = 5, + [19399] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5683), 1, + ACTIONS(6040), 1, anon_sym_RPAREN, - STATE(2363), 3, + STATE(2338), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19436] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(6048), 1, - anon_sym_RBRACE, - STATE(2443), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, - sym__attribute, - [19458] = 5, + [19417] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4910), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5655), 1, - anon_sym_RPAREN, - STATE(2064), 3, + STATE(2006), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19476] = 5, + [19435] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4910), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5655), 1, - anon_sym_RPAREN, - STATE(2022), 3, + STATE(2344), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19494] = 5, + [19453] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5655), 1, + ACTIONS(6042), 1, anon_sym_RPAREN, - STATE(2354), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19512] = 5, + [19471] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5683), 1, + ACTIONS(6044), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19530] = 5, + [19489] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(6046), 1, + anon_sym_RBRACE, + STATE(2454), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2569), 1, + sym__attribute, + [19511] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5657), 1, + ACTIONS(5623), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19548] = 5, + [19529] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5657), 1, + ACTIONS(5623), 1, anon_sym_RPAREN, - STATE(2056), 3, + STATE(2009), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19566] = 5, + [19547] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5657), 1, + ACTIONS(5623), 1, anon_sym_RPAREN, - STATE(2356), 3, + STATE(2350), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19584] = 5, + [19565] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4801), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5685), 1, - anon_sym_RPAREN, - STATE(2366), 3, + STATE(2413), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19602] = 5, + [19583] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5641), 1, + ACTIONS(5625), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19620] = 5, + [19601] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5669), 1, + ACTIONS(5625), 1, anon_sym_RPAREN, - STATE(2357), 3, + STATE(2010), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19638] = 5, + [19619] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5685), 1, + ACTIONS(5625), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2353), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19656] = 5, + [19637] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5858), 1, + anon_sym_RBRACE, + STATE(2430), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2569), 1, + sym__attribute, + [19659] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5669), 1, + ACTIONS(5595), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2165), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19674] = 5, + [19677] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5791), 1, + ACTIONS(5635), 1, anon_sym_RPAREN, - STATE(2359), 3, + STATE(2354), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19692] = 5, + [19695] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5791), 1, + ACTIONS(5635), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19710] = 5, + [19713] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6050), 1, + ACTIONS(5637), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2356), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19728] = 5, + [19731] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6050), 1, + ACTIONS(6048), 1, anon_sym_RPAREN, - STATE(2361), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19746] = 5, + [19749] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6052), 1, + ACTIONS(5637), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19764] = 5, + [19767] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6052), 1, + ACTIONS(6050), 1, anon_sym_RPAREN, - STATE(2362), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19782] = 5, + [19785] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6054), 1, + ACTIONS(6050), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2358), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19800] = 5, + [19803] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6056), 1, + ACTIONS(6052), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19818] = 5, + [19821] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6058), 1, + ACTIONS(6052), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2359), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19836] = 5, + [19839] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5677), 1, + ACTIONS(6054), 1, anon_sym_RPAREN, - STATE(2373), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19854] = 5, + [19857] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6058), 1, + ACTIONS(6056), 1, anon_sym_RPAREN, - STATE(2368), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19872] = 5, + [19875] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6060), 1, + ACTIONS(5641), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2366), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19890] = 5, + [19893] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(6058), 1, + anon_sym_RBRACE, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2533), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [19915] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6060), 1, + ACTIONS(5641), 1, anon_sym_RPAREN, - STATE(2371), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19908] = 5, + [19933] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6062), 1, + ACTIONS(5645), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2368), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19926] = 5, + [19951] = 5, + ACTIONS(4787), 1, + anon_sym_RPAREN, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5677), 1, - anon_sym_RPAREN, - STATE(2064), 3, + STATE(2265), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19944] = 5, + [19969] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(5587), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2375), 3, + ACTIONS(5645), 1, + anon_sym_RPAREN, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19962] = 5, + [19987] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6064), 1, + ACTIONS(6060), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19980] = 5, + [20005] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(5587), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2064), 3, + ACTIONS(6060), 1, + anon_sym_RPAREN, + STATE(2373), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19998] = 5, + [20023] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6066), 1, + ACTIONS(6062), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20016] = 5, + [20041] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6066), 1, + ACTIONS(5647), 1, anon_sym_RPAREN, - STATE(2377), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20034] = 5, + [20059] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6068), 1, + ACTIONS(5647), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2041), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20052] = 5, + [20077] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6068), 1, + ACTIONS(5647), 1, anon_sym_RPAREN, - STATE(2384), 3, + STATE(2266), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20070] = 5, + [20095] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6070), 1, + ACTIONS(6062), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2374), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20088] = 5, + [20113] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5687), 1, + ACTIONS(6064), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20106] = 5, + [20131] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5687), 1, + ACTIONS(6066), 1, anon_sym_RPAREN, - STATE(2032), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20124] = 5, + [20149] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5968), 1, + ACTIONS(5595), 1, anon_sym_RPAREN, - STATE(2388), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20142] = 7, - ACTIONS(5605), 1, + [20167] = 7, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5807), 1, + ACTIONS(6068), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2452), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, + STATE(2462), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, + STATE(2569), 1, + sym__attribute, + [20189] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5870), 1, + anon_sym_RBRACE, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2463), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, sym__attribute, - [20164] = 5, + [20211] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5687), 1, + ACTIONS(5653), 1, anon_sym_RPAREN, - STATE(2152), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20182] = 5, + [20229] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5689), 1, + ACTIONS(5653), 1, anon_sym_RPAREN, - STATE(2414), 3, + STATE(2016), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20200] = 5, + [20247] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5819), 1, + anon_sym_RBRACE, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2507), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [20269] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5946), 1, + anon_sym_RBRACE, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2468), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [20291] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(5589), 1, - sym__whitespace_ge_2, - ACTIONS(5591), 1, - aux_sym__whitespace_token1, - ACTIONS(6072), 1, + ACTIONS(4916), 1, anon_sym_RPAREN, - STATE(2064), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [20218] = 5, - ACTIONS(4789), 1, - sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6074), 1, - anon_sym_RPAREN, - STATE(2064), 3, + STATE(2027), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20236] = 5, + [20309] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(5589), 1, - sym__whitespace_ge_2, - ACTIONS(5591), 1, - aux_sym__whitespace_token1, - ACTIONS(6074), 1, + ACTIONS(4916), 1, anon_sym_RPAREN, - STATE(2393), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [20254] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5952), 1, - anon_sym_RBRACE, - STATE(2444), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, - sym__attribute, - [20276] = 5, - ACTIONS(4789), 1, - sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6076), 1, - anon_sym_RPAREN, - STATE(2064), 3, + STATE(2388), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20294] = 5, + [20327] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4914), 1, + ACTIONS(4918), 1, anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2037), 3, + STATE(2028), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20312] = 5, + [20345] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4914), 1, + ACTIONS(4918), 1, anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2395), 3, + STATE(2391), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20330] = 5, + [20363] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4916), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2038), 3, + ACTIONS(6048), 1, + anon_sym_RPAREN, + STATE(2417), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20348] = 5, + [20381] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(6070), 1, + anon_sym_RBRACE, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2470), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [20403] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4916), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2399), 3, + ACTIONS(5695), 1, + anon_sym_RPAREN, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20366] = 5, + [20421] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6078), 1, + ACTIONS(5695), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2031), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20384] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(6080), 1, - anon_sym_RBRACE, - STATE(2453), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, - sym__attribute, - [20406] = 5, + [20439] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5711), 1, + ACTIONS(5695), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2395), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20424] = 5, + [20457] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5711), 1, + ACTIONS(5697), 1, anon_sym_RPAREN, - STATE(2041), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20442] = 5, + [20475] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5711), 1, + ACTIONS(5697), 1, anon_sym_RPAREN, - STATE(2405), 3, + STATE(2032), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20460] = 5, + [20493] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4922), 1, - anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2277), 3, + ACTIONS(5697), 1, + anon_sym_RPAREN, + STATE(2397), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20478] = 5, + [20511] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5713), 1, + ACTIONS(5703), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2398), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20496] = 5, + [20529] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5713), 1, + ACTIONS(5703), 1, anon_sym_RPAREN, - STATE(2042), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20514] = 5, + [20547] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5713), 1, + ACTIONS(5705), 1, anon_sym_RPAREN, - STATE(2407), 3, + STATE(2400), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20532] = 5, + [20565] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5615), 1, + ACTIONS(5705), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20550] = 5, + [20583] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5719), 1, + ACTIONS(6072), 1, anon_sym_RPAREN, - STATE(2408), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20568] = 5, + [20601] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5615), 1, + ACTIONS(6072), 1, anon_sym_RPAREN, - STATE(2054), 3, + STATE(2402), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20586] = 5, + [20619] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5719), 1, + ACTIONS(6074), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20604] = 5, + [20637] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5721), 1, + ACTIONS(6074), 1, anon_sym_RPAREN, - STATE(2410), 3, + STATE(2403), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20622] = 5, + [20655] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5721), 1, + ACTIONS(6076), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20640] = 5, + [20673] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6082), 1, + ACTIONS(6078), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20658] = 5, + [20691] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5930), 1, + anon_sym_RBRACE, + STATE(2443), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2569), 1, + sym__attribute, + [20713] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6082), 1, + ACTIONS(5743), 1, anon_sym_RPAREN, - STATE(2412), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20676] = 5, + [20731] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6084), 1, + ACTIONS(5743), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(1996), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20694] = 5, + [20749] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6084), 1, + ACTIONS(5653), 1, anon_sym_RPAREN, - STATE(2413), 3, + STATE(2310), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20712] = 5, + [20767] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6086), 1, + ACTIONS(5743), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2173), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20730] = 5, + [20785] = 2, + ACTIONS(4635), 2, + sym__latex_span_close, + sym__backslash_escape, + ACTIONS(4637), 5, + anon_sym_LBRACK, + anon_sym_RBRACK, + sym__newline_token, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [20797] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5926), 1, + anon_sym_RBRACE, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2518), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [20819] = 2, + ACTIONS(6080), 2, + sym__latex_span_close, + sym__backslash_escape, + ACTIONS(6082), 5, + anon_sym_LBRACK, + anon_sym_RBRACK, + sym__newline_token, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [20831] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6088), 1, + ACTIONS(6084), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20748] = 5, + [20849] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5990), 1, + ACTIONS(5651), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20766] = 5, + [20867] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5948), 1, + anon_sym_RBRACE, + STATE(2448), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2569), 1, + sym__attribute, + [20889] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5908), 1, + anon_sym_RBRACE, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2532), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [20911] = 7, + ACTIONS(5613), 1, + sym_class_specifier, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5956), 1, + anon_sym_RBRACE, + STATE(2461), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2569), 1, + sym__attribute, + [20933] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5693), 1, + ACTIONS(6086), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(2088), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20784] = 5, + [20951] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4864), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5693), 1, - anon_sym_RPAREN, - STATE(2044), 3, + STATE(1998), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20802] = 5, + [20969] = 5, ACTIONS(4789), 1, sym__newline_token, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(6030), 1, + ACTIONS(5649), 1, anon_sym_RPAREN, - STATE(2178), 3, + STATE(2352), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20820] = 5, + [20987] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4856), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5693), 1, - anon_sym_RPAREN, - STATE(2273), 3, + STATE(2053), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20838] = 2, - ACTIONS(4639), 2, - sym__latex_span_close, - sym__backslash_escape, - ACTIONS(4641), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__newline_token, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [20850] = 5, + [21005] = 5, ACTIONS(4789), 1, sym__newline_token, + ACTIONS(4864), 1, + anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - ACTIONS(5615), 1, - anon_sym_RPAREN, - STATE(2200), 3, + STATE(2155), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20868] = 7, - ACTIONS(5605), 1, + [21023] = 7, + ACTIONS(5613), 1, sym_class_specifier, - ACTIONS(5607), 1, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5801), 1, + ACTIONS(5954), 1, anon_sym_RBRACE, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2531), 1, + STATE(2436), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [20890] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(6090), 1, - anon_sym_RBRACE, - STATE(2481), 1, + STATE(2462), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2539), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [20912] = 5, + [21045] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4922), 1, + ACTIONS(4902), 1, anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2028), 3, + STATE(2047), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20930] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5905), 1, - anon_sym_RBRACE, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2537), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [20952] = 5, + [21063] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4866), 1, + ACTIONS(4856), 1, anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2001), 3, + STATE(2174), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20970] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5950), 1, - anon_sym_RBRACE, - STATE(2475), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, - sym__attribute, - [20992] = 7, - ACTIONS(5605), 1, - sym_class_specifier, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5964), 1, - anon_sym_RBRACE, - STATE(2446), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2593), 1, - sym__attribute, - [21014] = 5, + [21081] = 5, ACTIONS(4789), 1, sym__newline_token, - ACTIONS(4864), 1, + ACTIONS(4902), 1, anon_sym_RPAREN, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2051), 3, + STATE(2204), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [21099] = 5, + ACTIONS(4789), 1, + sym__newline_token, + ACTIONS(5589), 1, + sym__whitespace_ge_2, + ACTIONS(5591), 1, + aux_sym__whitespace_token1, + ACTIONS(6028), 1, + anon_sym_RPAREN, + STATE(2306), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [21032] = 4, - ACTIONS(6094), 1, + [21117] = 4, + ACTIONS(6090), 1, sym_id_specifier, - ACTIONS(6097), 1, + ACTIONS(6093), 1, sym_key_value_key, - STATE(2429), 1, + STATE(2427), 1, aux_sym_commonmark_attribute_repeat1, - ACTIONS(6092), 3, + ACTIONS(6088), 3, anon_sym_RBRACE, sym_commonmark_name, sym_class_specifier, - [21047] = 3, - ACTIONS(6101), 1, + [21132] = 3, + ACTIONS(6097), 1, sym__commonmark_whitespace, - ACTIONS(6103), 1, + ACTIONS(6099), 1, sym_key_value_key, - ACTIONS(6099), 4, + ACTIONS(6095), 4, anon_sym_RBRACE, sym_commonmark_name, sym_id_specifier, sym_class_specifier, - [21060] = 5, + [21145] = 5, + ACTIONS(6101), 1, + anon_sym_DQUOTE, + ACTIONS(6103), 1, + anon_sym_SQUOTE, ACTIONS(6105), 1, - anon_sym_RBRACE, + sym__commonmark_whitespace, ACTIONS(6107), 1, + aux_sym_key_value_value_token1, + STATE(2567), 1, + sym_key_value_value, + [21161] = 5, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6110), 1, + ACTIONS(5958), 1, + anon_sym_RBRACE, + STATE(2464), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [21177] = 5, + ACTIONS(6109), 1, + sym__whitespace_ge_2, + ACTIONS(6111), 1, + aux_sym__whitespace_token1, + STATE(1985), 1, + sym__whitespace, + STATE(2503), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2579), 1, + aux_sym_shortcode_escaped_repeat2, + [21193] = 5, + ACTIONS(5615), 1, sym_key_value_key, - STATE(2431), 1, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(6113), 1, + anon_sym_RBRACE, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21076] = 5, - ACTIONS(5607), 1, + [21209] = 4, + ACTIONS(6115), 1, + sym_shortcode_name, + ACTIONS(6117), 1, + sym_shortcode_number, + STATE(2780), 1, + sym_shortcode_boolean, + ACTIONS(5459), 2, + anon_sym_true, + anon_sym_false, + [21223] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5942), 1, + ACTIONS(6119), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21092] = 2, - ACTIONS(6097), 1, + [21239] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(6092), 4, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5918), 1, anon_sym_RBRACE, + STATE(2464), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [21255] = 5, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, sym_commonmark_name, - sym_id_specifier, - sym_class_specifier, - [21102] = 5, - ACTIONS(5607), 1, + ACTIONS(6020), 1, + anon_sym_RBRACE, + STATE(2464), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [21271] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5932), 1, + ACTIONS(6034), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21118] = 5, - ACTIONS(5607), 1, + [21287] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5952), 1, + ACTIONS(6121), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21134] = 5, - ACTIONS(5607), 1, + [21303] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6113), 1, + ACTIONS(6024), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21150] = 5, - ACTIONS(5607), 1, + [21319] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5960), 1, + ACTIONS(5942), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21166] = 5, - ACTIONS(5607), 1, + [21335] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5954), 1, + ACTIONS(5904), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21182] = 4, - ACTIONS(6115), 1, - sym_shortcode_name, - ACTIONS(6117), 1, - sym_shortcode_number, - STATE(2823), 1, - sym_shortcode_boolean, - ACTIONS(5459), 2, - anon_sym_true, - anon_sym_false, - [21196] = 5, - ACTIONS(5607), 1, + [21351] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5948), 1, + ACTIONS(5940), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21212] = 5, - ACTIONS(6119), 1, - sym__whitespace_ge_2, - ACTIONS(6121), 1, - aux_sym__whitespace_token1, - STATE(1979), 1, - sym__whitespace, - STATE(2518), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2554), 1, - aux_sym_shortcode_escaped_repeat2, - [21228] = 5, - ACTIONS(6123), 1, - anon_sym_DQUOTE, - ACTIONS(6125), 1, - anon_sym_SQUOTE, - ACTIONS(6127), 1, - sym__commonmark_whitespace, - ACTIONS(6129), 1, - aux_sym_key_value_value_token1, - STATE(2553), 1, - sym_key_value_value, - [21244] = 5, - ACTIONS(5607), 1, + [21367] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6131), 1, + ACTIONS(5936), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21260] = 5, - ACTIONS(5607), 1, + [21383] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6080), 1, + ACTIONS(5866), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21276] = 5, - ACTIONS(5607), 1, + [21399] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5994), 1, + ACTIONS(6123), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21292] = 5, - ACTIONS(5607), 1, + [21415] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5982), 1, + ACTIONS(5938), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21308] = 5, - ACTIONS(5607), 1, + [21431] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6044), 1, + ACTIONS(5862), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21324] = 5, - ACTIONS(5607), 1, + [21447] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6133), 1, + ACTIONS(5966), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21340] = 5, - ACTIONS(5607), 1, + [21463] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6048), 1, + ACTIONS(6010), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21356] = 5, - ACTIONS(5607), 1, + [21479] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, ACTIONS(6046), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21372] = 5, - ACTIONS(5607), 1, + [21495] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6135), 1, + ACTIONS(5990), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21388] = 5, - ACTIONS(5607), 1, + [21511] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5883), 1, + ACTIONS(6125), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21404] = 5, - ACTIONS(5607), 1, + [21527] = 5, + ACTIONS(6101), 1, + anon_sym_DQUOTE, + ACTIONS(6103), 1, + anon_sym_SQUOTE, + ACTIONS(6107), 1, + aux_sym_key_value_value_token1, + ACTIONS(6127), 1, + sym__commonmark_whitespace, + STATE(2581), 1, + sym_key_value_value, + [21543] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6137), 1, + ACTIONS(6129), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21420] = 5, - ACTIONS(5607), 1, + [21559] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5992), 1, + ACTIONS(6131), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21436] = 5, - ACTIONS(5607), 1, + [21575] = 3, + ACTIONS(6135), 1, + sym__commonmark_whitespace, + ACTIONS(6137), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(6133), 3, + anon_sym_RBRACE, + sym_commonmark_name, + sym_class_specifier, + [21587] = 5, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5855), 1, + ACTIONS(6139), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21452] = 5, - ACTIONS(5607), 1, + [21603] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6034), 1, + ACTIONS(6058), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21468] = 5, - ACTIONS(5607), 1, + [21619] = 2, + ACTIONS(6093), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(6088), 4, + anon_sym_RBRACE, sym_commonmark_name, - ACTIONS(6139), 1, + sym_id_specifier, + sym_class_specifier, + [21629] = 5, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5870), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, + sym__attribute, + [21645] = 5, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(6038), 1, + anon_sym_RBRACE, + STATE(2464), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, sym__attribute, - [21484] = 3, + [21661] = 4, ACTIONS(6143), 1, - sym__commonmark_whitespace, - ACTIONS(6145), 1, + sym_class_specifier, + ACTIONS(6146), 1, sym_key_value_key, - ACTIONS(6141), 3, + STATE(2462), 1, + aux_sym_commonmark_attribute_repeat2, + ACTIONS(6141), 2, anon_sym_RBRACE, sym_commonmark_name, - sym_class_specifier, - [21496] = 5, - ACTIONS(5607), 1, + [21675] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5958), 1, + ACTIONS(5946), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21512] = 5, - ACTIONS(5607), 1, + [21691] = 5, + ACTIONS(6148), 1, + anon_sym_RBRACE, + ACTIONS(6150), 1, + sym_commonmark_name, + ACTIONS(6153), 1, sym_key_value_key, - ACTIONS(5797), 1, + STATE(2464), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [21707] = 5, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6147), 1, + ACTIONS(5819), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21528] = 5, - ACTIONS(5607), 1, + [21723] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5877), 1, + ACTIONS(5950), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21544] = 5, - ACTIONS(5607), 1, + [21739] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6016), 1, + ACTIONS(6068), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21560] = 5, - ACTIONS(5607), 1, + [21755] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5962), 1, + ACTIONS(6070), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21576] = 5, - ACTIONS(5607), 1, + [21771] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5909), 1, + ACTIONS(5952), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21592] = 5, - ACTIONS(6149), 1, - sym__whitespace_ge_2, - ACTIONS(6151), 1, - aux_sym__whitespace_token1, - STATE(1991), 1, - sym__whitespace, - STATE(2466), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2550), 1, - aux_sym_shortcode_escaped_repeat2, - [21608] = 5, - ACTIONS(6149), 1, - sym__whitespace_ge_2, - ACTIONS(6151), 1, - aux_sym__whitespace_token1, - STATE(1986), 1, - sym__whitespace, - STATE(2577), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2591), 1, - aux_sym_shortcode_escaped_repeat2, - [21624] = 5, - ACTIONS(5607), 1, + [21787] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6153), 1, + ACTIONS(6156), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21640] = 5, - ACTIONS(5607), 1, + [21803] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5851), 1, + ACTIONS(5848), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, + sym__attribute, + [21819] = 5, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(6158), 1, + anon_sym_RBRACE, + STATE(2464), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, sym__attribute, - [21656] = 4, - ACTIONS(6155), 1, + [21835] = 4, + ACTIONS(6160), 1, sym_shortcode_name, - ACTIONS(6157), 1, + ACTIONS(6162), 1, sym_shortcode_number, - STATE(2817), 1, + STATE(2816), 1, sym_shortcode_boolean, ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - [21670] = 5, - ACTIONS(6149), 1, + [21849] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1964), 1, + STATE(1954), 1, sym__whitespace, - STATE(2472), 1, + STATE(2476), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2558), 1, + STATE(2607), 1, aux_sym_shortcode_escaped_repeat2, - [21686] = 5, - ACTIONS(6119), 1, + [21865] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1965), 1, + STATE(1955), 1, sym__whitespace, - STATE(2473), 1, + STATE(2477), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2559), 1, + STATE(2557), 1, aux_sym_shortcode_escaped_repeat2, - [21702] = 5, - ACTIONS(6149), 1, + [21881] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1969), 1, + STATE(1959), 1, sym__whitespace, - STATE(2560), 1, + STATE(2559), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2577), 1, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - [21718] = 5, - ACTIONS(6119), 1, + [21897] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1971), 1, + STATE(1990), 1, sym__whitespace, - STATE(2561), 1, + STATE(2563), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2577), 1, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - [21734] = 4, - ACTIONS(6159), 1, + [21913] = 5, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(6168), 1, + anon_sym_RBRACE, + STATE(2464), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [21929] = 4, + ACTIONS(6170), 1, sym_shortcode_name, - ACTIONS(6161), 1, + ACTIONS(6172), 1, sym_shortcode_number, - STATE(2816), 1, + STATE(2795), 1, sym_shortcode_boolean, ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - [21748] = 5, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5970), 1, - anon_sym_RBRACE, - STATE(2431), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [21764] = 5, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5928), 1, - anon_sym_RBRACE, - STATE(2431), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [21780] = 5, - ACTIONS(6149), 1, + [21943] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1966), 1, + STATE(1953), 1, sym__whitespace, - STATE(2479), 1, + STATE(2482), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2563), 1, + STATE(2610), 1, aux_sym_shortcode_escaped_repeat2, - [21796] = 5, - ACTIONS(6119), 1, + [21959] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1990), 1, + STATE(1940), 1, sym__whitespace, - STATE(2480), 1, + STATE(2483), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2564), 1, + STATE(2586), 1, aux_sym_shortcode_escaped_repeat2, - [21812] = 5, - ACTIONS(6149), 1, + [21975] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1989), 1, + STATE(1943), 1, sym__whitespace, STATE(2565), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(2577), 1, aux_sym_shortcode_escaped_repeat1, - [21828] = 5, - ACTIONS(6119), 1, + STATE(2588), 1, + aux_sym_shortcode_escaped_repeat2, + [21991] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1954), 1, + STATE(1944), 1, sym__whitespace, - STATE(2566), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(2577), 1, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - [21844] = 4, - ACTIONS(6165), 1, - sym_class_specifier, - ACTIONS(6168), 1, - sym_key_value_key, - STATE(2481), 1, - aux_sym_commonmark_attribute_repeat2, - ACTIONS(6163), 2, - anon_sym_RBRACE, - sym_commonmark_name, - [21858] = 5, - ACTIONS(5607), 1, + STATE(2593), 1, + aux_sym_shortcode_escaped_repeat2, + [22007] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5956), 1, + ACTIONS(5926), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [21874] = 4, - ACTIONS(6170), 1, + [22023] = 5, + ACTIONS(6164), 1, + sym__whitespace_ge_2, + ACTIONS(6166), 1, + aux_sym__whitespace_token1, + STATE(1980), 1, + sym__whitespace, + STATE(2551), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2565), 1, + aux_sym_shortcode_escaped_repeat1, + [22039] = 4, + ACTIONS(6174), 1, sym_shortcode_name, - ACTIONS(6172), 1, + ACTIONS(6176), 1, sym_shortcode_number, - STATE(2770), 1, + STATE(2889), 1, sym_shortcode_boolean, ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - [21888] = 5, - ACTIONS(6149), 1, + [22053] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1956), 1, + STATE(1968), 1, sym__whitespace, - STATE(2486), 1, + STATE(2544), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2568), 1, + STATE(2608), 1, aux_sym_shortcode_escaped_repeat2, - [21904] = 5, - ACTIONS(6119), 1, + [22069] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1957), 1, + STATE(1969), 1, sym__whitespace, - STATE(2487), 1, + STATE(2490), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2569), 1, + STATE(2552), 1, aux_sym_shortcode_escaped_repeat2, - [21920] = 5, - ACTIONS(6149), 1, + [22085] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1967), 1, + STATE(1977), 1, sym__whitespace, - STATE(2570), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(2577), 1, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - [21936] = 5, - ACTIONS(6119), 1, + STATE(2597), 1, + aux_sym_shortcode_escaped_repeat2, + [22101] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1968), 1, + STATE(1942), 1, sym__whitespace, - STATE(2571), 1, + STATE(2555), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2577), 1, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - [21952] = 5, - ACTIONS(6123), 1, - anon_sym_DQUOTE, - ACTIONS(6125), 1, - anon_sym_SQUOTE, - ACTIONS(6129), 1, - aux_sym_key_value_value_token1, - ACTIONS(6174), 1, - sym__commonmark_whitespace, - STATE(2586), 1, - sym_key_value_value, - [21968] = 4, - ACTIONS(6176), 1, - sym_shortcode_name, + [22117] = 5, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5930), 1, + anon_sym_RBRACE, + STATE(2464), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [22133] = 4, ACTIONS(6178), 1, + sym_shortcode_name, + ACTIONS(6180), 1, sym_shortcode_number, - STATE(2776), 1, + STATE(2748), 1, sym_shortcode_boolean, ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - [21982] = 5, - ACTIONS(6149), 1, + [22147] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(1941), 1, sym__whitespace, - STATE(2492), 1, + STATE(2485), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2572), 1, + STATE(2556), 1, aux_sym_shortcode_escaped_repeat2, - [21998] = 5, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(6180), 1, - anon_sym_RBRACE, - STATE(2431), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [22014] = 5, - ACTIONS(6149), 1, + [22163] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1946), 1, + STATE(1970), 1, sym__whitespace, - STATE(2575), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(2577), 1, + STATE(2496), 1, aux_sym_shortcode_escaped_repeat1, - [22030] = 5, - ACTIONS(6119), 1, + STATE(2571), 1, + aux_sym_shortcode_escaped_repeat2, + [22179] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1947), 1, + STATE(1971), 1, sym__whitespace, + STATE(2497), 1, + aux_sym_shortcode_escaped_repeat1, STATE(2576), 1, aux_sym_shortcode_escaped_repeat2, + [22195] = 5, + ACTIONS(6164), 1, + sym__whitespace_ge_2, + ACTIONS(6166), 1, + aux_sym__whitespace_token1, + STATE(1982), 1, + sym__whitespace, + STATE(2565), 1, + aux_sym_shortcode_escaped_repeat1, STATE(2577), 1, + aux_sym_shortcode_escaped_repeat2, + [22211] = 5, + ACTIONS(6109), 1, + sym__whitespace_ge_2, + ACTIONS(6111), 1, + aux_sym__whitespace_token1, + STATE(1983), 1, + sym__whitespace, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - [22046] = 5, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5946), 1, - anon_sym_RBRACE, - STATE(2431), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [22062] = 5, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(6032), 1, - anon_sym_RBRACE, - STATE(2431), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [22078] = 4, + STATE(2578), 1, + aux_sym_shortcode_escaped_repeat2, + [22227] = 4, ACTIONS(6182), 1, sym_shortcode_name, ACTIONS(6184), 1, sym_shortcode_number, - STATE(2774), 1, + STATE(2871), 1, sym_shortcode_boolean, ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - [22092] = 5, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5801), 1, - anon_sym_RBRACE, - STATE(2431), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [22108] = 5, - ACTIONS(6149), 1, + [22241] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1970), 1, + STATE(1945), 1, sym__whitespace, - STATE(2500), 1, + STATE(2501), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2578), 1, + STATE(2587), 1, aux_sym_shortcode_escaped_repeat2, - [22124] = 5, - ACTIONS(6119), 1, + [22257] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1972), 1, + STATE(1946), 1, sym__whitespace, - STATE(2501), 1, + STATE(2502), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2579), 1, + STATE(2589), 1, aux_sym_shortcode_escaped_repeat2, - [22140] = 5, - ACTIONS(6149), 1, + [22273] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1977), 1, + STATE(1947), 1, sym__whitespace, - STATE(2577), 1, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2580), 1, + STATE(2590), 1, aux_sym_shortcode_escaped_repeat2, - [22156] = 5, - ACTIONS(6119), 1, + [22289] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1978), 1, + STATE(1984), 1, sym__whitespace, - STATE(2577), 1, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2581), 1, + STATE(2591), 1, aux_sym_shortcode_escaped_repeat2, - [22172] = 5, - ACTIONS(5607), 1, + [22305] = 5, + ACTIONS(6109), 1, + sym__whitespace_ge_2, + ACTIONS(6111), 1, + aux_sym__whitespace_token1, + STATE(1988), 1, + sym__whitespace, + STATE(2564), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2565), 1, + aux_sym_shortcode_escaped_repeat1, + [22321] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5944), 1, + ACTIONS(5858), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [22188] = 5, - ACTIONS(5607), 1, + [22337] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5793), 1, - anon_sym_RBRACE, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - STATE(2431), 1, + ACTIONS(5960), 1, + anon_sym_RBRACE, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [22204] = 4, + [22353] = 4, ACTIONS(6186), 1, sym_shortcode_name, ACTIONS(6188), 1, sym_shortcode_number, - STATE(2781), 1, + STATE(2765), 1, sym_shortcode_boolean, ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - [22218] = 5, - ACTIONS(6149), 1, + [22367] = 5, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5948), 1, + anon_sym_RBRACE, + STATE(2464), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [22383] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1943), 1, + STATE(1958), 1, sym__whitespace, - STATE(2507), 1, + STATE(2510), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2582), 1, + STATE(2546), 1, aux_sym_shortcode_escaped_repeat2, - [22234] = 5, - ACTIONS(6119), 1, + [22399] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1952), 1, + STATE(1961), 1, sym__whitespace, - STATE(2508), 1, + STATE(2511), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2614), 1, + STATE(2548), 1, aux_sym_shortcode_escaped_repeat2, - [22250] = 5, - ACTIONS(6149), 1, + [22415] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1953), 1, + STATE(1962), 1, sym__whitespace, - STATE(2577), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2584), 1, + STATE(2549), 1, aux_sym_shortcode_escaped_repeat2, - [22266] = 5, - ACTIONS(6119), 1, + STATE(2565), 1, + aux_sym_shortcode_escaped_repeat1, + [22431] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1987), 1, + STATE(1963), 1, sym__whitespace, - STATE(2577), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2585), 1, + STATE(2550), 1, aux_sym_shortcode_escaped_repeat2, - [22282] = 5, - ACTIONS(5607), 1, + STATE(2565), 1, + aux_sym_shortcode_escaped_repeat1, + [22447] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6090), 1, + ACTIONS(5908), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [22298] = 4, + [22463] = 4, ACTIONS(6190), 1, sym_shortcode_name, ACTIONS(6192), 1, sym_shortcode_number, - STATE(2772), 1, + STATE(2880), 1, sym_shortcode_boolean, ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - [22312] = 5, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5863), 1, - anon_sym_RBRACE, - STATE(2431), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [22328] = 5, - ACTIONS(6149), 1, + [22477] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1955), 1, + STATE(1986), 1, sym__whitespace, - STATE(2514), 1, + STATE(2516), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2587), 1, + STATE(2558), 1, aux_sym_shortcode_escaped_repeat2, - [22344] = 5, - ACTIONS(6119), 1, + [22493] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1958), 1, + STATE(1987), 1, sym__whitespace, - STATE(2515), 1, + STATE(2517), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2588), 1, + STATE(2560), 1, aux_sym_shortcode_escaped_repeat2, - [22360] = 5, - ACTIONS(6149), 1, + [22509] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1963), 1, + STATE(1989), 1, sym__whitespace, - STATE(2577), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2589), 1, + STATE(2561), 1, aux_sym_shortcode_escaped_repeat2, - [22376] = 5, - ACTIONS(6119), 1, + STATE(2565), 1, + aux_sym_shortcode_escaped_repeat1, + [22525] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1981), 1, + STATE(1957), 1, sym__whitespace, - STATE(2577), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2590), 1, + STATE(2562), 1, aux_sym_shortcode_escaped_repeat2, - [22392] = 5, - ACTIONS(5607), 1, + STATE(2565), 1, + aux_sym_shortcode_escaped_repeat1, + [22541] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5905), 1, + ACTIONS(5956), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [22408] = 4, + [22557] = 4, ACTIONS(6194), 1, sym_shortcode_name, ACTIONS(6196), 1, sym_shortcode_number, - STATE(2773), 1, + STATE(2881), 1, sym_shortcode_boolean, ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - [22422] = 5, - ACTIONS(6119), 1, - sym__whitespace_ge_2, - ACTIONS(6121), 1, - aux_sym__whitespace_token1, - STATE(1988), 1, - sym__whitespace, - STATE(2577), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2599), 1, - aux_sym_shortcode_escaped_repeat2, - [22438] = 5, - ACTIONS(6149), 1, + [22571] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1948), 1, + STATE(1952), 1, sym__whitespace, - STATE(2521), 1, + STATE(2522), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2594), 1, + STATE(2570), 1, aux_sym_shortcode_escaped_repeat2, - [22454] = 5, - ACTIONS(6119), 1, + [22587] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1949), 1, + STATE(1956), 1, sym__whitespace, - STATE(2522), 1, + STATE(2523), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2595), 1, + STATE(2572), 1, aux_sym_shortcode_escaped_repeat2, - [22470] = 5, - ACTIONS(6149), 1, + [22603] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1950), 1, + STATE(1978), 1, sym__whitespace, - STATE(2577), 1, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2596), 1, + STATE(2573), 1, aux_sym_shortcode_escaped_repeat2, - [22486] = 5, - ACTIONS(6119), 1, + [22619] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1951), 1, + STATE(1981), 1, sym__whitespace, - STATE(2577), 1, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2597), 1, + STATE(2574), 1, aux_sym_shortcode_escaped_repeat2, - [22502] = 4, + [22635] = 5, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(5898), 1, + anon_sym_RBRACE, + STATE(2464), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, + sym__attribute, + [22651] = 4, ACTIONS(6198), 1, sym_shortcode_name, ACTIONS(6200), 1, sym_shortcode_number, - STATE(2767), 1, + STATE(2773), 1, sym_shortcode_boolean, ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - [22516] = 5, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(6202), 1, - anon_sym_RBRACE, - STATE(2431), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [22532] = 5, - ACTIONS(6149), 1, + [22665] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1959), 1, + STATE(1948), 1, sym__whitespace, - STATE(2527), 1, + STATE(2528), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2601), 1, + STATE(2580), 1, aux_sym_shortcode_escaped_repeat2, - [22548] = 5, - ACTIONS(6119), 1, + [22681] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1960), 1, + STATE(1949), 1, sym__whitespace, - STATE(2528), 1, + STATE(2529), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2603), 1, + STATE(2582), 1, aux_sym_shortcode_escaped_repeat2, - [22564] = 5, - ACTIONS(6149), 1, + [22697] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1961), 1, + STATE(1950), 1, sym__whitespace, - STATE(2577), 1, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2604), 1, + STATE(2583), 1, aux_sym_shortcode_escaped_repeat2, - [22580] = 5, - ACTIONS(6119), 1, + [22713] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1962), 1, + STATE(1951), 1, sym__whitespace, - STATE(2577), 1, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2605), 1, + STATE(2584), 1, aux_sym_shortcode_escaped_repeat2, - [22596] = 5, - ACTIONS(5607), 1, + [22729] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(6204), 1, + ACTIONS(6022), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, sym__attribute, - [22612] = 4, - ACTIONS(6206), 1, + [22745] = 4, + ACTIONS(6202), 1, sym_shortcode_name, - ACTIONS(6208), 1, + ACTIONS(6204), 1, sym_shortcode_number, - STATE(2897), 1, + STATE(2746), 1, sym_shortcode_boolean, ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - [22626] = 5, - ACTIONS(5607), 1, + [22759] = 5, + ACTIONS(5615), 1, sym_key_value_key, - ACTIONS(5797), 1, + ACTIONS(5791), 1, sym_commonmark_name, - ACTIONS(5950), 1, + ACTIONS(5954), 1, anon_sym_RBRACE, - STATE(2431), 1, + STATE(2464), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, + STATE(2569), 1, + sym__attribute, + [22775] = 5, + ACTIONS(5615), 1, + sym_key_value_key, + ACTIONS(5791), 1, + sym_commonmark_name, + ACTIONS(6206), 1, + anon_sym_RBRACE, + STATE(2464), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2569), 1, sym__attribute, - [22642] = 5, - ACTIONS(6149), 1, + [22791] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1973), 1, + STATE(1964), 1, sym__whitespace, - STATE(2534), 1, + STATE(2536), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2606), 1, + STATE(2592), 1, aux_sym_shortcode_escaped_repeat2, - [22658] = 5, - ACTIONS(6119), 1, + [22807] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1974), 1, + STATE(1965), 1, sym__whitespace, - STATE(2535), 1, + STATE(2537), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2607), 1, + STATE(2594), 1, aux_sym_shortcode_escaped_repeat2, - [22674] = 5, - ACTIONS(6149), 1, + [22823] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1975), 1, + STATE(1966), 1, sym__whitespace, - STATE(2577), 1, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2608), 1, + STATE(2595), 1, aux_sym_shortcode_escaped_repeat2, - [22690] = 5, - ACTIONS(6119), 1, + [22839] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1976), 1, + STATE(1967), 1, sym__whitespace, - STATE(2577), 1, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2609), 1, + STATE(2596), 1, aux_sym_shortcode_escaped_repeat2, - [22706] = 5, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5807), 1, - anon_sym_RBRACE, - STATE(2431), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [22722] = 5, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(5964), 1, - anon_sym_RBRACE, - STATE(2431), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [22738] = 4, - ACTIONS(6210), 1, + [22855] = 4, + ACTIONS(6208), 1, sym_shortcode_name, - ACTIONS(6212), 1, + ACTIONS(6210), 1, sym_shortcode_number, - STATE(2789), 1, + STATE(2819), 1, sym_shortcode_boolean, ACTIONS(5459), 2, anon_sym_true, anon_sym_false, - [22752] = 5, - ACTIONS(5607), 1, - sym_key_value_key, - ACTIONS(5797), 1, - sym_commonmark_name, - ACTIONS(6214), 1, - anon_sym_RBRACE, - STATE(2431), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2593), 1, - sym__attribute, - [22768] = 5, - ACTIONS(6149), 1, + [22869] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1980), 1, + STATE(1972), 1, sym__whitespace, - STATE(2542), 1, + STATE(2541), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2610), 1, + STATE(2602), 1, aux_sym_shortcode_escaped_repeat2, - [22784] = 5, - ACTIONS(6119), 1, + [22885] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1942), 1, + STATE(1973), 1, sym__whitespace, - STATE(2543), 1, + STATE(2542), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2547), 1, + STATE(2604), 1, aux_sym_shortcode_escaped_repeat2, - [22800] = 5, - ACTIONS(6149), 1, + [22901] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6151), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1982), 1, + STATE(1974), 1, sym__whitespace, - STATE(2577), 1, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2611), 1, + STATE(2605), 1, aux_sym_shortcode_escaped_repeat2, - [22816] = 5, - ACTIONS(6119), 1, + [22917] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1983), 1, + STATE(1975), 1, sym__whitespace, - STATE(2577), 1, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2612), 1, + STATE(2606), 1, aux_sym_shortcode_escaped_repeat2, - [22832] = 5, - ACTIONS(6119), 1, + [22933] = 5, + ACTIONS(6109), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6111), 1, aux_sym__whitespace_token1, - STATE(1984), 1, + STATE(1976), 1, sym__whitespace, - STATE(2545), 1, + STATE(2489), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2613), 1, + STATE(2609), 1, aux_sym_shortcode_escaped_repeat2, - [22848] = 5, - ACTIONS(6119), 1, + [22949] = 5, + ACTIONS(6164), 1, sym__whitespace_ge_2, - ACTIONS(6121), 1, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - STATE(1985), 1, + STATE(1960), 1, sym__whitespace, - STATE(2577), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2583), 1, + STATE(2553), 1, aux_sym_shortcode_escaped_repeat2, - [22864] = 5, - ACTIONS(6119), 1, - sym__whitespace_ge_2, - ACTIONS(6121), 1, - aux_sym__whitespace_token1, - STATE(1945), 1, - sym__whitespace, - STATE(2493), 1, + STATE(2565), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2574), 1, - aux_sym_shortcode_escaped_repeat2, - [22880] = 4, + [22965] = 2, + ACTIONS(6214), 1, + sym_key_value_key, + ACTIONS(6212), 3, + anon_sym_RBRACE, + sym__commonmark_whitespace, + sym_commonmark_name, + [22974] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2621), 1, + STATE(2652), 1, sym__whitespace, - [22893] = 2, - ACTIONS(6222), 1, - sym_key_value_key, - ACTIONS(6220), 3, - anon_sym_RBRACE, - sym__commonmark_whitespace, - sym_commonmark_name, - [22902] = 2, - ACTIONS(6226), 1, + [22987] = 2, + ACTIONS(5118), 1, aux_sym__whitespace_token1, - ACTIONS(6224), 3, + ACTIONS(5116), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - [22911] = 4, - ACTIONS(6228), 1, + [22996] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2662), 1, + STATE(2623), 1, sym__whitespace, - [22924] = 4, - ACTIONS(6123), 1, - anon_sym_DQUOTE, - ACTIONS(6125), 1, - anon_sym_SQUOTE, - ACTIONS(6129), 1, - aux_sym_key_value_value_token1, - STATE(2573), 1, - sym_key_value_value, - [22937] = 2, - ACTIONS(5062), 1, - aux_sym__whitespace_token1, - ACTIONS(5060), 3, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - [22946] = 2, - ACTIONS(6234), 1, - sym_key_value_key, - ACTIONS(6232), 3, - anon_sym_RBRACE, - sym__commonmark_whitespace, - sym_commonmark_name, - [22955] = 4, + [23009] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2672), 1, + STATE(2650), 1, sym__whitespace, - [22968] = 2, - ACTIONS(6238), 1, - aux_sym__whitespace_token1, - ACTIONS(6236), 3, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - [22977] = 2, - ACTIONS(6168), 1, - sym_key_value_key, - ACTIONS(6163), 3, - anon_sym_RBRACE, - sym_commonmark_name, - sym_class_specifier, - [22986] = 2, - ACTIONS(5110), 1, - aux_sym__whitespace_token1, - ACTIONS(5108), 3, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - [22995] = 4, - ACTIONS(6228), 1, + [23022] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2653), 1, + STATE(2651), 1, sym__whitespace, - [23008] = 4, + [23035] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2658), 1, + STATE(2671), 1, sym__whitespace, - [23021] = 4, - ACTIONS(6228), 1, + [23048] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2641), 1, + STATE(2670), 1, sym__whitespace, - [23034] = 4, + [23061] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2643), 1, + STATE(2665), 1, sym__whitespace, - [23047] = 4, - ACTIONS(5589), 1, + [23074] = 4, + ACTIONS(6224), 1, sym__whitespace_ge_2, - ACTIONS(5591), 1, + ACTIONS(6227), 1, aux_sym__whitespace_token1, - ACTIONS(6240), 1, - anon_sym_EQ, - STATE(2845), 1, + STATE(2554), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2725), 1, sym__whitespace, - [23060] = 4, - ACTIONS(6228), 1, + [23087] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2657), 1, + STATE(2625), 1, sym__whitespace, - [23073] = 4, + [23100] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2668), 1, + STATE(2654), 1, sym__whitespace, - [23086] = 4, - ACTIONS(6228), 1, + [23113] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2669), 1, + STATE(2634), 1, sym__whitespace, - [23099] = 4, + [23126] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2673), 1, + STATE(2656), 1, sym__whitespace, - [23112] = 4, - ACTIONS(6240), 1, - anon_sym_EQ, - ACTIONS(6242), 1, + [23139] = 4, + ACTIONS(6216), 1, sym__whitespace_ge_2, - ACTIONS(6245), 1, + ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2845), 1, + STATE(2554), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2660), 1, sym__whitespace, - [23125] = 4, - ACTIONS(6228), 1, + [23152] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2626), 1, + STATE(2658), 1, sym__whitespace, - [23138] = 4, + [23165] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2635), 1, + STATE(2618), 1, sym__whitespace, - [23151] = 4, - ACTIONS(6228), 1, + [23178] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2639), 1, + STATE(2619), 1, sym__whitespace, - [23164] = 4, - ACTIONS(6216), 1, + [23191] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6218), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2644), 1, + STATE(2662), 1, sym__whitespace, - [23177] = 4, - ACTIONS(6228), 1, + [23204] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2674), 1, + STATE(2675), 1, sym__whitespace, - [23190] = 2, - ACTIONS(6250), 1, + [23217] = 4, + ACTIONS(6230), 1, + sym__whitespace_ge_2, + ACTIONS(6233), 1, + aux_sym__whitespace_token1, + STATE(1992), 1, + sym__whitespace, + STATE(2565), 1, + aux_sym_shortcode_escaped_repeat1, + [23230] = 2, + ACTIONS(6238), 1, + aux_sym__whitespace_token1, + ACTIONS(6236), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + [23239] = 2, + ACTIONS(6242), 1, sym_key_value_key, - ACTIONS(6248), 3, + ACTIONS(6240), 3, anon_sym_RBRACE, sym__commonmark_whitespace, sym_commonmark_name, - [23199] = 4, + [23248] = 2, + ACTIONS(6246), 1, + aux_sym__whitespace_token1, + ACTIONS(6244), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + [23257] = 3, + ACTIONS(6250), 1, + sym__commonmark_whitespace, + ACTIONS(6252), 1, + sym_key_value_key, + ACTIONS(6248), 2, + anon_sym_RBRACE, + sym_commonmark_name, + [23268] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(2679), 1, - sym__whitespace, - [23212] = 4, - ACTIONS(6228), 1, - sym__whitespace_ge_2, - ACTIONS(6230), 1, - aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2656), 1, + STATE(2646), 1, sym__whitespace, - [23225] = 4, + [23281] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2660), 1, - sym__whitespace, - [23238] = 4, - ACTIONS(6252), 1, - sym__whitespace_ge_2, - ACTIONS(6255), 1, - aux_sym__whitespace_token1, - STATE(1994), 1, + STATE(2659), 1, sym__whitespace, - STATE(2577), 1, - aux_sym_shortcode_escaped_repeat1, - [23251] = 4, - ACTIONS(6228), 1, + [23294] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2654), 1, + STATE(2647), 1, sym__whitespace, - [23264] = 4, + [23307] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2705), 1, + STATE(2653), 1, sym__whitespace, - [23277] = 4, - ACTIONS(6228), 1, + [23320] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2615), 1, + STATE(2655), 1, sym__whitespace, - [23290] = 4, - ACTIONS(6216), 1, + [23333] = 2, + ACTIONS(6146), 1, + sym_key_value_key, + ACTIONS(6141), 3, + anon_sym_RBRACE, + sym_commonmark_name, + sym_class_specifier, + [23342] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6218), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2667), 1, + STATE(2669), 1, sym__whitespace, - [23303] = 4, - ACTIONS(6228), 1, + [23355] = 4, + ACTIONS(6216), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2649), 1, + STATE(2633), 1, sym__whitespace, - [23316] = 4, - ACTIONS(6216), 1, + [23368] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6218), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2629), 1, + STATE(2635), 1, sym__whitespace, - [23329] = 4, - ACTIONS(6228), 1, + [23381] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2650), 1, + STATE(2666), 1, sym__whitespace, - [23342] = 4, + [23394] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2640), 1, + STATE(2674), 1, sym__whitespace, - [23355] = 2, - ACTIONS(6260), 1, + [23407] = 2, + ACTIONS(6256), 1, sym_key_value_key, - ACTIONS(6258), 3, + ACTIONS(6254), 3, anon_sym_RBRACE, sym__commonmark_whitespace, sym_commonmark_name, - [23364] = 4, - ACTIONS(6228), 1, + [23416] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2618), 1, + STATE(2617), 1, sym__whitespace, - [23377] = 4, + [23429] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2619), 1, + STATE(2640), 1, sym__whitespace, - [23390] = 4, - ACTIONS(6228), 1, + [23442] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2630), 1, + STATE(2641), 1, sym__whitespace, - [23403] = 4, - ACTIONS(6216), 1, + [23455] = 4, + ACTIONS(6101), 1, + anon_sym_DQUOTE, + ACTIONS(6103), 1, + anon_sym_SQUOTE, + ACTIONS(6107), 1, + aux_sym_key_value_value_token1, + STATE(2581), 1, + sym_key_value_value, + [23468] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6218), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2631), 1, + STATE(2629), 1, sym__whitespace, - [23416] = 4, - ACTIONS(6228), 1, + [23481] = 4, + ACTIONS(6216), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2632), 1, + STATE(2679), 1, sym__whitespace, - [23429] = 4, - ACTIONS(6262), 1, + [23494] = 4, + ACTIONS(6216), 1, sym__whitespace_ge_2, - ACTIONS(6265), 1, + ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2715), 1, + STATE(2620), 1, sym__whitespace, - [23442] = 3, - ACTIONS(6270), 1, - sym__commonmark_whitespace, - ACTIONS(6272), 1, - sym_key_value_key, - ACTIONS(6268), 2, - anon_sym_RBRACE, - sym_commonmark_name, - [23453] = 4, - ACTIONS(6228), 1, + [23507] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2636), 1, + STATE(2630), 1, sym__whitespace, - [23466] = 4, + [23520] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, STATE(2637), 1, sym__whitespace, - [23479] = 4, - ACTIONS(6228), 1, + [23533] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2646), 1, + STATE(2642), 1, sym__whitespace, - [23492] = 4, + [23546] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2647), 1, + STATE(2643), 1, sym__whitespace, - [23505] = 2, - ACTIONS(6276), 1, - sym_key_value_key, - ACTIONS(6274), 3, - anon_sym_RBRACE, - sym__commonmark_whitespace, - sym_commonmark_name, - [23514] = 4, - ACTIONS(6216), 1, + [23559] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6218), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2652), 1, + STATE(2631), 1, sym__whitespace, - [23527] = 2, - ACTIONS(6280), 1, - sym_key_value_key, - ACTIONS(6278), 3, - anon_sym_RBRACE, - sym__commonmark_whitespace, - sym_commonmark_name, - [23536] = 4, - ACTIONS(6228), 1, + [23572] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2683), 1, + STATE(2644), 1, sym__whitespace, - [23549] = 4, - ACTIONS(6123), 1, - anon_sym_DQUOTE, - ACTIONS(6125), 1, - anon_sym_SQUOTE, - ACTIONS(6129), 1, - aux_sym_key_value_value_token1, - STATE(2586), 1, - sym_key_value_value, - [23562] = 4, + [23585] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(2617), 1, - sym__whitespace, - [23575] = 4, - ACTIONS(6228), 1, - sym__whitespace_ge_2, - ACTIONS(6230), 1, - aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2622), 1, + STATE(2648), 1, sym__whitespace, - [23588] = 4, - ACTIONS(6216), 1, + [23598] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6218), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2623), 1, + STATE(2701), 1, sym__whitespace, - [23601] = 4, - ACTIONS(6228), 1, + [23611] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2675), 1, + STATE(2627), 1, sym__whitespace, - [23614] = 4, + [23624] = 4, + ACTIONS(6101), 1, + anon_sym_DQUOTE, + ACTIONS(6103), 1, + anon_sym_SQUOTE, + ACTIONS(6107), 1, + aux_sym_key_value_value_token1, + STATE(2599), 1, + sym_key_value_value, + [23637] = 2, + ACTIONS(6260), 1, + sym_key_value_key, + ACTIONS(6258), 3, + anon_sym_RBRACE, + sym__commonmark_whitespace, + sym_commonmark_name, + [23646] = 2, + ACTIONS(6264), 1, + sym_key_value_key, + ACTIONS(6262), 3, + anon_sym_RBRACE, + sym__commonmark_whitespace, + sym_commonmark_name, + [23655] = 2, + ACTIONS(6268), 1, + sym_key_value_key, + ACTIONS(6266), 3, + anon_sym_RBRACE, + sym__commonmark_whitespace, + sym_commonmark_name, + [23664] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2677), 1, + STATE(2615), 1, sym__whitespace, - [23627] = 4, - ACTIONS(6228), 1, + [23677] = 2, + ACTIONS(5062), 1, + aux_sym__whitespace_token1, + ACTIONS(5060), 3, + anon_sym_RPAREN, + sym__newline_token, sym__whitespace_ge_2, - ACTIONS(6230), 1, + [23686] = 4, + ACTIONS(6220), 1, + sym__whitespace_ge_2, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2682), 1, + STATE(2616), 1, sym__whitespace, - [23640] = 4, + [23699] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2663), 1, + STATE(2621), 1, sym__whitespace, - [23653] = 4, - ACTIONS(6228), 1, + [23712] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2620), 1, + STATE(2622), 1, sym__whitespace, - [23666] = 4, - ACTIONS(6228), 1, + [23725] = 4, + ACTIONS(6216), 1, sym__whitespace_ge_2, - ACTIONS(6230), 1, + ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2624), 1, + STATE(2632), 1, sym__whitespace, - [23679] = 4, + [23738] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2625), 1, + STATE(2639), 1, sym__whitespace, - [23692] = 4, - ACTIONS(6216), 1, + [23751] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6218), 1, + ACTIONS(6222), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2628), 1, + STATE(2626), 1, sym__whitespace, - [23705] = 4, + [23764] = 4, ACTIONS(6216), 1, sym__whitespace_ge_2, ACTIONS(6218), 1, aux_sym__whitespace_token1, - STATE(2592), 1, + STATE(2554), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2671), 1, + STATE(2672), 1, sym__whitespace, - [23718] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6284), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, - sym_shortcode_keyword_param, - [23728] = 3, + [23777] = 3, + ACTIONS(6270), 1, + anon_sym_EQ, + ACTIONS(6272), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__commonmark_whitespace, + [23787] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2873), 1, + STATE(2869), 1, sym__whitespace, - [23738] = 3, - ACTIONS(5515), 1, + [23797] = 2, + ACTIONS(6276), 1, + sym__last_token_whitespace, + ACTIONS(4337), 2, sym__shortcode_close, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, - sym_shortcode_keyword_param, - [23748] = 3, - ACTIONS(5517), 1, + sym__key_name_and_equals, + [23805] = 3, + ACTIONS(6270), 1, + anon_sym_EQ, + ACTIONS(6274), 1, + sym__commonmark_whitespace, + ACTIONS(6278), 1, + anon_sym_RBRACE, + [23815] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5533), 1, sym__shortcode_close_escaped, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [23758] = 3, - ACTIONS(5553), 1, + [23825] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5535), 1, sym__shortcode_close, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [23768] = 3, - ACTIONS(5555), 1, + [23835] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5487), 1, + sym__shortcode_close, + STATE(2702), 1, + sym_shortcode_keyword_param, + [23845] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(6280), 1, sym__shortcode_close_escaped, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [23778] = 3, - ACTIONS(5557), 1, - sym__shortcode_close, + [23855] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + sym__shortcode_close, + STATE(2702), 1, sym_shortcode_keyword_param, - [23788] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, + [23865] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(6284), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, + sym_shortcode_keyword_param, + [23875] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(6286), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [23798] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, + [23885] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(6288), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [23808] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6290), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, + [23895] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5511), 1, + sym__shortcode_close, + STATE(2702), 1, sym_shortcode_keyword_param, - [23818] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, + [23905] = 3, + ACTIONS(6270), 1, + anon_sym_EQ, + ACTIONS(6274), 1, + sym__commonmark_whitespace, + ACTIONS(6290), 1, + anon_sym_RBRACE, + [23915] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(6292), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [23828] = 3, - ACTIONS(5525), 1, - sym__shortcode_close_escaped, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + [23925] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5539), 1, + sym__shortcode_close, + STATE(2702), 1, sym_shortcode_keyword_param, - [23838] = 3, + [23935] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(6294), 1, + sym__shortcode_close, + STATE(2702), 1, + sym_shortcode_keyword_param, + [23945] = 3, + ACTIONS(6270), 1, anon_sym_EQ, + ACTIONS(6274), 1, + sym__commonmark_whitespace, ACTIONS(6296), 1, anon_sym_RBRACE, + [23955] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5473), 1, + sym__shortcode_close, + STATE(2702), 1, + sym_shortcode_keyword_param, + [23965] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5559), 1, + sym__shortcode_close, + STATE(2702), 1, + sym_shortcode_keyword_param, + [23975] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(6298), 1, - sym__commonmark_whitespace, - [23848] = 3, - ACTIONS(5561), 1, sym__shortcode_close, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [23858] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, + [23985] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5503), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, + sym_shortcode_keyword_param, + [23995] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(6300), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, + sym_shortcode_keyword_param, + [24005] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5571), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [23868] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, + [24015] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(6302), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, - sym_shortcode_keyword_param, - [23878] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6304), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [23888] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, + [24025] = 3, + ACTIONS(6270), 1, + anon_sym_EQ, + ACTIONS(6274), 1, + sym__commonmark_whitespace, + ACTIONS(6304), 1, + anon_sym_RBRACE, + [24035] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(6306), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [23898] = 2, - ACTIONS(6308), 1, - sym_key_value_key, - ACTIONS(6105), 2, - anon_sym_RBRACE, - sym_commonmark_name, - [23906] = 3, - ACTIONS(6294), 1, + [24045] = 3, + ACTIONS(6270), 1, anon_sym_EQ, - ACTIONS(6298), 1, + ACTIONS(6274), 1, sym__commonmark_whitespace, - ACTIONS(6310), 1, + ACTIONS(6308), 1, anon_sym_RBRACE, - [23916] = 3, - ACTIONS(5527), 1, - sym__shortcode_close, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + [24055] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5505), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, sym_shortcode_keyword_param, - [23926] = 3, - ACTIONS(5491), 1, + [24065] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(6310), 1, sym__shortcode_close_escaped, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [23936] = 3, - ACTIONS(5493), 1, + [24075] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(6312), 1, sym__shortcode_close, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [23946] = 2, + [24085] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(6314), 1, - aux_sym__whitespace_token1, - ACTIONS(6312), 2, - anon_sym_RBRACK, - sym__whitespace_ge_2, - [23954] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6316), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, - sym_shortcode_keyword_param, - [23964] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6318), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [23974] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6320), 1, + [24095] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5517), 1, sym__shortcode_close_escaped, - STATE(2718), 1, - sym_shortcode_keyword_param, - [23984] = 3, - ACTIONS(6294), 1, - anon_sym_EQ, - ACTIONS(6298), 1, - sym__commonmark_whitespace, - ACTIONS(6322), 1, - anon_sym_RBRACE, - [23994] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6324), 1, - sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24004] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6326), 1, + [24105] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5519), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24014] = 3, - ACTIONS(6294), 1, + [24115] = 3, + ACTIONS(6270), 1, anon_sym_EQ, - ACTIONS(6298), 1, + ACTIONS(6274), 1, sym__commonmark_whitespace, - ACTIONS(6328), 1, + ACTIONS(6316), 1, anon_sym_RBRACE, - [24024] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6330), 1, + [24125] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5541), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24034] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6332), 1, + [24135] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5553), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24044] = 3, - ACTIONS(6294), 1, - anon_sym_EQ, - ACTIONS(6298), 1, - sym__commonmark_whitespace, - ACTIONS(6334), 1, - anon_sym_RBRACE, - [24054] = 3, - ACTIONS(5497), 1, + [24145] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(6318), 1, sym__shortcode_close_escaped, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24064] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6336), 1, + [24155] = 3, + ACTIONS(5589), 1, + sym__whitespace_ge_2, + ACTIONS(5591), 1, + aux_sym__whitespace_token1, + STATE(2870), 1, + sym__whitespace, + [24165] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(6320), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24074] = 2, - ACTIONS(6338), 1, - sym__last_token_whitespace, - ACTIONS(4329), 2, - sym__shortcode_close_escaped, - sym_shortcode_name, - [24082] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6340), 1, + [24175] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(6322), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24092] = 3, - ACTIONS(5529), 1, + [24185] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5509), 1, sym__shortcode_close_escaped, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24102] = 3, - ACTIONS(5545), 1, + [24195] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(6324), 1, sym__shortcode_close_escaped, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24112] = 3, - ACTIONS(6294), 1, - anon_sym_EQ, - ACTIONS(6298), 1, - sym__commonmark_whitespace, - ACTIONS(6342), 1, - anon_sym_RBRACE, - [24122] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6344), 1, + [24205] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5551), 1, sym__shortcode_close_escaped, - STATE(2718), 1, + STATE(2702), 1, + sym_shortcode_keyword_param, + [24215] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(6326), 1, + sym__shortcode_close, + STATE(2702), 1, sym_shortcode_keyword_param, - [24132] = 3, + [24225] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, ACTIONS(5569), 1, sym__shortcode_close_escaped, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24142] = 3, - ACTIONS(5533), 1, + [24235] = 2, + ACTIONS(6328), 1, + sym__last_token_whitespace, + ACTIONS(4337), 2, + sym__shortcode_close_escaped, + sym__key_name_and_equals, + [24243] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5499), 1, sym__shortcode_close, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24152] = 3, - ACTIONS(6294), 1, + [24253] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5555), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, + sym_shortcode_keyword_param, + [24263] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(6330), 1, + sym__shortcode_close_escaped, + STATE(2702), 1, + sym_shortcode_keyword_param, + [24273] = 3, + ACTIONS(6270), 1, anon_sym_EQ, - ACTIONS(6298), 1, + ACTIONS(6274), 1, sym__commonmark_whitespace, - ACTIONS(6346), 1, + ACTIONS(6332), 1, anon_sym_RBRACE, - [24162] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6348), 1, + [24283] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(6334), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24172] = 3, + [24293] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2874), 1, + STATE(2808), 1, sym__whitespace, - [24182] = 3, - ACTIONS(5563), 1, + [24303] = 3, + ACTIONS(6270), 1, + anon_sym_EQ, + ACTIONS(6274), 1, + sym__commonmark_whitespace, + ACTIONS(6336), 1, + anon_sym_RBRACE, + [24313] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(6338), 1, sym__shortcode_close_escaped, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24192] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6350), 1, + [24323] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5567), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24202] = 3, + [24333] = 3, + ACTIONS(6270), 1, + anon_sym_EQ, + ACTIONS(6274), 1, + sym__commonmark_whitespace, + ACTIONS(6340), 1, + anon_sym_RBRACE, + [24343] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, - STATE(2850), 1, + STATE(2789), 1, sym__whitespace, - [24212] = 3, - ACTIONS(6294), 1, - anon_sym_EQ, - ACTIONS(6298), 1, - sym__commonmark_whitespace, - ACTIONS(6352), 1, - anon_sym_RBRACE, - [24222] = 2, - ACTIONS(6354), 1, - sym__last_token_whitespace, - ACTIONS(4329), 2, - sym__shortcode_close, - sym_shortcode_name, - [24230] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6356), 1, + [24353] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5557), 1, sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24240] = 3, - ACTIONS(5499), 1, + [24363] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5469), 1, sym__shortcode_close, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24250] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6358), 1, + [24373] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(6342), 1, sym__shortcode_close_escaped, - STATE(2718), 1, - sym_shortcode_keyword_param, - [24260] = 3, - ACTIONS(6294), 1, - anon_sym_EQ, - ACTIONS(6298), 1, - sym__commonmark_whitespace, - ACTIONS(6360), 1, - anon_sym_RBRACE, - [24270] = 3, - ACTIONS(5565), 1, - sym__shortcode_close, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, - sym_shortcode_keyword_param, - [24280] = 3, - ACTIONS(5567), 1, - sym__shortcode_close, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, - sym_shortcode_keyword_param, - [24290] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6362), 1, - sym__shortcode_close, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24300] = 3, - ACTIONS(5483), 1, + [24383] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5471), 1, sym__shortcode_close_escaped, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24310] = 3, - ACTIONS(5541), 1, + [24393] = 2, + ACTIONS(6346), 1, + aux_sym__whitespace_token1, + ACTIONS(6344), 2, + anon_sym_RBRACK, + sym__whitespace_ge_2, + [24401] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5485), 1, sym__shortcode_close_escaped, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24320] = 3, - ACTIONS(5589), 1, - sym__whitespace_ge_2, - ACTIONS(5591), 1, - aux_sym__whitespace_token1, - STATE(2783), 1, - sym__whitespace, - [24330] = 3, - ACTIONS(5543), 1, + [24411] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(6348), 1, sym__shortcode_close, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24340] = 3, - ACTIONS(6294), 1, + [24421] = 3, + ACTIONS(6270), 1, anon_sym_EQ, - ACTIONS(6298), 1, + ACTIONS(6274), 1, sym__commonmark_whitespace, - ACTIONS(6364), 1, + ACTIONS(6350), 1, anon_sym_RBRACE, - [24350] = 3, - ACTIONS(5485), 1, - sym__shortcode_close, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, - sym_shortcode_keyword_param, - [24360] = 3, - ACTIONS(6294), 1, + [24431] = 3, + ACTIONS(6270), 1, anon_sym_EQ, - ACTIONS(6298), 1, + ACTIONS(6274), 1, sym__commonmark_whitespace, - ACTIONS(6366), 1, + ACTIONS(6352), 1, anon_sym_RBRACE, - [24370] = 3, - ACTIONS(6294), 1, - anon_sym_EQ, - ACTIONS(6298), 1, - sym__commonmark_whitespace, - ACTIONS(6368), 1, + [24441] = 2, + ACTIONS(6354), 1, + sym_key_value_key, + ACTIONS(6148), 2, anon_sym_RBRACE, - [24380] = 3, - ACTIONS(6282), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym__shortcode_close_escaped, - STATE(2718), 1, - sym_shortcode_keyword_param, - [24390] = 3, - ACTIONS(5513), 1, + sym_commonmark_name, + [24449] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(5479), 1, sym__shortcode_close_escaped, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, + STATE(2702), 1, sym_shortcode_keyword_param, - [24400] = 3, + [24459] = 3, + ACTIONS(5589), 1, + sym__whitespace_ge_2, + ACTIONS(5591), 1, + aux_sym__whitespace_token1, + STATE(2848), 1, + sym__whitespace, + [24469] = 3, + ACTIONS(5589), 1, + sym__whitespace_ge_2, + ACTIONS(5591), 1, + aux_sym__whitespace_token1, + STATE(2849), 1, + sym__whitespace, + [24479] = 3, + ACTIONS(5589), 1, + sym__whitespace_ge_2, + ACTIONS(5591), 1, + aux_sym__whitespace_token1, + STATE(2850), 1, + sym__whitespace, + [24489] = 3, + ACTIONS(5589), 1, + sym__whitespace_ge_2, + ACTIONS(5591), 1, + aux_sym__whitespace_token1, + STATE(2851), 1, + sym__whitespace, + [24499] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2852), 1, sym__whitespace, - [24410] = 3, + [24509] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2853), 1, sym__whitespace, - [24420] = 3, + [24519] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2854), 1, sym__whitespace, - [24430] = 3, + [24529] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2855), 1, sym__whitespace, - [24440] = 3, + [24539] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2856), 1, sym__whitespace, - [24450] = 3, + [24549] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2857), 1, sym__whitespace, - [24460] = 3, + [24559] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2858), 1, sym__whitespace, - [24470] = 3, + [24569] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2859), 1, sym__whitespace, - [24480] = 3, + [24579] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2860), 1, sym__whitespace, - [24490] = 3, + [24589] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2861), 1, sym__whitespace, - [24500] = 3, + [24599] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2862), 1, sym__whitespace, - [24510] = 3, + [24609] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2863), 1, sym__whitespace, - [24520] = 3, + [24619] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2864), 1, sym__whitespace, - [24530] = 3, + [24629] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2865), 1, sym__whitespace, - [24540] = 3, + [24639] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2866), 1, sym__whitespace, - [24550] = 3, + [24649] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2867), 1, sym__whitespace, - [24560] = 3, + [24659] = 3, ACTIONS(5589), 1, sym__whitespace_ge_2, ACTIONS(5591), 1, aux_sym__whitespace_token1, STATE(2868), 1, sym__whitespace, - [24570] = 3, - ACTIONS(5589), 1, - sym__whitespace_ge_2, - ACTIONS(5591), 1, - aux_sym__whitespace_token1, - STATE(2869), 1, - sym__whitespace, - [24580] = 3, - ACTIONS(5589), 1, - sym__whitespace_ge_2, - ACTIONS(5591), 1, - aux_sym__whitespace_token1, - STATE(2870), 1, - sym__whitespace, - [24590] = 3, - ACTIONS(5589), 1, + [24669] = 3, + ACTIONS(5465), 1, + sym__key_name_and_equals, + ACTIONS(6356), 1, + sym__shortcode_close, + STATE(2702), 1, + sym_shortcode_keyword_param, + [24679] = 2, + ACTIONS(6358), 1, sym__whitespace_ge_2, - ACTIONS(5591), 1, + ACTIONS(6360), 1, aux_sym__whitespace_token1, - STATE(2871), 1, - sym__whitespace, - [24600] = 3, - ACTIONS(5589), 1, + [24686] = 2, + ACTIONS(4555), 1, sym__whitespace_ge_2, - ACTIONS(5591), 1, + ACTIONS(4557), 1, aux_sym__whitespace_token1, - STATE(2872), 1, - sym__whitespace, - [24610] = 3, - ACTIONS(5547), 1, + [24693] = 2, + ACTIONS(6362), 1, + anon_sym_RBRACE, + ACTIONS(6364), 1, + sym__commonmark_whitespace, + [24700] = 2, + ACTIONS(6366), 1, + anon_sym_RBRACE, + ACTIONS(6368), 1, + sym__commonmark_whitespace, + [24707] = 1, + ACTIONS(4639), 2, sym__shortcode_close, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, - sym_shortcode_keyword_param, - [24620] = 2, + sym__key_name_and_equals, + [24712] = 2, + ACTIONS(6370), 1, + sym__whitespace_ge_2, ACTIONS(6372), 1, - anon_sym_RBRACE, + aux_sym__whitespace_token1, + [24719] = 2, ACTIONS(6374), 1, - sym__commonmark_whitespace, - [24627] = 2, - ACTIONS(6376), 1, anon_sym_RBRACE, - ACTIONS(6378), 1, + ACTIONS(6376), 1, sym__commonmark_whitespace, - [24634] = 2, - ACTIONS(4393), 1, - sym__trigger_error, + [24726] = 2, + ACTIONS(4571), 1, + sym__whitespace_ge_2, + ACTIONS(4573), 1, + aux_sym__whitespace_token1, + [24733] = 2, + ACTIONS(6378), 1, + anon_sym_RBRACE, ACTIONS(6380), 1, - sym__last_token_whitespace, - [24641] = 2, + sym__commonmark_whitespace, + [24740] = 2, ACTIONS(6382), 1, anon_sym_RBRACE, ACTIONS(6384), 1, sym__commonmark_whitespace, - [24648] = 2, + [24747] = 2, ACTIONS(6386), 1, anon_sym_RBRACE, ACTIONS(6388), 1, sym__commonmark_whitespace, - [24655] = 2, + [24754] = 2, ACTIONS(6390), 1, - sym__whitespace_ge_2, + anon_sym_RBRACE, ACTIONS(6392), 1, - aux_sym__whitespace_token1, - [24662] = 2, + sym__commonmark_whitespace, + [24761] = 2, ACTIONS(6394), 1, anon_sym_RBRACE, ACTIONS(6396), 1, sym__commonmark_whitespace, - [24669] = 1, - ACTIONS(4643), 2, - sym__shortcode_close, - sym_shortcode_name, - [24674] = 2, + [24768] = 1, + ACTIONS(4639), 2, + sym__shortcode_close_escaped, + sym__key_name_and_equals, + [24773] = 2, + ACTIONS(4535), 1, + sym__whitespace_ge_2, + ACTIONS(4537), 1, + aux_sym__whitespace_token1, + [24780] = 2, ACTIONS(6398), 1, anon_sym_RBRACE, ACTIONS(6400), 1, sym__commonmark_whitespace, - [24681] = 2, - ACTIONS(6282), 1, - sym_shortcode_name, - STATE(2718), 1, - sym_shortcode_keyword_param, - [24688] = 2, - ACTIONS(4539), 1, - sym__whitespace_ge_2, - ACTIONS(4541), 1, - aux_sym__whitespace_token1, - [24695] = 1, - ACTIONS(4643), 2, - sym__shortcode_close_escaped, - sym_shortcode_name, - [24700] = 2, + [24787] = 2, ACTIONS(6402), 1, - sym__whitespace_ge_2, + anon_sym_RBRACE, ACTIONS(6404), 1, - aux_sym__whitespace_token1, - [24707] = 2, - ACTIONS(4559), 1, - sym__whitespace_ge_2, - ACTIONS(4561), 1, - aux_sym__whitespace_token1, - [24714] = 2, + sym__commonmark_whitespace, + [24794] = 2, ACTIONS(6406), 1, anon_sym_RBRACE, ACTIONS(6408), 1, sym__commonmark_whitespace, - [24721] = 2, + [24801] = 2, + ACTIONS(6270), 1, + anon_sym_EQ, + ACTIONS(6274), 1, + sym__commonmark_whitespace, + [24808] = 2, ACTIONS(6410), 1, anon_sym_RBRACE, ACTIONS(6412), 1, sym__commonmark_whitespace, - [24728] = 2, + [24815] = 2, ACTIONS(6414), 1, anon_sym_RBRACE, ACTIONS(6416), 1, sym__commonmark_whitespace, - [24735] = 2, + [24822] = 2, ACTIONS(6418), 1, - anon_sym_RBRACE, + sym__whitespace_ge_2, ACTIONS(6420), 1, - sym__commonmark_whitespace, - [24742] = 2, + aux_sym__whitespace_token1, + [24829] = 2, ACTIONS(6422), 1, anon_sym_RBRACE, ACTIONS(6424), 1, sym__commonmark_whitespace, - [24749] = 2, + [24836] = 2, + ACTIONS(5465), 1, + sym__key_name_and_equals, + STATE(2702), 1, + sym_shortcode_keyword_param, + [24843] = 2, ACTIONS(6426), 1, anon_sym_RBRACE, ACTIONS(6428), 1, sym__commonmark_whitespace, - [24756] = 2, + [24850] = 2, ACTIONS(6430), 1, anon_sym_RBRACE, ACTIONS(6432), 1, sym__commonmark_whitespace, - [24763] = 2, + [24857] = 2, ACTIONS(6434), 1, anon_sym_RBRACE, ACTIONS(6436), 1, sym__commonmark_whitespace, - [24770] = 2, + [24864] = 2, + ACTIONS(4337), 1, + sym__key_name_and_equals, ACTIONS(6438), 1, - anon_sym_RBRACE, + sym__last_token_whitespace, + [24871] = 2, ACTIONS(6440), 1, - sym__commonmark_whitespace, - [24777] = 2, + anon_sym_RBRACE, ACTIONS(6442), 1, - sym__whitespace_ge_2, + sym__commonmark_whitespace, + [24878] = 2, ACTIONS(6444), 1, - aux_sym__whitespace_token1, - [24784] = 2, - ACTIONS(6446), 1, anon_sym_RBRACE, - ACTIONS(6448), 1, + ACTIONS(6446), 1, sym__commonmark_whitespace, - [24791] = 2, - ACTIONS(4575), 1, - sym__whitespace_ge_2, - ACTIONS(4577), 1, - aux_sym__whitespace_token1, - [24798] = 2, + [24885] = 2, + ACTIONS(6448), 1, + anon_sym_RBRACE, ACTIONS(6450), 1, - sym__whitespace_ge_2, + sym__commonmark_whitespace, + [24892] = 2, + ACTIONS(4397), 1, + sym__trigger_error, ACTIONS(6452), 1, - aux_sym__whitespace_token1, - [24805] = 2, + sym__last_token_whitespace, + [24899] = 2, ACTIONS(6454), 1, - sym__whitespace_ge_2, + anon_sym_RBRACE, ACTIONS(6456), 1, - aux_sym__whitespace_token1, - [24812] = 2, + sym__commonmark_whitespace, + [24906] = 2, ACTIONS(6458), 1, - sym__whitespace_ge_2, + anon_sym_RBRACE, ACTIONS(6460), 1, - aux_sym__whitespace_token1, - [24819] = 2, + sym__commonmark_whitespace, + [24913] = 2, ACTIONS(6462), 1, - anon_sym_RBRACE, + sym__whitespace_ge_2, ACTIONS(6464), 1, - sym__commonmark_whitespace, - [24826] = 2, + aux_sym__whitespace_token1, + [24920] = 2, ACTIONS(6466), 1, - anon_sym_RBRACE, + sym__whitespace_ge_2, ACTIONS(6468), 1, - sym__commonmark_whitespace, - [24833] = 2, + aux_sym__whitespace_token1, + [24927] = 2, ACTIONS(6470), 1, - sym__whitespace_ge_2, + anon_sym_RBRACE, ACTIONS(6472), 1, - aux_sym__whitespace_token1, - [24840] = 2, + sym__commonmark_whitespace, + [24934] = 2, ACTIONS(6474), 1, - anon_sym_RBRACE, + sym__whitespace_ge_2, ACTIONS(6476), 1, - sym__commonmark_whitespace, - [24847] = 2, + aux_sym__whitespace_token1, + [24941] = 2, ACTIONS(6478), 1, anon_sym_RBRACE, ACTIONS(6480), 1, sym__commonmark_whitespace, - [24854] = 2, + [24948] = 1, ACTIONS(6482), 1, - anon_sym_RBRACE, + anon_sym_LPAREN, + [24952] = 1, ACTIONS(6484), 1, - sym__commonmark_whitespace, - [24861] = 2, - ACTIONS(6486), 1, anon_sym_RBRACE, + [24956] = 1, + ACTIONS(6486), 1, + anon_sym_LPAREN, + [24960] = 1, ACTIONS(6488), 1, - sym__commonmark_whitespace, - [24868] = 2, + anon_sym_RBRACE, + [24964] = 1, ACTIONS(6490), 1, anon_sym_RBRACE, + [24968] = 1, ACTIONS(6492), 1, - sym__commonmark_whitespace, - [24875] = 2, - ACTIONS(6294), 1, - anon_sym_EQ, - ACTIONS(6298), 1, - sym__commonmark_whitespace, - [24882] = 2, + anon_sym_RBRACK, + [24972] = 1, ACTIONS(6494), 1, - anon_sym_RBRACE, + aux_sym_citation_token2, + [24976] = 1, ACTIONS(6496), 1, - sym__commonmark_whitespace, - [24889] = 1, + anon_sym_RBRACK, + [24980] = 1, ACTIONS(6498), 1, - anon_sym_LPAREN, - [24893] = 1, + aux_sym_citation_token1, + [24984] = 1, ACTIONS(6500), 1, - aux_sym_citation_token2, - [24897] = 1, + anon_sym_RBRACE, + [24988] = 1, ACTIONS(6502), 1, - anon_sym_LPAREN, - [24901] = 1, + aux_sym_citation_token1, + [24992] = 1, ACTIONS(6504), 1, - anon_sym_RBRACE, - [24905] = 1, + aux_sym_citation_token2, + [24996] = 1, ACTIONS(6506), 1, - anon_sym_RBRACE, - [24909] = 1, - ACTIONS(6508), 1, aux_sym_citation_token2, - [24913] = 1, + [25000] = 1, + ACTIONS(6508), 1, + anon_sym_RBRACE, + [25004] = 1, ACTIONS(6510), 1, - anon_sym_LPAREN, - [24917] = 1, + aux_sym_citation_token2, + [25008] = 1, ACTIONS(6512), 1, - anon_sym_RBRACE, - [24921] = 1, + aux_sym_citation_token1, + [25012] = 1, ACTIONS(6514), 1, - aux_sym_citation_token2, - [24925] = 1, + aux_sym_citation_token1, + [25016] = 1, ACTIONS(6516), 1, - anon_sym_LPAREN, - [24929] = 1, + aux_sym_citation_token2, + [25020] = 1, ACTIONS(6518), 1, - anon_sym_RBRACE, - [24933] = 1, - ACTIONS(6398), 1, - anon_sym_RBRACE, - [24937] = 1, - ACTIONS(6446), 1, - anon_sym_RBRACE, - [24941] = 1, + aux_sym_citation_token2, + [25024] = 1, ACTIONS(6520), 1, - sym__trigger_error, - [24945] = 1, + aux_sym_citation_token2, + [25028] = 1, ACTIONS(6522), 1, - sym__trigger_error, - [24949] = 1, + anon_sym_LPAREN, + [25032] = 1, ACTIONS(6524), 1, aux_sym_citation_token1, - [24953] = 1, + [25036] = 1, ACTIONS(6526), 1, aux_sym_citation_token1, - [24957] = 1, - ACTIONS(4639), 1, - sym__trigger_error, - [24961] = 1, + [25040] = 1, ACTIONS(6528), 1, - anon_sym_RBRACE, - [24965] = 1, + anon_sym_LPAREN, + [25044] = 1, ACTIONS(6530), 1, - anon_sym_RBRACE, - [24969] = 1, + anon_sym_RBRACK, + [25048] = 1, ACTIONS(6532), 1, - anon_sym_LPAREN, - [24973] = 1, + aux_sym_citation_token2, + [25052] = 1, ACTIONS(6534), 1, - anon_sym_RBRACE, - [24977] = 1, + aux_sym_citation_token2, + [25056] = 1, ACTIONS(6536), 1, - anon_sym_RBRACK, - [24981] = 1, + sym__trigger_error, + [25060] = 1, ACTIONS(6538), 1, anon_sym_RBRACE, - [24985] = 1, + [25064] = 1, ACTIONS(6540), 1, - ts_builtin_sym_end, - [24989] = 1, + anon_sym_RBRACE, + [25068] = 1, ACTIONS(6542), 1, - anon_sym_RBRACK, - [24993] = 1, + anon_sym_LPAREN, + [25072] = 1, ACTIONS(6544), 1, - anon_sym_RBRACE, - [24997] = 1, + anon_sym_LPAREN, + [25076] = 1, ACTIONS(6546), 1, anon_sym_RBRACK, - [25001] = 1, + [25080] = 1, ACTIONS(6548), 1, - anon_sym_RBRACK, - [25005] = 1, + aux_sym_citation_token1, + [25084] = 1, ACTIONS(6550), 1, - anon_sym_RBRACK, - [25009] = 1, + aux_sym_citation_token1, + [25088] = 1, ACTIONS(6552), 1, - aux_sym_citation_token2, - [25013] = 1, + anon_sym_RBRACE, + [25092] = 1, ACTIONS(6554), 1, - anon_sym_RBRACK, - [25017] = 1, + anon_sym_RBRACE, + [25096] = 1, ACTIONS(6556), 1, - aux_sym_citation_token1, - [25021] = 1, + anon_sym_RBRACE, + [25100] = 1, + ACTIONS(6440), 1, + anon_sym_RBRACE, + [25104] = 1, ACTIONS(6558), 1, - aux_sym_citation_token1, - [25025] = 1, + anon_sym_RBRACK, + [25108] = 1, ACTIONS(6560), 1, - aux_sym_citation_token1, - [25029] = 1, + anon_sym_RBRACE, + [25112] = 1, ACTIONS(6562), 1, - aux_sym_citation_token1, - [25033] = 1, + anon_sym_RBRACE, + [25116] = 1, ACTIONS(6564), 1, - anon_sym_RBRACK, - [25037] = 1, - ACTIONS(6566), 1, aux_sym_citation_token2, - [25041] = 1, + [25120] = 1, + ACTIONS(6566), 1, + anon_sym_RBRACE, + [25124] = 1, ACTIONS(6568), 1, - sym_shortcode_name, - [25045] = 1, + anon_sym_RBRACE, + [25128] = 1, ACTIONS(6570), 1, aux_sym_citation_token2, - [25049] = 1, + [25132] = 1, ACTIONS(6572), 1, aux_sym_citation_token2, - [25053] = 1, + [25136] = 1, ACTIONS(6574), 1, - anon_sym_RBRACE, - [25057] = 1, + aux_sym_citation_token2, + [25140] = 1, ACTIONS(6576), 1, - anon_sym_RBRACE, - [25061] = 1, + sym_shortcode_name, + [25144] = 1, ACTIONS(6578), 1, anon_sym_RBRACE, - [25065] = 1, + [25148] = 1, ACTIONS(6580), 1, - anon_sym_RBRACK, - [25069] = 1, + anon_sym_RBRACE, + [25152] = 1, ACTIONS(6582), 1, - anon_sym_LPAREN, - [25073] = 1, + aux_sym_citation_token1, + [25156] = 1, ACTIONS(6584), 1, - anon_sym_RBRACE, - [25077] = 1, + aux_sym_citation_token1, + [25160] = 1, ACTIONS(6586), 1, - anon_sym_RBRACE, - [25081] = 1, + anon_sym_EQ, + [25164] = 1, ACTIONS(6588), 1, - anon_sym_RBRACE, - [25085] = 1, - ACTIONS(6462), 1, - anon_sym_RBRACE, - [25089] = 1, + anon_sym_RBRACK, + [25168] = 1, ACTIONS(6590), 1, - aux_sym_citation_token2, - [25093] = 1, + anon_sym_RBRACE, + [25172] = 1, ACTIONS(6592), 1, - aux_sym_citation_token1, - [25097] = 1, + anon_sym_LPAREN, + [25176] = 1, + ACTIONS(6366), 1, + anon_sym_RBRACE, + [25180] = 1, ACTIONS(6594), 1, aux_sym_citation_token1, - [25101] = 1, + [25184] = 1, ACTIONS(6596), 1, aux_sym_citation_token2, - [25105] = 1, + [25188] = 1, ACTIONS(6598), 1, anon_sym_LPAREN, - [25109] = 1, + [25192] = 1, + ACTIONS(6426), 1, + anon_sym_RBRACE, + [25196] = 1, ACTIONS(6600), 1, aux_sym_citation_token2, - [25113] = 1, + [25200] = 1, ACTIONS(6602), 1, - anon_sym_LPAREN, - [25117] = 1, - ACTIONS(6406), 1, - anon_sym_RBRACE, - [25121] = 1, - ACTIONS(6466), 1, - anon_sym_RBRACE, - [25125] = 1, + aux_sym_citation_token2, + [25204] = 1, ACTIONS(6604), 1, + aux_sym_citation_token1, + [25208] = 1, + ACTIONS(6402), 1, anon_sym_RBRACE, - [25129] = 1, + [25212] = 1, ACTIONS(6606), 1, - aux_sym_citation_token2, - [25133] = 1, + aux_sym_citation_token1, + [25216] = 1, ACTIONS(6608), 1, - sym__trigger_error, - [25137] = 1, + sym_shortcode_name, + [25220] = 1, ACTIONS(6610), 1, - anon_sym_RBRACE, - [25141] = 1, + aux_sym_citation_token2, + [25224] = 1, ACTIONS(6612), 1, aux_sym_citation_token1, - [25145] = 1, + [25228] = 1, ACTIONS(6614), 1, aux_sym_citation_token1, - [25149] = 1, - ACTIONS(6434), 1, - anon_sym_RBRACE, - [25153] = 1, + [25232] = 1, ACTIONS(6616), 1, - aux_sym_citation_token1, - [25157] = 1, + aux_sym_citation_token2, + [25236] = 1, ACTIONS(6618), 1, anon_sym_RBRACE, - [25161] = 1, + [25240] = 1, ACTIONS(6620), 1, - anon_sym_RBRACE, - [25165] = 1, + anon_sym_LPAREN, + [25244] = 1, ACTIONS(6622), 1, - aux_sym_citation_token1, - [25169] = 1, + anon_sym_LPAREN, + [25248] = 1, ACTIONS(6624), 1, - aux_sym_citation_token1, - [25173] = 1, - ACTIONS(6626), 1, anon_sym_RBRACK, - [25177] = 1, + [25252] = 1, + ACTIONS(6626), 1, + anon_sym_RBRACE, + [25256] = 1, + ACTIONS(6454), 1, + anon_sym_RBRACE, + [25260] = 1, ACTIONS(6628), 1, anon_sym_RBRACK, - [25181] = 1, - ACTIONS(6490), 1, - anon_sym_RBRACE, - [25185] = 1, + [25264] = 1, ACTIONS(6630), 1, - anon_sym_LPAREN, - [25189] = 1, + sym__trigger_error, + [25268] = 1, ACTIONS(6632), 1, anon_sym_RBRACE, - [25193] = 1, + [25272] = 1, ACTIONS(6634), 1, - aux_sym_citation_token1, - [25197] = 1, + anon_sym_LPAREN, + [25276] = 1, ACTIONS(6636), 1, - aux_sym_citation_token1, - [25201] = 1, + aux_sym_citation_token2, + [25280] = 1, ACTIONS(6638), 1, - anon_sym_RBRACK, - [25205] = 1, + anon_sym_RBRACE, + [25284] = 1, + ACTIONS(6398), 1, + anon_sym_RBRACE, + [25288] = 1, ACTIONS(6640), 1, anon_sym_RBRACE, - [25209] = 1, - ACTIONS(6482), 1, + [25292] = 1, + ACTIONS(6434), 1, anon_sym_RBRACE, - [25213] = 1, + [25296] = 1, ACTIONS(6642), 1, - anon_sym_LPAREN, - [25217] = 1, + aux_sym_citation_token1, + [25300] = 1, ACTIONS(6644), 1, aux_sym_citation_token1, - [25221] = 1, + [25304] = 1, ACTIONS(6646), 1, anon_sym_RBRACE, - [25225] = 1, - ACTIONS(6410), 1, + [25308] = 1, + ACTIONS(6378), 1, anon_sym_RBRACE, - [25229] = 1, + [25312] = 1, ACTIONS(6648), 1, - anon_sym_RBRACE, - [25233] = 1, + aux_sym_citation_token1, + [25316] = 1, ACTIONS(6650), 1, anon_sym_LPAREN, - [25237] = 1, + [25320] = 1, ACTIONS(6652), 1, - aux_sym_citation_token1, - [25241] = 1, + aux_sym_citation_token2, + [25324] = 1, ACTIONS(6654), 1, - aux_sym_citation_token1, - [25245] = 1, + anon_sym_RBRACE, + [25328] = 1, ACTIONS(6656), 1, anon_sym_RBRACE, - [25249] = 1, + [25332] = 1, ACTIONS(6658), 1, anon_sym_RBRACE, - [25253] = 1, - ACTIONS(6376), 1, - anon_sym_RBRACE, - [25257] = 1, + [25336] = 1, ACTIONS(6660), 1, - anon_sym_LPAREN, - [25261] = 1, + anon_sym_RBRACE, + [25340] = 1, ACTIONS(6662), 1, aux_sym_citation_token2, - [25265] = 1, + [25344] = 1, ACTIONS(6664), 1, anon_sym_RBRACE, - [25269] = 1, + [25348] = 1, + ACTIONS(6444), 1, + anon_sym_RBRACE, + [25352] = 1, ACTIONS(6666), 1, - aux_sym_citation_token2, - [25273] = 1, + ts_builtin_sym_end, + [25356] = 1, ACTIONS(6668), 1, - anon_sym_EQ, - [25277] = 1, + aux_sym_citation_token2, + [25360] = 1, + ACTIONS(6414), 1, + anon_sym_RBRACE, + [25364] = 1, ACTIONS(6670), 1, anon_sym_RBRACE, - [25281] = 1, + [25368] = 1, + ACTIONS(6362), 1, + anon_sym_RBRACE, + [25372] = 1, ACTIONS(6672), 1, - aux_sym_citation_token2, - [25285] = 1, - ACTIONS(6674), 1, anon_sym_RBRACE, - [25289] = 1, + [25376] = 1, + ACTIONS(6674), 1, + sym_shortcode_name, + [25380] = 1, ACTIONS(6676), 1, - anon_sym_EQ, - [25293] = 1, + sym_shortcode_name, + [25384] = 1, ACTIONS(6678), 1, - anon_sym_RBRACE, - [25297] = 1, - ACTIONS(6494), 1, - anon_sym_RBRACE, - [25301] = 1, + sym_shortcode_name, + [25388] = 1, ACTIONS(6680), 1, - anon_sym_RBRACE, - [25305] = 1, + sym_shortcode_name, + [25392] = 1, ACTIONS(6682), 1, - anon_sym_RBRACE, - [25309] = 1, + sym_shortcode_name, + [25396] = 1, ACTIONS(6684), 1, sym_shortcode_name, - [25313] = 1, + [25400] = 1, ACTIONS(6686), 1, - aux_sym_citation_token2, - [25317] = 1, + sym_shortcode_name, + [25404] = 1, ACTIONS(6688), 1, sym_shortcode_name, - [25321] = 1, + [25408] = 1, ACTIONS(6690), 1, sym_shortcode_name, - [25325] = 1, + [25412] = 1, ACTIONS(6692), 1, sym_shortcode_name, - [25329] = 1, + [25416] = 1, ACTIONS(6694), 1, sym_shortcode_name, - [25333] = 1, + [25420] = 1, ACTIONS(6696), 1, sym_shortcode_name, - [25337] = 1, + [25424] = 1, ACTIONS(6698), 1, sym_shortcode_name, - [25341] = 1, + [25428] = 1, ACTIONS(6700), 1, sym_shortcode_name, - [25345] = 1, + [25432] = 1, ACTIONS(6702), 1, sym_shortcode_name, - [25349] = 1, + [25436] = 1, ACTIONS(6704), 1, sym_shortcode_name, - [25353] = 1, + [25440] = 1, ACTIONS(6706), 1, sym_shortcode_name, - [25357] = 1, + [25444] = 1, ACTIONS(6708), 1, sym_shortcode_name, - [25361] = 1, + [25448] = 1, ACTIONS(6710), 1, sym_shortcode_name, - [25365] = 1, + [25452] = 1, ACTIONS(6712), 1, sym_shortcode_name, - [25369] = 1, + [25456] = 1, ACTIONS(6714), 1, sym_shortcode_name, - [25373] = 1, + [25460] = 1, ACTIONS(6716), 1, sym_shortcode_name, - [25377] = 1, + [25464] = 1, ACTIONS(6718), 1, sym_shortcode_name, - [25381] = 1, + [25468] = 1, ACTIONS(6720), 1, - sym_shortcode_name, - [25385] = 1, + anon_sym_RBRACK, + [25472] = 1, ACTIONS(6722), 1, - sym_shortcode_name, - [25389] = 1, + aux_sym_citation_token1, + [25476] = 1, ACTIONS(6724), 1, - sym_shortcode_name, - [25393] = 1, + aux_sym_citation_token1, + [25480] = 1, ACTIONS(6726), 1, - sym_shortcode_name, - [25397] = 1, + aux_sym_citation_token1, + [25484] = 1, + ACTIONS(6394), 1, + anon_sym_RBRACE, + [25488] = 1, + ACTIONS(4639), 1, + sym__key_name_and_equals, + [25492] = 1, ACTIONS(6728), 1, - sym_shortcode_name, - [25401] = 1, + anon_sym_LPAREN, + [25496] = 1, ACTIONS(6730), 1, - sym_shortcode_name, - [25405] = 1, + aux_sym_citation_token1, + [25500] = 1, ACTIONS(6732), 1, - sym_shortcode_name, - [25409] = 1, + anon_sym_RBRACE, + [25504] = 1, ACTIONS(6734), 1, - aux_sym_citation_token2, - [25413] = 1, + anon_sym_RBRACK, + [25508] = 1, ACTIONS(6736), 1, - aux_sym_citation_token1, - [25417] = 1, + anon_sym_RBRACK, + [25512] = 1, + ACTIONS(4635), 1, + sym__trigger_error, + [25516] = 1, ACTIONS(6738), 1, - aux_sym_citation_token1, - [25421] = 1, + anon_sym_RBRACE, + [25520] = 1, ACTIONS(6740), 1, aux_sym_citation_token2, - [25425] = 1, + [25524] = 1, ACTIONS(6742), 1, - aux_sym_citation_token2, - [25429] = 1, + anon_sym_RBRACE, + [25528] = 1, ACTIONS(6744), 1, - aux_sym_citation_token2, - [25433] = 1, - ACTIONS(6746), 1, anon_sym_LPAREN, - [25437] = 1, + [25532] = 1, + ACTIONS(6746), 1, + sym__trigger_error, + [25536] = 1, ACTIONS(6748), 1, - aux_sym_citation_token2, - [25441] = 1, - ACTIONS(6750), 1, - aux_sym_citation_token1, - [25445] = 1, - ACTIONS(6478), 1, anon_sym_RBRACE, - [25449] = 1, + [25540] = 1, + ACTIONS(6750), 1, + anon_sym_RBRACK, + [25544] = 1, ACTIONS(6752), 1, aux_sym_citation_token1, - [25453] = 1, + [25548] = 1, ACTIONS(6754), 1, - aux_sym_citation_token2, - [25457] = 1, + aux_sym_citation_token1, + [25552] = 1, ACTIONS(6756), 1, - aux_sym_citation_token2, - [25461] = 1, - ACTIONS(6758), 1, - anon_sym_RBRACE, - [25465] = 1, - ACTIONS(6760), 1, - anon_sym_RBRACE, - [25469] = 1, - ACTIONS(6762), 1, anon_sym_RBRACE, - [25473] = 1, - ACTIONS(6764), 1, - aux_sym_citation_token2, - [25477] = 1, - ACTIONS(6766), 1, - anon_sym_LPAREN, - [25481] = 1, - ACTIONS(6768), 1, + [25556] = 1, + ACTIONS(6758), 1, aux_sym_citation_token2, - [25485] = 1, - ACTIONS(6770), 1, - aux_sym_citation_token1, - [25489] = 1, - ACTIONS(6772), 1, - aux_sym_citation_token1, - [25493] = 1, - ACTIONS(6774), 1, - anon_sym_RBRACE, - [25497] = 1, - ACTIONS(6776), 1, - anon_sym_RBRACK, - [25501] = 1, - ACTIONS(6778), 1, + [25560] = 1, + ACTIONS(6760), 1, anon_sym_RBRACE, }; @@ -187794,10 +187827,10 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1845)] = 4646, [SMALL_STATE(1846)] = 4712, [SMALL_STATE(1847)] = 4773, - [SMALL_STATE(1848)] = 4834, - [SMALL_STATE(1849)] = 4895, + [SMALL_STATE(1848)] = 4838, + [SMALL_STATE(1849)] = 4899, [SMALL_STATE(1850)] = 4960, - [SMALL_STATE(1851)] = 5021, + [SMALL_STATE(1851)] = 5025, [SMALL_STATE(1852)] = 5086, [SMALL_STATE(1853)] = 5151, [SMALL_STATE(1854)] = 5212, @@ -187821,8 +187854,8 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1872)] = 6292, [SMALL_STATE(1873)] = 6352, [SMALL_STATE(1874)] = 6412, - [SMALL_STATE(1875)] = 6472, - [SMALL_STATE(1876)] = 6532, + [SMALL_STATE(1875)] = 6468, + [SMALL_STATE(1876)] = 6528, [SMALL_STATE(1877)] = 6588, [SMALL_STATE(1878)] = 6648, [SMALL_STATE(1879)] = 6708, @@ -187830,56 +187863,56 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1881)] = 6828, [SMALL_STATE(1882)] = 6888, [SMALL_STATE(1883)] = 6948, - [SMALL_STATE(1884)] = 7002, - [SMALL_STATE(1885)] = 7054, - [SMALL_STATE(1886)] = 7102, - [SMALL_STATE(1887)] = 7150, - [SMALL_STATE(1888)] = 7206, - [SMALL_STATE(1889)] = 7254, - [SMALL_STATE(1890)] = 7310, - [SMALL_STATE(1891)] = 7358, - [SMALL_STATE(1892)] = 7406, - [SMALL_STATE(1893)] = 7454, - [SMALL_STATE(1894)] = 7502, - [SMALL_STATE(1895)] = 7552, + [SMALL_STATE(1884)] = 6996, + [SMALL_STATE(1885)] = 7044, + [SMALL_STATE(1886)] = 7094, + [SMALL_STATE(1887)] = 7142, + [SMALL_STATE(1888)] = 7194, + [SMALL_STATE(1889)] = 7250, + [SMALL_STATE(1890)] = 7298, + [SMALL_STATE(1891)] = 7348, + [SMALL_STATE(1892)] = 7396, + [SMALL_STATE(1893)] = 7450, + [SMALL_STATE(1894)] = 7506, + [SMALL_STATE(1895)] = 7554, [SMALL_STATE(1896)] = 7602, - [SMALL_STATE(1897)] = 7655, + [SMALL_STATE(1897)] = 7647, [SMALL_STATE(1898)] = 7700, - [SMALL_STATE(1899)] = 7745, + [SMALL_STATE(1899)] = 7753, [SMALL_STATE(1900)] = 7798, [SMALL_STATE(1901)] = 7843, - [SMALL_STATE(1902)] = 7892, - [SMALL_STATE(1903)] = 7937, - [SMALL_STATE(1904)] = 7982, - [SMALL_STATE(1905)] = 8027, + [SMALL_STATE(1902)] = 7888, + [SMALL_STATE(1903)] = 7933, + [SMALL_STATE(1904)] = 7978, + [SMALL_STATE(1905)] = 8023, [SMALL_STATE(1906)] = 8076, - [SMALL_STATE(1907)] = 8121, - [SMALL_STATE(1908)] = 8168, - [SMALL_STATE(1909)] = 8221, - [SMALL_STATE(1910)] = 8266, - [SMALL_STATE(1911)] = 8319, - [SMALL_STATE(1912)] = 8372, - [SMALL_STATE(1913)] = 8425, - [SMALL_STATE(1914)] = 8470, - [SMALL_STATE(1915)] = 8515, - [SMALL_STATE(1916)] = 8560, - [SMALL_STATE(1917)] = 8611, - [SMALL_STATE(1918)] = 8656, - [SMALL_STATE(1919)] = 8701, + [SMALL_STATE(1907)] = 8129, + [SMALL_STATE(1908)] = 8180, + [SMALL_STATE(1909)] = 8225, + [SMALL_STATE(1910)] = 8276, + [SMALL_STATE(1911)] = 8321, + [SMALL_STATE(1912)] = 8370, + [SMALL_STATE(1913)] = 8415, + [SMALL_STATE(1914)] = 8460, + [SMALL_STATE(1915)] = 8505, + [SMALL_STATE(1916)] = 8552, + [SMALL_STATE(1917)] = 8597, + [SMALL_STATE(1918)] = 8650, + [SMALL_STATE(1919)] = 8703, [SMALL_STATE(1920)] = 8752, [SMALL_STATE(1921)] = 8797, [SMALL_STATE(1922)] = 8843, [SMALL_STATE(1923)] = 8887, - [SMALL_STATE(1924)] = 8931, - [SMALL_STATE(1925)] = 8977, - [SMALL_STATE(1926)] = 9023, + [SMALL_STATE(1924)] = 8933, + [SMALL_STATE(1925)] = 8979, + [SMALL_STATE(1926)] = 9025, [SMALL_STATE(1927)] = 9069, - [SMALL_STATE(1928)] = 9114, + [SMALL_STATE(1928)] = 9112, [SMALL_STATE(1929)] = 9157, - [SMALL_STATE(1930)] = 9202, - [SMALL_STATE(1931)] = 9245, - [SMALL_STATE(1932)] = 9288, - [SMALL_STATE(1933)] = 9333, + [SMALL_STATE(1930)] = 9200, + [SMALL_STATE(1931)] = 9243, + [SMALL_STATE(1932)] = 9286, + [SMALL_STATE(1933)] = 9331, [SMALL_STATE(1934)] = 9376, [SMALL_STATE(1935)] = 9419, [SMALL_STATE(1936)] = 9464, @@ -187889,1053 +187922,1049 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1940)] = 9632, [SMALL_STATE(1941)] = 9670, [SMALL_STATE(1942)] = 9708, - [SMALL_STATE(1943)] = 9743, - [SMALL_STATE(1944)] = 9778, - [SMALL_STATE(1945)] = 9813, - [SMALL_STATE(1946)] = 9848, - [SMALL_STATE(1947)] = 9883, - [SMALL_STATE(1948)] = 9918, - [SMALL_STATE(1949)] = 9953, - [SMALL_STATE(1950)] = 9988, - [SMALL_STATE(1951)] = 10023, - [SMALL_STATE(1952)] = 10058, - [SMALL_STATE(1953)] = 10093, - [SMALL_STATE(1954)] = 10128, - [SMALL_STATE(1955)] = 10163, - [SMALL_STATE(1956)] = 10198, - [SMALL_STATE(1957)] = 10233, - [SMALL_STATE(1958)] = 10268, - [SMALL_STATE(1959)] = 10303, - [SMALL_STATE(1960)] = 10338, - [SMALL_STATE(1961)] = 10373, - [SMALL_STATE(1962)] = 10408, - [SMALL_STATE(1963)] = 10443, - [SMALL_STATE(1964)] = 10478, - [SMALL_STATE(1965)] = 10513, - [SMALL_STATE(1966)] = 10548, - [SMALL_STATE(1967)] = 10583, - [SMALL_STATE(1968)] = 10618, - [SMALL_STATE(1969)] = 10653, - [SMALL_STATE(1970)] = 10688, - [SMALL_STATE(1971)] = 10723, - [SMALL_STATE(1972)] = 10758, - [SMALL_STATE(1973)] = 10793, - [SMALL_STATE(1974)] = 10828, - [SMALL_STATE(1975)] = 10863, - [SMALL_STATE(1976)] = 10898, - [SMALL_STATE(1977)] = 10933, - [SMALL_STATE(1978)] = 10968, - [SMALL_STATE(1979)] = 11003, - [SMALL_STATE(1980)] = 11038, - [SMALL_STATE(1981)] = 11073, - [SMALL_STATE(1982)] = 11108, - [SMALL_STATE(1983)] = 11143, - [SMALL_STATE(1984)] = 11178, - [SMALL_STATE(1985)] = 11213, - [SMALL_STATE(1986)] = 11248, - [SMALL_STATE(1987)] = 11283, - [SMALL_STATE(1988)] = 11318, - [SMALL_STATE(1989)] = 11353, - [SMALL_STATE(1990)] = 11388, - [SMALL_STATE(1991)] = 11423, - [SMALL_STATE(1992)] = 11458, - [SMALL_STATE(1993)] = 11487, - [SMALL_STATE(1994)] = 11516, - [SMALL_STATE(1995)] = 11545, - [SMALL_STATE(1996)] = 11575, - [SMALL_STATE(1997)] = 11605, - [SMALL_STATE(1998)] = 11639, - [SMALL_STATE(1999)] = 11669, - [SMALL_STATE(2000)] = 11699, - [SMALL_STATE(2001)] = 11729, - [SMALL_STATE(2002)] = 11759, - [SMALL_STATE(2003)] = 11789, - [SMALL_STATE(2004)] = 11823, - [SMALL_STATE(2005)] = 11853, - [SMALL_STATE(2006)] = 11883, - [SMALL_STATE(2007)] = 11913, - [SMALL_STATE(2008)] = 11943, - [SMALL_STATE(2009)] = 11973, - [SMALL_STATE(2010)] = 12003, - [SMALL_STATE(2011)] = 12033, - [SMALL_STATE(2012)] = 12063, - [SMALL_STATE(2013)] = 12093, - [SMALL_STATE(2014)] = 12123, - [SMALL_STATE(2015)] = 12153, - [SMALL_STATE(2016)] = 12183, - [SMALL_STATE(2017)] = 12213, - [SMALL_STATE(2018)] = 12243, - [SMALL_STATE(2019)] = 12273, - [SMALL_STATE(2020)] = 12303, - [SMALL_STATE(2021)] = 12321, - [SMALL_STATE(2022)] = 12355, - [SMALL_STATE(2023)] = 12385, - [SMALL_STATE(2024)] = 12403, - [SMALL_STATE(2025)] = 12433, - [SMALL_STATE(2026)] = 12463, - [SMALL_STATE(2027)] = 12493, - [SMALL_STATE(2028)] = 12523, - [SMALL_STATE(2029)] = 12553, - [SMALL_STATE(2030)] = 12583, - [SMALL_STATE(2031)] = 12613, - [SMALL_STATE(2032)] = 12643, - [SMALL_STATE(2033)] = 12673, - [SMALL_STATE(2034)] = 12703, - [SMALL_STATE(2035)] = 12733, - [SMALL_STATE(2036)] = 12767, - [SMALL_STATE(2037)] = 12801, - [SMALL_STATE(2038)] = 12831, - [SMALL_STATE(2039)] = 12861, - [SMALL_STATE(2040)] = 12891, - [SMALL_STATE(2041)] = 12921, - [SMALL_STATE(2042)] = 12951, - [SMALL_STATE(2043)] = 12981, - [SMALL_STATE(2044)] = 13011, - [SMALL_STATE(2045)] = 13041, - [SMALL_STATE(2046)] = 13075, - [SMALL_STATE(2047)] = 13109, - [SMALL_STATE(2048)] = 13143, - [SMALL_STATE(2049)] = 13177, - [SMALL_STATE(2050)] = 13211, - [SMALL_STATE(2051)] = 13245, - [SMALL_STATE(2052)] = 13275, - [SMALL_STATE(2053)] = 13305, - [SMALL_STATE(2054)] = 13335, - [SMALL_STATE(2055)] = 13365, - [SMALL_STATE(2056)] = 13399, - [SMALL_STATE(2057)] = 13429, - [SMALL_STATE(2058)] = 13460, - [SMALL_STATE(2059)] = 13491, - [SMALL_STATE(2060)] = 13522, - [SMALL_STATE(2061)] = 13553, - [SMALL_STATE(2062)] = 13584, - [SMALL_STATE(2063)] = 13607, - [SMALL_STATE(2064)] = 13630, - [SMALL_STATE(2065)] = 13651, - [SMALL_STATE(2066)] = 13666, - [SMALL_STATE(2067)] = 13689, - [SMALL_STATE(2068)] = 13720, - [SMALL_STATE(2069)] = 13751, - [SMALL_STATE(2070)] = 13768, - [SMALL_STATE(2071)] = 13791, - [SMALL_STATE(2072)] = 13814, - [SMALL_STATE(2073)] = 13837, - [SMALL_STATE(2074)] = 13860, - [SMALL_STATE(2075)] = 13883, - [SMALL_STATE(2076)] = 13914, - [SMALL_STATE(2077)] = 13945, - [SMALL_STATE(2078)] = 13968, - [SMALL_STATE(2079)] = 13999, - [SMALL_STATE(2080)] = 14030, - [SMALL_STATE(2081)] = 14061, - [SMALL_STATE(2082)] = 14084, - [SMALL_STATE(2083)] = 14115, - [SMALL_STATE(2084)] = 14138, - [SMALL_STATE(2085)] = 14161, - [SMALL_STATE(2086)] = 14184, - [SMALL_STATE(2087)] = 14207, - [SMALL_STATE(2088)] = 14238, - [SMALL_STATE(2089)] = 14269, - [SMALL_STATE(2090)] = 14292, - [SMALL_STATE(2091)] = 14323, - [SMALL_STATE(2092)] = 14354, - [SMALL_STATE(2093)] = 14377, - [SMALL_STATE(2094)] = 14400, - [SMALL_STATE(2095)] = 14423, - [SMALL_STATE(2096)] = 14440, - [SMALL_STATE(2097)] = 14463, - [SMALL_STATE(2098)] = 14494, - [SMALL_STATE(2099)] = 14525, - [SMALL_STATE(2100)] = 14548, - [SMALL_STATE(2101)] = 14579, - [SMALL_STATE(2102)] = 14610, - [SMALL_STATE(2103)] = 14633, - [SMALL_STATE(2104)] = 14656, - [SMALL_STATE(2105)] = 14679, - [SMALL_STATE(2106)] = 14694, - [SMALL_STATE(2107)] = 14725, - [SMALL_STATE(2108)] = 14756, - [SMALL_STATE(2109)] = 14779, - [SMALL_STATE(2110)] = 14802, - [SMALL_STATE(2111)] = 14833, - [SMALL_STATE(2112)] = 14861, - [SMALL_STATE(2113)] = 14889, - [SMALL_STATE(2114)] = 14917, - [SMALL_STATE(2115)] = 14945, - [SMALL_STATE(2116)] = 14973, - [SMALL_STATE(2117)] = 15001, - [SMALL_STATE(2118)] = 15029, - [SMALL_STATE(2119)] = 15057, - [SMALL_STATE(2120)] = 15085, - [SMALL_STATE(2121)] = 15113, - [SMALL_STATE(2122)] = 15127, - [SMALL_STATE(2123)] = 15155, - [SMALL_STATE(2124)] = 15183, - [SMALL_STATE(2125)] = 15211, - [SMALL_STATE(2126)] = 15239, - [SMALL_STATE(2127)] = 15267, - [SMALL_STATE(2128)] = 15295, - [SMALL_STATE(2129)] = 15323, - [SMALL_STATE(2130)] = 15351, - [SMALL_STATE(2131)] = 15379, - [SMALL_STATE(2132)] = 15407, - [SMALL_STATE(2133)] = 15435, - [SMALL_STATE(2134)] = 15449, - [SMALL_STATE(2135)] = 15477, - [SMALL_STATE(2136)] = 15505, - [SMALL_STATE(2137)] = 15533, - [SMALL_STATE(2138)] = 15561, - [SMALL_STATE(2139)] = 15589, - [SMALL_STATE(2140)] = 15617, - [SMALL_STATE(2141)] = 15645, - [SMALL_STATE(2142)] = 15673, - [SMALL_STATE(2143)] = 15701, - [SMALL_STATE(2144)] = 15729, - [SMALL_STATE(2145)] = 15757, - [SMALL_STATE(2146)] = 15785, - [SMALL_STATE(2147)] = 15813, - [SMALL_STATE(2148)] = 15841, - [SMALL_STATE(2149)] = 15869, - [SMALL_STATE(2150)] = 15884, - [SMALL_STATE(2151)] = 15902, - [SMALL_STATE(2152)] = 15920, - [SMALL_STATE(2153)] = 15938, - [SMALL_STATE(2154)] = 15956, - [SMALL_STATE(2155)] = 15974, - [SMALL_STATE(2156)] = 15996, - [SMALL_STATE(2157)] = 16014, - [SMALL_STATE(2158)] = 16032, - [SMALL_STATE(2159)] = 16050, - [SMALL_STATE(2160)] = 16068, - [SMALL_STATE(2161)] = 16086, - [SMALL_STATE(2162)] = 16104, - [SMALL_STATE(2163)] = 16122, - [SMALL_STATE(2164)] = 16140, - [SMALL_STATE(2165)] = 16158, - [SMALL_STATE(2166)] = 16176, - [SMALL_STATE(2167)] = 16194, - [SMALL_STATE(2168)] = 16212, - [SMALL_STATE(2169)] = 16230, - [SMALL_STATE(2170)] = 16248, - [SMALL_STATE(2171)] = 16266, - [SMALL_STATE(2172)] = 16284, - [SMALL_STATE(2173)] = 16302, - [SMALL_STATE(2174)] = 16320, - [SMALL_STATE(2175)] = 16342, - [SMALL_STATE(2176)] = 16360, - [SMALL_STATE(2177)] = 16382, - [SMALL_STATE(2178)] = 16400, - [SMALL_STATE(2179)] = 16418, - [SMALL_STATE(2180)] = 16436, - [SMALL_STATE(2181)] = 16454, - [SMALL_STATE(2182)] = 16476, - [SMALL_STATE(2183)] = 16494, - [SMALL_STATE(2184)] = 16516, - [SMALL_STATE(2185)] = 16538, - [SMALL_STATE(2186)] = 16550, - [SMALL_STATE(2187)] = 16562, - [SMALL_STATE(2188)] = 16580, - [SMALL_STATE(2189)] = 16602, - [SMALL_STATE(2190)] = 16620, - [SMALL_STATE(2191)] = 16642, - [SMALL_STATE(2192)] = 16660, - [SMALL_STATE(2193)] = 16678, - [SMALL_STATE(2194)] = 16696, - [SMALL_STATE(2195)] = 16714, - [SMALL_STATE(2196)] = 16732, - [SMALL_STATE(2197)] = 16750, - [SMALL_STATE(2198)] = 16768, - [SMALL_STATE(2199)] = 16786, - [SMALL_STATE(2200)] = 16808, - [SMALL_STATE(2201)] = 16826, - [SMALL_STATE(2202)] = 16844, - [SMALL_STATE(2203)] = 16862, - [SMALL_STATE(2204)] = 16880, - [SMALL_STATE(2205)] = 16898, - [SMALL_STATE(2206)] = 16916, - [SMALL_STATE(2207)] = 16934, - [SMALL_STATE(2208)] = 16956, - [SMALL_STATE(2209)] = 16974, - [SMALL_STATE(2210)] = 16992, - [SMALL_STATE(2211)] = 17010, - [SMALL_STATE(2212)] = 17028, - [SMALL_STATE(2213)] = 17046, - [SMALL_STATE(2214)] = 17064, - [SMALL_STATE(2215)] = 17082, - [SMALL_STATE(2216)] = 17100, - [SMALL_STATE(2217)] = 17118, - [SMALL_STATE(2218)] = 17136, - [SMALL_STATE(2219)] = 17154, - [SMALL_STATE(2220)] = 17176, - [SMALL_STATE(2221)] = 17194, - [SMALL_STATE(2222)] = 17212, - [SMALL_STATE(2223)] = 17230, - [SMALL_STATE(2224)] = 17248, - [SMALL_STATE(2225)] = 17266, - [SMALL_STATE(2226)] = 17284, - [SMALL_STATE(2227)] = 17302, - [SMALL_STATE(2228)] = 17320, - [SMALL_STATE(2229)] = 17338, - [SMALL_STATE(2230)] = 17360, - [SMALL_STATE(2231)] = 17378, - [SMALL_STATE(2232)] = 17396, - [SMALL_STATE(2233)] = 17414, - [SMALL_STATE(2234)] = 17432, - [SMALL_STATE(2235)] = 17450, - [SMALL_STATE(2236)] = 17468, - [SMALL_STATE(2237)] = 17486, - [SMALL_STATE(2238)] = 17504, - [SMALL_STATE(2239)] = 17526, - [SMALL_STATE(2240)] = 17544, - [SMALL_STATE(2241)] = 17562, - [SMALL_STATE(2242)] = 17580, - [SMALL_STATE(2243)] = 17598, - [SMALL_STATE(2244)] = 17616, - [SMALL_STATE(2245)] = 17634, - [SMALL_STATE(2246)] = 17652, - [SMALL_STATE(2247)] = 17674, - [SMALL_STATE(2248)] = 17696, - [SMALL_STATE(2249)] = 17714, - [SMALL_STATE(2250)] = 17732, - [SMALL_STATE(2251)] = 17750, - [SMALL_STATE(2252)] = 17768, - [SMALL_STATE(2253)] = 17786, - [SMALL_STATE(2254)] = 17804, - [SMALL_STATE(2255)] = 17822, - [SMALL_STATE(2256)] = 17840, - [SMALL_STATE(2257)] = 17858, - [SMALL_STATE(2258)] = 17876, - [SMALL_STATE(2259)] = 17894, - [SMALL_STATE(2260)] = 17912, - [SMALL_STATE(2261)] = 17930, - [SMALL_STATE(2262)] = 17948, - [SMALL_STATE(2263)] = 17966, - [SMALL_STATE(2264)] = 17984, - [SMALL_STATE(2265)] = 18002, - [SMALL_STATE(2266)] = 18020, - [SMALL_STATE(2267)] = 18042, - [SMALL_STATE(2268)] = 18060, - [SMALL_STATE(2269)] = 18078, - [SMALL_STATE(2270)] = 18096, - [SMALL_STATE(2271)] = 18114, - [SMALL_STATE(2272)] = 18132, - [SMALL_STATE(2273)] = 18150, - [SMALL_STATE(2274)] = 18168, - [SMALL_STATE(2275)] = 18190, - [SMALL_STATE(2276)] = 18212, - [SMALL_STATE(2277)] = 18234, - [SMALL_STATE(2278)] = 18252, - [SMALL_STATE(2279)] = 18270, - [SMALL_STATE(2280)] = 18292, - [SMALL_STATE(2281)] = 18310, - [SMALL_STATE(2282)] = 18328, - [SMALL_STATE(2283)] = 18346, - [SMALL_STATE(2284)] = 18368, - [SMALL_STATE(2285)] = 18386, - [SMALL_STATE(2286)] = 18404, - [SMALL_STATE(2287)] = 18422, - [SMALL_STATE(2288)] = 18440, - [SMALL_STATE(2289)] = 18458, - [SMALL_STATE(2290)] = 18476, - [SMALL_STATE(2291)] = 18494, - [SMALL_STATE(2292)] = 18512, - [SMALL_STATE(2293)] = 18534, - [SMALL_STATE(2294)] = 18552, - [SMALL_STATE(2295)] = 18570, - [SMALL_STATE(2296)] = 18588, - [SMALL_STATE(2297)] = 18606, - [SMALL_STATE(2298)] = 18624, - [SMALL_STATE(2299)] = 18642, - [SMALL_STATE(2300)] = 18660, - [SMALL_STATE(2301)] = 18678, - [SMALL_STATE(2302)] = 18700, - [SMALL_STATE(2303)] = 18718, - [SMALL_STATE(2304)] = 18736, - [SMALL_STATE(2305)] = 18754, - [SMALL_STATE(2306)] = 18772, - [SMALL_STATE(2307)] = 18790, - [SMALL_STATE(2308)] = 18808, - [SMALL_STATE(2309)] = 18826, - [SMALL_STATE(2310)] = 18844, - [SMALL_STATE(2311)] = 18862, - [SMALL_STATE(2312)] = 18880, - [SMALL_STATE(2313)] = 18898, - [SMALL_STATE(2314)] = 18916, - [SMALL_STATE(2315)] = 18934, - [SMALL_STATE(2316)] = 18952, - [SMALL_STATE(2317)] = 18970, - [SMALL_STATE(2318)] = 18988, - [SMALL_STATE(2319)] = 19010, - [SMALL_STATE(2320)] = 19032, - [SMALL_STATE(2321)] = 19050, - [SMALL_STATE(2322)] = 19068, - [SMALL_STATE(2323)] = 19086, - [SMALL_STATE(2324)] = 19104, - [SMALL_STATE(2325)] = 19122, - [SMALL_STATE(2326)] = 19140, - [SMALL_STATE(2327)] = 19158, - [SMALL_STATE(2328)] = 19180, - [SMALL_STATE(2329)] = 19198, - [SMALL_STATE(2330)] = 19216, - [SMALL_STATE(2331)] = 19234, - [SMALL_STATE(2332)] = 19252, - [SMALL_STATE(2333)] = 19270, - [SMALL_STATE(2334)] = 19288, - [SMALL_STATE(2335)] = 19306, - [SMALL_STATE(2336)] = 19324, - [SMALL_STATE(2337)] = 19346, - [SMALL_STATE(2338)] = 19364, - [SMALL_STATE(2339)] = 19382, - [SMALL_STATE(2340)] = 19400, - [SMALL_STATE(2341)] = 19418, - [SMALL_STATE(2342)] = 19436, - [SMALL_STATE(2343)] = 19458, - [SMALL_STATE(2344)] = 19476, - [SMALL_STATE(2345)] = 19494, - [SMALL_STATE(2346)] = 19512, - [SMALL_STATE(2347)] = 19530, - [SMALL_STATE(2348)] = 19548, - [SMALL_STATE(2349)] = 19566, - [SMALL_STATE(2350)] = 19584, - [SMALL_STATE(2351)] = 19602, - [SMALL_STATE(2352)] = 19620, - [SMALL_STATE(2353)] = 19638, - [SMALL_STATE(2354)] = 19656, - [SMALL_STATE(2355)] = 19674, - [SMALL_STATE(2356)] = 19692, - [SMALL_STATE(2357)] = 19710, - [SMALL_STATE(2358)] = 19728, - [SMALL_STATE(2359)] = 19746, - [SMALL_STATE(2360)] = 19764, - [SMALL_STATE(2361)] = 19782, - [SMALL_STATE(2362)] = 19800, - [SMALL_STATE(2363)] = 19818, - [SMALL_STATE(2364)] = 19836, - [SMALL_STATE(2365)] = 19854, - [SMALL_STATE(2366)] = 19872, - [SMALL_STATE(2367)] = 19890, - [SMALL_STATE(2368)] = 19908, - [SMALL_STATE(2369)] = 19926, - [SMALL_STATE(2370)] = 19944, - [SMALL_STATE(2371)] = 19962, - [SMALL_STATE(2372)] = 19980, - [SMALL_STATE(2373)] = 19998, - [SMALL_STATE(2374)] = 20016, - [SMALL_STATE(2375)] = 20034, - [SMALL_STATE(2376)] = 20052, - [SMALL_STATE(2377)] = 20070, - [SMALL_STATE(2378)] = 20088, - [SMALL_STATE(2379)] = 20106, - [SMALL_STATE(2380)] = 20124, - [SMALL_STATE(2381)] = 20142, - [SMALL_STATE(2382)] = 20164, - [SMALL_STATE(2383)] = 20182, - [SMALL_STATE(2384)] = 20200, - [SMALL_STATE(2385)] = 20218, - [SMALL_STATE(2386)] = 20236, - [SMALL_STATE(2387)] = 20254, - [SMALL_STATE(2388)] = 20276, - [SMALL_STATE(2389)] = 20294, - [SMALL_STATE(2390)] = 20312, - [SMALL_STATE(2391)] = 20330, - [SMALL_STATE(2392)] = 20348, - [SMALL_STATE(2393)] = 20366, - [SMALL_STATE(2394)] = 20384, - [SMALL_STATE(2395)] = 20406, - [SMALL_STATE(2396)] = 20424, - [SMALL_STATE(2397)] = 20442, - [SMALL_STATE(2398)] = 20460, - [SMALL_STATE(2399)] = 20478, - [SMALL_STATE(2400)] = 20496, - [SMALL_STATE(2401)] = 20514, - [SMALL_STATE(2402)] = 20532, - [SMALL_STATE(2403)] = 20550, - [SMALL_STATE(2404)] = 20568, - [SMALL_STATE(2405)] = 20586, - [SMALL_STATE(2406)] = 20604, - [SMALL_STATE(2407)] = 20622, - [SMALL_STATE(2408)] = 20640, - [SMALL_STATE(2409)] = 20658, - [SMALL_STATE(2410)] = 20676, - [SMALL_STATE(2411)] = 20694, - [SMALL_STATE(2412)] = 20712, - [SMALL_STATE(2413)] = 20730, - [SMALL_STATE(2414)] = 20748, - [SMALL_STATE(2415)] = 20766, - [SMALL_STATE(2416)] = 20784, - [SMALL_STATE(2417)] = 20802, - [SMALL_STATE(2418)] = 20820, - [SMALL_STATE(2419)] = 20838, - [SMALL_STATE(2420)] = 20850, - [SMALL_STATE(2421)] = 20868, - [SMALL_STATE(2422)] = 20890, - [SMALL_STATE(2423)] = 20912, - [SMALL_STATE(2424)] = 20930, - [SMALL_STATE(2425)] = 20952, - [SMALL_STATE(2426)] = 20970, - [SMALL_STATE(2427)] = 20992, - [SMALL_STATE(2428)] = 21014, - [SMALL_STATE(2429)] = 21032, - [SMALL_STATE(2430)] = 21047, - [SMALL_STATE(2431)] = 21060, - [SMALL_STATE(2432)] = 21076, - [SMALL_STATE(2433)] = 21092, - [SMALL_STATE(2434)] = 21102, - [SMALL_STATE(2435)] = 21118, - [SMALL_STATE(2436)] = 21134, - [SMALL_STATE(2437)] = 21150, - [SMALL_STATE(2438)] = 21166, - [SMALL_STATE(2439)] = 21182, - [SMALL_STATE(2440)] = 21196, - [SMALL_STATE(2441)] = 21212, - [SMALL_STATE(2442)] = 21228, - [SMALL_STATE(2443)] = 21244, - [SMALL_STATE(2444)] = 21260, - [SMALL_STATE(2445)] = 21276, - [SMALL_STATE(2446)] = 21292, - [SMALL_STATE(2447)] = 21308, - [SMALL_STATE(2448)] = 21324, - [SMALL_STATE(2449)] = 21340, - [SMALL_STATE(2450)] = 21356, - [SMALL_STATE(2451)] = 21372, - [SMALL_STATE(2452)] = 21388, - [SMALL_STATE(2453)] = 21404, - [SMALL_STATE(2454)] = 21420, - [SMALL_STATE(2455)] = 21436, - [SMALL_STATE(2456)] = 21452, - [SMALL_STATE(2457)] = 21468, - [SMALL_STATE(2458)] = 21484, - [SMALL_STATE(2459)] = 21496, - [SMALL_STATE(2460)] = 21512, - [SMALL_STATE(2461)] = 21528, - [SMALL_STATE(2462)] = 21544, - [SMALL_STATE(2463)] = 21560, - [SMALL_STATE(2464)] = 21576, - [SMALL_STATE(2465)] = 21592, - [SMALL_STATE(2466)] = 21608, - [SMALL_STATE(2467)] = 21624, - [SMALL_STATE(2468)] = 21640, - [SMALL_STATE(2469)] = 21656, - [SMALL_STATE(2470)] = 21670, - [SMALL_STATE(2471)] = 21686, - [SMALL_STATE(2472)] = 21702, - [SMALL_STATE(2473)] = 21718, - [SMALL_STATE(2474)] = 21734, - [SMALL_STATE(2475)] = 21748, - [SMALL_STATE(2476)] = 21764, - [SMALL_STATE(2477)] = 21780, - [SMALL_STATE(2478)] = 21796, - [SMALL_STATE(2479)] = 21812, - [SMALL_STATE(2480)] = 21828, - [SMALL_STATE(2481)] = 21844, - [SMALL_STATE(2482)] = 21858, - [SMALL_STATE(2483)] = 21874, - [SMALL_STATE(2484)] = 21888, - [SMALL_STATE(2485)] = 21904, - [SMALL_STATE(2486)] = 21920, - [SMALL_STATE(2487)] = 21936, - [SMALL_STATE(2488)] = 21952, - [SMALL_STATE(2489)] = 21968, - [SMALL_STATE(2490)] = 21982, - [SMALL_STATE(2491)] = 21998, - [SMALL_STATE(2492)] = 22014, - [SMALL_STATE(2493)] = 22030, - [SMALL_STATE(2494)] = 22046, - [SMALL_STATE(2495)] = 22062, - [SMALL_STATE(2496)] = 22078, - [SMALL_STATE(2497)] = 22092, - [SMALL_STATE(2498)] = 22108, - [SMALL_STATE(2499)] = 22124, - [SMALL_STATE(2500)] = 22140, - [SMALL_STATE(2501)] = 22156, - [SMALL_STATE(2502)] = 22172, - [SMALL_STATE(2503)] = 22188, - [SMALL_STATE(2504)] = 22204, - [SMALL_STATE(2505)] = 22218, - [SMALL_STATE(2506)] = 22234, - [SMALL_STATE(2507)] = 22250, - [SMALL_STATE(2508)] = 22266, - [SMALL_STATE(2509)] = 22282, - [SMALL_STATE(2510)] = 22298, - [SMALL_STATE(2511)] = 22312, - [SMALL_STATE(2512)] = 22328, - [SMALL_STATE(2513)] = 22344, - [SMALL_STATE(2514)] = 22360, - [SMALL_STATE(2515)] = 22376, - [SMALL_STATE(2516)] = 22392, - [SMALL_STATE(2517)] = 22408, - [SMALL_STATE(2518)] = 22422, - [SMALL_STATE(2519)] = 22438, - [SMALL_STATE(2520)] = 22454, - [SMALL_STATE(2521)] = 22470, - [SMALL_STATE(2522)] = 22486, - [SMALL_STATE(2523)] = 22502, - [SMALL_STATE(2524)] = 22516, - [SMALL_STATE(2525)] = 22532, - [SMALL_STATE(2526)] = 22548, - [SMALL_STATE(2527)] = 22564, - [SMALL_STATE(2528)] = 22580, - [SMALL_STATE(2529)] = 22596, - [SMALL_STATE(2530)] = 22612, - [SMALL_STATE(2531)] = 22626, - [SMALL_STATE(2532)] = 22642, - [SMALL_STATE(2533)] = 22658, - [SMALL_STATE(2534)] = 22674, - [SMALL_STATE(2535)] = 22690, - [SMALL_STATE(2536)] = 22706, - [SMALL_STATE(2537)] = 22722, - [SMALL_STATE(2538)] = 22738, - [SMALL_STATE(2539)] = 22752, - [SMALL_STATE(2540)] = 22768, - [SMALL_STATE(2541)] = 22784, - [SMALL_STATE(2542)] = 22800, - [SMALL_STATE(2543)] = 22816, - [SMALL_STATE(2544)] = 22832, - [SMALL_STATE(2545)] = 22848, - [SMALL_STATE(2546)] = 22864, - [SMALL_STATE(2547)] = 22880, - [SMALL_STATE(2548)] = 22893, - [SMALL_STATE(2549)] = 22902, - [SMALL_STATE(2550)] = 22911, - [SMALL_STATE(2551)] = 22924, - [SMALL_STATE(2552)] = 22937, - [SMALL_STATE(2553)] = 22946, - [SMALL_STATE(2554)] = 22955, - [SMALL_STATE(2555)] = 22968, - [SMALL_STATE(2556)] = 22977, - [SMALL_STATE(2557)] = 22986, - [SMALL_STATE(2558)] = 22995, - [SMALL_STATE(2559)] = 23008, - [SMALL_STATE(2560)] = 23021, - [SMALL_STATE(2561)] = 23034, - [SMALL_STATE(2562)] = 23047, - [SMALL_STATE(2563)] = 23060, - [SMALL_STATE(2564)] = 23073, - [SMALL_STATE(2565)] = 23086, - [SMALL_STATE(2566)] = 23099, - [SMALL_STATE(2567)] = 23112, - [SMALL_STATE(2568)] = 23125, - [SMALL_STATE(2569)] = 23138, - [SMALL_STATE(2570)] = 23151, - [SMALL_STATE(2571)] = 23164, - [SMALL_STATE(2572)] = 23177, - [SMALL_STATE(2573)] = 23190, - [SMALL_STATE(2574)] = 23199, - [SMALL_STATE(2575)] = 23212, - [SMALL_STATE(2576)] = 23225, - [SMALL_STATE(2577)] = 23238, - [SMALL_STATE(2578)] = 23251, - [SMALL_STATE(2579)] = 23264, - [SMALL_STATE(2580)] = 23277, - [SMALL_STATE(2581)] = 23290, - [SMALL_STATE(2582)] = 23303, - [SMALL_STATE(2583)] = 23316, - [SMALL_STATE(2584)] = 23329, - [SMALL_STATE(2585)] = 23342, - [SMALL_STATE(2586)] = 23355, - [SMALL_STATE(2587)] = 23364, - [SMALL_STATE(2588)] = 23377, - [SMALL_STATE(2589)] = 23390, - [SMALL_STATE(2590)] = 23403, - [SMALL_STATE(2591)] = 23416, - [SMALL_STATE(2592)] = 23429, - [SMALL_STATE(2593)] = 23442, - [SMALL_STATE(2594)] = 23453, - [SMALL_STATE(2595)] = 23466, - [SMALL_STATE(2596)] = 23479, - [SMALL_STATE(2597)] = 23492, - [SMALL_STATE(2598)] = 23505, - [SMALL_STATE(2599)] = 23514, - [SMALL_STATE(2600)] = 23527, - [SMALL_STATE(2601)] = 23536, - [SMALL_STATE(2602)] = 23549, - [SMALL_STATE(2603)] = 23562, - [SMALL_STATE(2604)] = 23575, - [SMALL_STATE(2605)] = 23588, - [SMALL_STATE(2606)] = 23601, - [SMALL_STATE(2607)] = 23614, - [SMALL_STATE(2608)] = 23627, - [SMALL_STATE(2609)] = 23640, - [SMALL_STATE(2610)] = 23653, - [SMALL_STATE(2611)] = 23666, - [SMALL_STATE(2612)] = 23679, - [SMALL_STATE(2613)] = 23692, - [SMALL_STATE(2614)] = 23705, - [SMALL_STATE(2615)] = 23718, - [SMALL_STATE(2616)] = 23728, - [SMALL_STATE(2617)] = 23738, - [SMALL_STATE(2618)] = 23748, - [SMALL_STATE(2619)] = 23758, - [SMALL_STATE(2620)] = 23768, - [SMALL_STATE(2621)] = 23778, - [SMALL_STATE(2622)] = 23788, - [SMALL_STATE(2623)] = 23798, - [SMALL_STATE(2624)] = 23808, - [SMALL_STATE(2625)] = 23818, - [SMALL_STATE(2626)] = 23828, - [SMALL_STATE(2627)] = 23838, - [SMALL_STATE(2628)] = 23848, - [SMALL_STATE(2629)] = 23858, - [SMALL_STATE(2630)] = 23868, - [SMALL_STATE(2631)] = 23878, - [SMALL_STATE(2632)] = 23888, - [SMALL_STATE(2633)] = 23898, - [SMALL_STATE(2634)] = 23906, - [SMALL_STATE(2635)] = 23916, - [SMALL_STATE(2636)] = 23926, - [SMALL_STATE(2637)] = 23936, - [SMALL_STATE(2638)] = 23946, - [SMALL_STATE(2639)] = 23954, - [SMALL_STATE(2640)] = 23964, - [SMALL_STATE(2641)] = 23974, - [SMALL_STATE(2642)] = 23984, - [SMALL_STATE(2643)] = 23994, - [SMALL_STATE(2644)] = 24004, - [SMALL_STATE(2645)] = 24014, - [SMALL_STATE(2646)] = 24024, - [SMALL_STATE(2647)] = 24034, - [SMALL_STATE(2648)] = 24044, - [SMALL_STATE(2649)] = 24054, - [SMALL_STATE(2650)] = 24064, - [SMALL_STATE(2651)] = 24074, - [SMALL_STATE(2652)] = 24082, - [SMALL_STATE(2653)] = 24092, - [SMALL_STATE(2654)] = 24102, - [SMALL_STATE(2655)] = 24112, - [SMALL_STATE(2656)] = 24122, - [SMALL_STATE(2657)] = 24132, - [SMALL_STATE(2658)] = 24142, - [SMALL_STATE(2659)] = 24152, - [SMALL_STATE(2660)] = 24162, - [SMALL_STATE(2661)] = 24172, - [SMALL_STATE(2662)] = 24182, - [SMALL_STATE(2663)] = 24192, - [SMALL_STATE(2664)] = 24202, - [SMALL_STATE(2665)] = 24212, - [SMALL_STATE(2666)] = 24222, - [SMALL_STATE(2667)] = 24230, - [SMALL_STATE(2668)] = 24240, - [SMALL_STATE(2669)] = 24250, - [SMALL_STATE(2670)] = 24260, - [SMALL_STATE(2671)] = 24270, - [SMALL_STATE(2672)] = 24280, - [SMALL_STATE(2673)] = 24290, - [SMALL_STATE(2674)] = 24300, - [SMALL_STATE(2675)] = 24310, - [SMALL_STATE(2676)] = 24320, - [SMALL_STATE(2677)] = 24330, - [SMALL_STATE(2678)] = 24340, - [SMALL_STATE(2679)] = 24350, - [SMALL_STATE(2680)] = 24360, - [SMALL_STATE(2681)] = 24370, - [SMALL_STATE(2682)] = 24380, - [SMALL_STATE(2683)] = 24390, - [SMALL_STATE(2684)] = 24400, - [SMALL_STATE(2685)] = 24410, - [SMALL_STATE(2686)] = 24420, - [SMALL_STATE(2687)] = 24430, - [SMALL_STATE(2688)] = 24440, - [SMALL_STATE(2689)] = 24450, - [SMALL_STATE(2690)] = 24460, - [SMALL_STATE(2691)] = 24470, - [SMALL_STATE(2692)] = 24480, - [SMALL_STATE(2693)] = 24490, - [SMALL_STATE(2694)] = 24500, - [SMALL_STATE(2695)] = 24510, - [SMALL_STATE(2696)] = 24520, - [SMALL_STATE(2697)] = 24530, - [SMALL_STATE(2698)] = 24540, - [SMALL_STATE(2699)] = 24550, - [SMALL_STATE(2700)] = 24560, - [SMALL_STATE(2701)] = 24570, - [SMALL_STATE(2702)] = 24580, - [SMALL_STATE(2703)] = 24590, - [SMALL_STATE(2704)] = 24600, - [SMALL_STATE(2705)] = 24610, - [SMALL_STATE(2706)] = 24620, - [SMALL_STATE(2707)] = 24627, - [SMALL_STATE(2708)] = 24634, - [SMALL_STATE(2709)] = 24641, - [SMALL_STATE(2710)] = 24648, - [SMALL_STATE(2711)] = 24655, - [SMALL_STATE(2712)] = 24662, - [SMALL_STATE(2713)] = 24669, - [SMALL_STATE(2714)] = 24674, - [SMALL_STATE(2715)] = 24681, - [SMALL_STATE(2716)] = 24688, - [SMALL_STATE(2717)] = 24695, - [SMALL_STATE(2718)] = 24700, - [SMALL_STATE(2719)] = 24707, - [SMALL_STATE(2720)] = 24714, - [SMALL_STATE(2721)] = 24721, - [SMALL_STATE(2722)] = 24728, - [SMALL_STATE(2723)] = 24735, - [SMALL_STATE(2724)] = 24742, - [SMALL_STATE(2725)] = 24749, - [SMALL_STATE(2726)] = 24756, - [SMALL_STATE(2727)] = 24763, - [SMALL_STATE(2728)] = 24770, - [SMALL_STATE(2729)] = 24777, - [SMALL_STATE(2730)] = 24784, - [SMALL_STATE(2731)] = 24791, - [SMALL_STATE(2732)] = 24798, - [SMALL_STATE(2733)] = 24805, - [SMALL_STATE(2734)] = 24812, - [SMALL_STATE(2735)] = 24819, - [SMALL_STATE(2736)] = 24826, - [SMALL_STATE(2737)] = 24833, - [SMALL_STATE(2738)] = 24840, - [SMALL_STATE(2739)] = 24847, - [SMALL_STATE(2740)] = 24854, - [SMALL_STATE(2741)] = 24861, - [SMALL_STATE(2742)] = 24868, - [SMALL_STATE(2743)] = 24875, - [SMALL_STATE(2744)] = 24882, - [SMALL_STATE(2745)] = 24889, - [SMALL_STATE(2746)] = 24893, - [SMALL_STATE(2747)] = 24897, - [SMALL_STATE(2748)] = 24901, - [SMALL_STATE(2749)] = 24905, - [SMALL_STATE(2750)] = 24909, - [SMALL_STATE(2751)] = 24913, - [SMALL_STATE(2752)] = 24917, - [SMALL_STATE(2753)] = 24921, - [SMALL_STATE(2754)] = 24925, - [SMALL_STATE(2755)] = 24929, - [SMALL_STATE(2756)] = 24933, - [SMALL_STATE(2757)] = 24937, - [SMALL_STATE(2758)] = 24941, - [SMALL_STATE(2759)] = 24945, - [SMALL_STATE(2760)] = 24949, - [SMALL_STATE(2761)] = 24953, - [SMALL_STATE(2762)] = 24957, - [SMALL_STATE(2763)] = 24961, - [SMALL_STATE(2764)] = 24965, - [SMALL_STATE(2765)] = 24969, - [SMALL_STATE(2766)] = 24973, - [SMALL_STATE(2767)] = 24977, - [SMALL_STATE(2768)] = 24981, - [SMALL_STATE(2769)] = 24985, - [SMALL_STATE(2770)] = 24989, - [SMALL_STATE(2771)] = 24993, - [SMALL_STATE(2772)] = 24997, - [SMALL_STATE(2773)] = 25001, - [SMALL_STATE(2774)] = 25005, - [SMALL_STATE(2775)] = 25009, - [SMALL_STATE(2776)] = 25013, - [SMALL_STATE(2777)] = 25017, - [SMALL_STATE(2778)] = 25021, - [SMALL_STATE(2779)] = 25025, - [SMALL_STATE(2780)] = 25029, - [SMALL_STATE(2781)] = 25033, - [SMALL_STATE(2782)] = 25037, - [SMALL_STATE(2783)] = 25041, - [SMALL_STATE(2784)] = 25045, - [SMALL_STATE(2785)] = 25049, - [SMALL_STATE(2786)] = 25053, - [SMALL_STATE(2787)] = 25057, - [SMALL_STATE(2788)] = 25061, - [SMALL_STATE(2789)] = 25065, - [SMALL_STATE(2790)] = 25069, - [SMALL_STATE(2791)] = 25073, - [SMALL_STATE(2792)] = 25077, - [SMALL_STATE(2793)] = 25081, - [SMALL_STATE(2794)] = 25085, - [SMALL_STATE(2795)] = 25089, - [SMALL_STATE(2796)] = 25093, - [SMALL_STATE(2797)] = 25097, - [SMALL_STATE(2798)] = 25101, - [SMALL_STATE(2799)] = 25105, - [SMALL_STATE(2800)] = 25109, - [SMALL_STATE(2801)] = 25113, - [SMALL_STATE(2802)] = 25117, - [SMALL_STATE(2803)] = 25121, - [SMALL_STATE(2804)] = 25125, - [SMALL_STATE(2805)] = 25129, - [SMALL_STATE(2806)] = 25133, - [SMALL_STATE(2807)] = 25137, - [SMALL_STATE(2808)] = 25141, - [SMALL_STATE(2809)] = 25145, - [SMALL_STATE(2810)] = 25149, - [SMALL_STATE(2811)] = 25153, - [SMALL_STATE(2812)] = 25157, - [SMALL_STATE(2813)] = 25161, - [SMALL_STATE(2814)] = 25165, - [SMALL_STATE(2815)] = 25169, - [SMALL_STATE(2816)] = 25173, - [SMALL_STATE(2817)] = 25177, - [SMALL_STATE(2818)] = 25181, - [SMALL_STATE(2819)] = 25185, - [SMALL_STATE(2820)] = 25189, - [SMALL_STATE(2821)] = 25193, - [SMALL_STATE(2822)] = 25197, - [SMALL_STATE(2823)] = 25201, - [SMALL_STATE(2824)] = 25205, - [SMALL_STATE(2825)] = 25209, - [SMALL_STATE(2826)] = 25213, - [SMALL_STATE(2827)] = 25217, - [SMALL_STATE(2828)] = 25221, - [SMALL_STATE(2829)] = 25225, - [SMALL_STATE(2830)] = 25229, - [SMALL_STATE(2831)] = 25233, - [SMALL_STATE(2832)] = 25237, - [SMALL_STATE(2833)] = 25241, - [SMALL_STATE(2834)] = 25245, - [SMALL_STATE(2835)] = 25249, - [SMALL_STATE(2836)] = 25253, - [SMALL_STATE(2837)] = 25257, - [SMALL_STATE(2838)] = 25261, - [SMALL_STATE(2839)] = 25265, - [SMALL_STATE(2840)] = 25269, - [SMALL_STATE(2841)] = 25273, - [SMALL_STATE(2842)] = 25277, - [SMALL_STATE(2843)] = 25281, - [SMALL_STATE(2844)] = 25285, - [SMALL_STATE(2845)] = 25289, - [SMALL_STATE(2846)] = 25293, - [SMALL_STATE(2847)] = 25297, - [SMALL_STATE(2848)] = 25301, - [SMALL_STATE(2849)] = 25305, - [SMALL_STATE(2850)] = 25309, - [SMALL_STATE(2851)] = 25313, - [SMALL_STATE(2852)] = 25317, - [SMALL_STATE(2853)] = 25321, - [SMALL_STATE(2854)] = 25325, - [SMALL_STATE(2855)] = 25329, - [SMALL_STATE(2856)] = 25333, - [SMALL_STATE(2857)] = 25337, - [SMALL_STATE(2858)] = 25341, - [SMALL_STATE(2859)] = 25345, - [SMALL_STATE(2860)] = 25349, - [SMALL_STATE(2861)] = 25353, - [SMALL_STATE(2862)] = 25357, - [SMALL_STATE(2863)] = 25361, - [SMALL_STATE(2864)] = 25365, - [SMALL_STATE(2865)] = 25369, - [SMALL_STATE(2866)] = 25373, - [SMALL_STATE(2867)] = 25377, - [SMALL_STATE(2868)] = 25381, - [SMALL_STATE(2869)] = 25385, - [SMALL_STATE(2870)] = 25389, - [SMALL_STATE(2871)] = 25393, - [SMALL_STATE(2872)] = 25397, - [SMALL_STATE(2873)] = 25401, - [SMALL_STATE(2874)] = 25405, - [SMALL_STATE(2875)] = 25409, - [SMALL_STATE(2876)] = 25413, - [SMALL_STATE(2877)] = 25417, - [SMALL_STATE(2878)] = 25421, - [SMALL_STATE(2879)] = 25425, - [SMALL_STATE(2880)] = 25429, - [SMALL_STATE(2881)] = 25433, - [SMALL_STATE(2882)] = 25437, - [SMALL_STATE(2883)] = 25441, - [SMALL_STATE(2884)] = 25445, - [SMALL_STATE(2885)] = 25449, - [SMALL_STATE(2886)] = 25453, - [SMALL_STATE(2887)] = 25457, - [SMALL_STATE(2888)] = 25461, - [SMALL_STATE(2889)] = 25465, - [SMALL_STATE(2890)] = 25469, - [SMALL_STATE(2891)] = 25473, - [SMALL_STATE(2892)] = 25477, - [SMALL_STATE(2893)] = 25481, - [SMALL_STATE(2894)] = 25485, - [SMALL_STATE(2895)] = 25489, - [SMALL_STATE(2896)] = 25493, - [SMALL_STATE(2897)] = 25497, - [SMALL_STATE(2898)] = 25501, + [SMALL_STATE(1943)] = 9746, + [SMALL_STATE(1944)] = 9784, + [SMALL_STATE(1945)] = 9822, + [SMALL_STATE(1946)] = 9860, + [SMALL_STATE(1947)] = 9898, + [SMALL_STATE(1948)] = 9936, + [SMALL_STATE(1949)] = 9974, + [SMALL_STATE(1950)] = 10012, + [SMALL_STATE(1951)] = 10050, + [SMALL_STATE(1952)] = 10088, + [SMALL_STATE(1953)] = 10126, + [SMALL_STATE(1954)] = 10164, + [SMALL_STATE(1955)] = 10202, + [SMALL_STATE(1956)] = 10240, + [SMALL_STATE(1957)] = 10278, + [SMALL_STATE(1958)] = 10316, + [SMALL_STATE(1959)] = 10354, + [SMALL_STATE(1960)] = 10392, + [SMALL_STATE(1961)] = 10430, + [SMALL_STATE(1962)] = 10468, + [SMALL_STATE(1963)] = 10506, + [SMALL_STATE(1964)] = 10544, + [SMALL_STATE(1965)] = 10582, + [SMALL_STATE(1966)] = 10620, + [SMALL_STATE(1967)] = 10658, + [SMALL_STATE(1968)] = 10696, + [SMALL_STATE(1969)] = 10734, + [SMALL_STATE(1970)] = 10772, + [SMALL_STATE(1971)] = 10810, + [SMALL_STATE(1972)] = 10848, + [SMALL_STATE(1973)] = 10886, + [SMALL_STATE(1974)] = 10924, + [SMALL_STATE(1975)] = 10962, + [SMALL_STATE(1976)] = 11000, + [SMALL_STATE(1977)] = 11038, + [SMALL_STATE(1978)] = 11076, + [SMALL_STATE(1979)] = 11114, + [SMALL_STATE(1980)] = 11152, + [SMALL_STATE(1981)] = 11190, + [SMALL_STATE(1982)] = 11228, + [SMALL_STATE(1983)] = 11266, + [SMALL_STATE(1984)] = 11304, + [SMALL_STATE(1985)] = 11342, + [SMALL_STATE(1986)] = 11380, + [SMALL_STATE(1987)] = 11418, + [SMALL_STATE(1988)] = 11456, + [SMALL_STATE(1989)] = 11494, + [SMALL_STATE(1990)] = 11532, + [SMALL_STATE(1991)] = 11570, + [SMALL_STATE(1992)] = 11599, + [SMALL_STATE(1993)] = 11628, + [SMALL_STATE(1994)] = 11647, + [SMALL_STATE(1995)] = 11666, + [SMALL_STATE(1996)] = 11696, + [SMALL_STATE(1997)] = 11726, + [SMALL_STATE(1998)] = 11756, + [SMALL_STATE(1999)] = 11786, + [SMALL_STATE(2000)] = 11816, + [SMALL_STATE(2001)] = 11846, + [SMALL_STATE(2002)] = 11880, + [SMALL_STATE(2003)] = 11910, + [SMALL_STATE(2004)] = 11940, + [SMALL_STATE(2005)] = 11970, + [SMALL_STATE(2006)] = 12000, + [SMALL_STATE(2007)] = 12030, + [SMALL_STATE(2008)] = 12046, + [SMALL_STATE(2009)] = 12080, + [SMALL_STATE(2010)] = 12110, + [SMALL_STATE(2011)] = 12140, + [SMALL_STATE(2012)] = 12170, + [SMALL_STATE(2013)] = 12200, + [SMALL_STATE(2014)] = 12230, + [SMALL_STATE(2015)] = 12260, + [SMALL_STATE(2016)] = 12290, + [SMALL_STATE(2017)] = 12320, + [SMALL_STATE(2018)] = 12350, + [SMALL_STATE(2019)] = 12380, + [SMALL_STATE(2020)] = 12414, + [SMALL_STATE(2021)] = 12448, + [SMALL_STATE(2022)] = 12478, + [SMALL_STATE(2023)] = 12512, + [SMALL_STATE(2024)] = 12542, + [SMALL_STATE(2025)] = 12572, + [SMALL_STATE(2026)] = 12602, + [SMALL_STATE(2027)] = 12636, + [SMALL_STATE(2028)] = 12666, + [SMALL_STATE(2029)] = 12696, + [SMALL_STATE(2030)] = 12726, + [SMALL_STATE(2031)] = 12756, + [SMALL_STATE(2032)] = 12786, + [SMALL_STATE(2033)] = 12816, + [SMALL_STATE(2034)] = 12846, + [SMALL_STATE(2035)] = 12876, + [SMALL_STATE(2036)] = 12910, + [SMALL_STATE(2037)] = 12940, + [SMALL_STATE(2038)] = 12974, + [SMALL_STATE(2039)] = 13008, + [SMALL_STATE(2040)] = 13038, + [SMALL_STATE(2041)] = 13068, + [SMALL_STATE(2042)] = 13098, + [SMALL_STATE(2043)] = 13114, + [SMALL_STATE(2044)] = 13144, + [SMALL_STATE(2045)] = 13174, + [SMALL_STATE(2046)] = 13208, + [SMALL_STATE(2047)] = 13238, + [SMALL_STATE(2048)] = 13268, + [SMALL_STATE(2049)] = 13302, + [SMALL_STATE(2050)] = 13332, + [SMALL_STATE(2051)] = 13366, + [SMALL_STATE(2052)] = 13396, + [SMALL_STATE(2053)] = 13426, + [SMALL_STATE(2054)] = 13456, + [SMALL_STATE(2055)] = 13486, + [SMALL_STATE(2056)] = 13516, + [SMALL_STATE(2057)] = 13546, + [SMALL_STATE(2058)] = 13577, + [SMALL_STATE(2059)] = 13600, + [SMALL_STATE(2060)] = 13631, + [SMALL_STATE(2061)] = 13654, + [SMALL_STATE(2062)] = 13677, + [SMALL_STATE(2063)] = 13708, + [SMALL_STATE(2064)] = 13725, + [SMALL_STATE(2065)] = 13748, + [SMALL_STATE(2066)] = 13771, + [SMALL_STATE(2067)] = 13802, + [SMALL_STATE(2068)] = 13825, + [SMALL_STATE(2069)] = 13856, + [SMALL_STATE(2070)] = 13879, + [SMALL_STATE(2071)] = 13902, + [SMALL_STATE(2072)] = 13933, + [SMALL_STATE(2073)] = 13956, + [SMALL_STATE(2074)] = 13987, + [SMALL_STATE(2075)] = 14010, + [SMALL_STATE(2076)] = 14033, + [SMALL_STATE(2077)] = 14056, + [SMALL_STATE(2078)] = 14087, + [SMALL_STATE(2079)] = 14118, + [SMALL_STATE(2080)] = 14141, + [SMALL_STATE(2081)] = 14172, + [SMALL_STATE(2082)] = 14203, + [SMALL_STATE(2083)] = 14234, + [SMALL_STATE(2084)] = 14265, + [SMALL_STATE(2085)] = 14296, + [SMALL_STATE(2086)] = 14319, + [SMALL_STATE(2087)] = 14342, + [SMALL_STATE(2088)] = 14365, + [SMALL_STATE(2089)] = 14386, + [SMALL_STATE(2090)] = 14409, + [SMALL_STATE(2091)] = 14432, + [SMALL_STATE(2092)] = 14463, + [SMALL_STATE(2093)] = 14494, + [SMALL_STATE(2094)] = 14517, + [SMALL_STATE(2095)] = 14540, + [SMALL_STATE(2096)] = 14571, + [SMALL_STATE(2097)] = 14594, + [SMALL_STATE(2098)] = 14625, + [SMALL_STATE(2099)] = 14656, + [SMALL_STATE(2100)] = 14687, + [SMALL_STATE(2101)] = 14710, + [SMALL_STATE(2102)] = 14733, + [SMALL_STATE(2103)] = 14764, + [SMALL_STATE(2104)] = 14787, + [SMALL_STATE(2105)] = 14818, + [SMALL_STATE(2106)] = 14849, + [SMALL_STATE(2107)] = 14880, + [SMALL_STATE(2108)] = 14903, + [SMALL_STATE(2109)] = 14931, + [SMALL_STATE(2110)] = 14959, + [SMALL_STATE(2111)] = 14987, + [SMALL_STATE(2112)] = 15015, + [SMALL_STATE(2113)] = 15043, + [SMALL_STATE(2114)] = 15071, + [SMALL_STATE(2115)] = 15099, + [SMALL_STATE(2116)] = 15127, + [SMALL_STATE(2117)] = 15155, + [SMALL_STATE(2118)] = 15183, + [SMALL_STATE(2119)] = 15211, + [SMALL_STATE(2120)] = 15239, + [SMALL_STATE(2121)] = 15267, + [SMALL_STATE(2122)] = 15295, + [SMALL_STATE(2123)] = 15323, + [SMALL_STATE(2124)] = 15351, + [SMALL_STATE(2125)] = 15367, + [SMALL_STATE(2126)] = 15395, + [SMALL_STATE(2127)] = 15423, + [SMALL_STATE(2128)] = 15437, + [SMALL_STATE(2129)] = 15465, + [SMALL_STATE(2130)] = 15493, + [SMALL_STATE(2131)] = 15521, + [SMALL_STATE(2132)] = 15549, + [SMALL_STATE(2133)] = 15577, + [SMALL_STATE(2134)] = 15605, + [SMALL_STATE(2135)] = 15633, + [SMALL_STATE(2136)] = 15661, + [SMALL_STATE(2137)] = 15689, + [SMALL_STATE(2138)] = 15717, + [SMALL_STATE(2139)] = 15745, + [SMALL_STATE(2140)] = 15773, + [SMALL_STATE(2141)] = 15801, + [SMALL_STATE(2142)] = 15829, + [SMALL_STATE(2143)] = 15857, + [SMALL_STATE(2144)] = 15885, + [SMALL_STATE(2145)] = 15913, + [SMALL_STATE(2146)] = 15941, + [SMALL_STATE(2147)] = 15954, + [SMALL_STATE(2148)] = 15969, + [SMALL_STATE(2149)] = 15987, + [SMALL_STATE(2150)] = 16005, + [SMALL_STATE(2151)] = 16023, + [SMALL_STATE(2152)] = 16041, + [SMALL_STATE(2153)] = 16059, + [SMALL_STATE(2154)] = 16081, + [SMALL_STATE(2155)] = 16099, + [SMALL_STATE(2156)] = 16117, + [SMALL_STATE(2157)] = 16135, + [SMALL_STATE(2158)] = 16153, + [SMALL_STATE(2159)] = 16171, + [SMALL_STATE(2160)] = 16189, + [SMALL_STATE(2161)] = 16207, + [SMALL_STATE(2162)] = 16225, + [SMALL_STATE(2163)] = 16243, + [SMALL_STATE(2164)] = 16261, + [SMALL_STATE(2165)] = 16279, + [SMALL_STATE(2166)] = 16297, + [SMALL_STATE(2167)] = 16315, + [SMALL_STATE(2168)] = 16333, + [SMALL_STATE(2169)] = 16351, + [SMALL_STATE(2170)] = 16369, + [SMALL_STATE(2171)] = 16387, + [SMALL_STATE(2172)] = 16405, + [SMALL_STATE(2173)] = 16423, + [SMALL_STATE(2174)] = 16441, + [SMALL_STATE(2175)] = 16459, + [SMALL_STATE(2176)] = 16477, + [SMALL_STATE(2177)] = 16495, + [SMALL_STATE(2178)] = 16513, + [SMALL_STATE(2179)] = 16531, + [SMALL_STATE(2180)] = 16553, + [SMALL_STATE(2181)] = 16571, + [SMALL_STATE(2182)] = 16589, + [SMALL_STATE(2183)] = 16601, + [SMALL_STATE(2184)] = 16619, + [SMALL_STATE(2185)] = 16637, + [SMALL_STATE(2186)] = 16659, + [SMALL_STATE(2187)] = 16677, + [SMALL_STATE(2188)] = 16695, + [SMALL_STATE(2189)] = 16713, + [SMALL_STATE(2190)] = 16731, + [SMALL_STATE(2191)] = 16753, + [SMALL_STATE(2192)] = 16771, + [SMALL_STATE(2193)] = 16789, + [SMALL_STATE(2194)] = 16807, + [SMALL_STATE(2195)] = 16825, + [SMALL_STATE(2196)] = 16843, + [SMALL_STATE(2197)] = 16861, + [SMALL_STATE(2198)] = 16879, + [SMALL_STATE(2199)] = 16897, + [SMALL_STATE(2200)] = 16915, + [SMALL_STATE(2201)] = 16937, + [SMALL_STATE(2202)] = 16955, + [SMALL_STATE(2203)] = 16973, + [SMALL_STATE(2204)] = 16991, + [SMALL_STATE(2205)] = 17009, + [SMALL_STATE(2206)] = 17027, + [SMALL_STATE(2207)] = 17045, + [SMALL_STATE(2208)] = 17063, + [SMALL_STATE(2209)] = 17081, + [SMALL_STATE(2210)] = 17099, + [SMALL_STATE(2211)] = 17117, + [SMALL_STATE(2212)] = 17135, + [SMALL_STATE(2213)] = 17153, + [SMALL_STATE(2214)] = 17171, + [SMALL_STATE(2215)] = 17189, + [SMALL_STATE(2216)] = 17207, + [SMALL_STATE(2217)] = 17225, + [SMALL_STATE(2218)] = 17243, + [SMALL_STATE(2219)] = 17261, + [SMALL_STATE(2220)] = 17279, + [SMALL_STATE(2221)] = 17297, + [SMALL_STATE(2222)] = 17315, + [SMALL_STATE(2223)] = 17337, + [SMALL_STATE(2224)] = 17355, + [SMALL_STATE(2225)] = 17373, + [SMALL_STATE(2226)] = 17391, + [SMALL_STATE(2227)] = 17409, + [SMALL_STATE(2228)] = 17427, + [SMALL_STATE(2229)] = 17445, + [SMALL_STATE(2230)] = 17467, + [SMALL_STATE(2231)] = 17485, + [SMALL_STATE(2232)] = 17503, + [SMALL_STATE(2233)] = 17521, + [SMALL_STATE(2234)] = 17539, + [SMALL_STATE(2235)] = 17561, + [SMALL_STATE(2236)] = 17579, + [SMALL_STATE(2237)] = 17601, + [SMALL_STATE(2238)] = 17619, + [SMALL_STATE(2239)] = 17637, + [SMALL_STATE(2240)] = 17659, + [SMALL_STATE(2241)] = 17677, + [SMALL_STATE(2242)] = 17695, + [SMALL_STATE(2243)] = 17713, + [SMALL_STATE(2244)] = 17735, + [SMALL_STATE(2245)] = 17753, + [SMALL_STATE(2246)] = 17771, + [SMALL_STATE(2247)] = 17789, + [SMALL_STATE(2248)] = 17807, + [SMALL_STATE(2249)] = 17825, + [SMALL_STATE(2250)] = 17843, + [SMALL_STATE(2251)] = 17861, + [SMALL_STATE(2252)] = 17879, + [SMALL_STATE(2253)] = 17897, + [SMALL_STATE(2254)] = 17915, + [SMALL_STATE(2255)] = 17933, + [SMALL_STATE(2256)] = 17951, + [SMALL_STATE(2257)] = 17969, + [SMALL_STATE(2258)] = 17987, + [SMALL_STATE(2259)] = 18005, + [SMALL_STATE(2260)] = 18023, + [SMALL_STATE(2261)] = 18041, + [SMALL_STATE(2262)] = 18059, + [SMALL_STATE(2263)] = 18077, + [SMALL_STATE(2264)] = 18095, + [SMALL_STATE(2265)] = 18117, + [SMALL_STATE(2266)] = 18135, + [SMALL_STATE(2267)] = 18153, + [SMALL_STATE(2268)] = 18175, + [SMALL_STATE(2269)] = 18197, + [SMALL_STATE(2270)] = 18215, + [SMALL_STATE(2271)] = 18233, + [SMALL_STATE(2272)] = 18255, + [SMALL_STATE(2273)] = 18273, + [SMALL_STATE(2274)] = 18291, + [SMALL_STATE(2275)] = 18309, + [SMALL_STATE(2276)] = 18327, + [SMALL_STATE(2277)] = 18345, + [SMALL_STATE(2278)] = 18363, + [SMALL_STATE(2279)] = 18381, + [SMALL_STATE(2280)] = 18403, + [SMALL_STATE(2281)] = 18421, + [SMALL_STATE(2282)] = 18439, + [SMALL_STATE(2283)] = 18457, + [SMALL_STATE(2284)] = 18479, + [SMALL_STATE(2285)] = 18497, + [SMALL_STATE(2286)] = 18515, + [SMALL_STATE(2287)] = 18537, + [SMALL_STATE(2288)] = 18555, + [SMALL_STATE(2289)] = 18573, + [SMALL_STATE(2290)] = 18591, + [SMALL_STATE(2291)] = 18609, + [SMALL_STATE(2292)] = 18627, + [SMALL_STATE(2293)] = 18645, + [SMALL_STATE(2294)] = 18663, + [SMALL_STATE(2295)] = 18681, + [SMALL_STATE(2296)] = 18699, + [SMALL_STATE(2297)] = 18717, + [SMALL_STATE(2298)] = 18735, + [SMALL_STATE(2299)] = 18753, + [SMALL_STATE(2300)] = 18771, + [SMALL_STATE(2301)] = 18789, + [SMALL_STATE(2302)] = 18807, + [SMALL_STATE(2303)] = 18825, + [SMALL_STATE(2304)] = 18843, + [SMALL_STATE(2305)] = 18861, + [SMALL_STATE(2306)] = 18879, + [SMALL_STATE(2307)] = 18897, + [SMALL_STATE(2308)] = 18915, + [SMALL_STATE(2309)] = 18933, + [SMALL_STATE(2310)] = 18951, + [SMALL_STATE(2311)] = 18969, + [SMALL_STATE(2312)] = 18991, + [SMALL_STATE(2313)] = 19009, + [SMALL_STATE(2314)] = 19027, + [SMALL_STATE(2315)] = 19045, + [SMALL_STATE(2316)] = 19063, + [SMALL_STATE(2317)] = 19081, + [SMALL_STATE(2318)] = 19099, + [SMALL_STATE(2319)] = 19117, + [SMALL_STATE(2320)] = 19135, + [SMALL_STATE(2321)] = 19153, + [SMALL_STATE(2322)] = 19171, + [SMALL_STATE(2323)] = 19189, + [SMALL_STATE(2324)] = 19207, + [SMALL_STATE(2325)] = 19225, + [SMALL_STATE(2326)] = 19247, + [SMALL_STATE(2327)] = 19265, + [SMALL_STATE(2328)] = 19283, + [SMALL_STATE(2329)] = 19301, + [SMALL_STATE(2330)] = 19323, + [SMALL_STATE(2331)] = 19345, + [SMALL_STATE(2332)] = 19363, + [SMALL_STATE(2333)] = 19381, + [SMALL_STATE(2334)] = 19399, + [SMALL_STATE(2335)] = 19417, + [SMALL_STATE(2336)] = 19435, + [SMALL_STATE(2337)] = 19453, + [SMALL_STATE(2338)] = 19471, + [SMALL_STATE(2339)] = 19489, + [SMALL_STATE(2340)] = 19511, + [SMALL_STATE(2341)] = 19529, + [SMALL_STATE(2342)] = 19547, + [SMALL_STATE(2343)] = 19565, + [SMALL_STATE(2344)] = 19583, + [SMALL_STATE(2345)] = 19601, + [SMALL_STATE(2346)] = 19619, + [SMALL_STATE(2347)] = 19637, + [SMALL_STATE(2348)] = 19659, + [SMALL_STATE(2349)] = 19677, + [SMALL_STATE(2350)] = 19695, + [SMALL_STATE(2351)] = 19713, + [SMALL_STATE(2352)] = 19731, + [SMALL_STATE(2353)] = 19749, + [SMALL_STATE(2354)] = 19767, + [SMALL_STATE(2355)] = 19785, + [SMALL_STATE(2356)] = 19803, + [SMALL_STATE(2357)] = 19821, + [SMALL_STATE(2358)] = 19839, + [SMALL_STATE(2359)] = 19857, + [SMALL_STATE(2360)] = 19875, + [SMALL_STATE(2361)] = 19893, + [SMALL_STATE(2362)] = 19915, + [SMALL_STATE(2363)] = 19933, + [SMALL_STATE(2364)] = 19951, + [SMALL_STATE(2365)] = 19969, + [SMALL_STATE(2366)] = 19987, + [SMALL_STATE(2367)] = 20005, + [SMALL_STATE(2368)] = 20023, + [SMALL_STATE(2369)] = 20041, + [SMALL_STATE(2370)] = 20059, + [SMALL_STATE(2371)] = 20077, + [SMALL_STATE(2372)] = 20095, + [SMALL_STATE(2373)] = 20113, + [SMALL_STATE(2374)] = 20131, + [SMALL_STATE(2375)] = 20149, + [SMALL_STATE(2376)] = 20167, + [SMALL_STATE(2377)] = 20189, + [SMALL_STATE(2378)] = 20211, + [SMALL_STATE(2379)] = 20229, + [SMALL_STATE(2380)] = 20247, + [SMALL_STATE(2381)] = 20269, + [SMALL_STATE(2382)] = 20291, + [SMALL_STATE(2383)] = 20309, + [SMALL_STATE(2384)] = 20327, + [SMALL_STATE(2385)] = 20345, + [SMALL_STATE(2386)] = 20363, + [SMALL_STATE(2387)] = 20381, + [SMALL_STATE(2388)] = 20403, + [SMALL_STATE(2389)] = 20421, + [SMALL_STATE(2390)] = 20439, + [SMALL_STATE(2391)] = 20457, + [SMALL_STATE(2392)] = 20475, + [SMALL_STATE(2393)] = 20493, + [SMALL_STATE(2394)] = 20511, + [SMALL_STATE(2395)] = 20529, + [SMALL_STATE(2396)] = 20547, + [SMALL_STATE(2397)] = 20565, + [SMALL_STATE(2398)] = 20583, + [SMALL_STATE(2399)] = 20601, + [SMALL_STATE(2400)] = 20619, + [SMALL_STATE(2401)] = 20637, + [SMALL_STATE(2402)] = 20655, + [SMALL_STATE(2403)] = 20673, + [SMALL_STATE(2404)] = 20691, + [SMALL_STATE(2405)] = 20713, + [SMALL_STATE(2406)] = 20731, + [SMALL_STATE(2407)] = 20749, + [SMALL_STATE(2408)] = 20767, + [SMALL_STATE(2409)] = 20785, + [SMALL_STATE(2410)] = 20797, + [SMALL_STATE(2411)] = 20819, + [SMALL_STATE(2412)] = 20831, + [SMALL_STATE(2413)] = 20849, + [SMALL_STATE(2414)] = 20867, + [SMALL_STATE(2415)] = 20889, + [SMALL_STATE(2416)] = 20911, + [SMALL_STATE(2417)] = 20933, + [SMALL_STATE(2418)] = 20951, + [SMALL_STATE(2419)] = 20969, + [SMALL_STATE(2420)] = 20987, + [SMALL_STATE(2421)] = 21005, + [SMALL_STATE(2422)] = 21023, + [SMALL_STATE(2423)] = 21045, + [SMALL_STATE(2424)] = 21063, + [SMALL_STATE(2425)] = 21081, + [SMALL_STATE(2426)] = 21099, + [SMALL_STATE(2427)] = 21117, + [SMALL_STATE(2428)] = 21132, + [SMALL_STATE(2429)] = 21145, + [SMALL_STATE(2430)] = 21161, + [SMALL_STATE(2431)] = 21177, + [SMALL_STATE(2432)] = 21193, + [SMALL_STATE(2433)] = 21209, + [SMALL_STATE(2434)] = 21223, + [SMALL_STATE(2435)] = 21239, + [SMALL_STATE(2436)] = 21255, + [SMALL_STATE(2437)] = 21271, + [SMALL_STATE(2438)] = 21287, + [SMALL_STATE(2439)] = 21303, + [SMALL_STATE(2440)] = 21319, + [SMALL_STATE(2441)] = 21335, + [SMALL_STATE(2442)] = 21351, + [SMALL_STATE(2443)] = 21367, + [SMALL_STATE(2444)] = 21383, + [SMALL_STATE(2445)] = 21399, + [SMALL_STATE(2446)] = 21415, + [SMALL_STATE(2447)] = 21431, + [SMALL_STATE(2448)] = 21447, + [SMALL_STATE(2449)] = 21463, + [SMALL_STATE(2450)] = 21479, + [SMALL_STATE(2451)] = 21495, + [SMALL_STATE(2452)] = 21511, + [SMALL_STATE(2453)] = 21527, + [SMALL_STATE(2454)] = 21543, + [SMALL_STATE(2455)] = 21559, + [SMALL_STATE(2456)] = 21575, + [SMALL_STATE(2457)] = 21587, + [SMALL_STATE(2458)] = 21603, + [SMALL_STATE(2459)] = 21619, + [SMALL_STATE(2460)] = 21629, + [SMALL_STATE(2461)] = 21645, + [SMALL_STATE(2462)] = 21661, + [SMALL_STATE(2463)] = 21675, + [SMALL_STATE(2464)] = 21691, + [SMALL_STATE(2465)] = 21707, + [SMALL_STATE(2466)] = 21723, + [SMALL_STATE(2467)] = 21739, + [SMALL_STATE(2468)] = 21755, + [SMALL_STATE(2469)] = 21771, + [SMALL_STATE(2470)] = 21787, + [SMALL_STATE(2471)] = 21803, + [SMALL_STATE(2472)] = 21819, + [SMALL_STATE(2473)] = 21835, + [SMALL_STATE(2474)] = 21849, + [SMALL_STATE(2475)] = 21865, + [SMALL_STATE(2476)] = 21881, + [SMALL_STATE(2477)] = 21897, + [SMALL_STATE(2478)] = 21913, + [SMALL_STATE(2479)] = 21929, + [SMALL_STATE(2480)] = 21943, + [SMALL_STATE(2481)] = 21959, + [SMALL_STATE(2482)] = 21975, + [SMALL_STATE(2483)] = 21991, + [SMALL_STATE(2484)] = 22007, + [SMALL_STATE(2485)] = 22023, + [SMALL_STATE(2486)] = 22039, + [SMALL_STATE(2487)] = 22053, + [SMALL_STATE(2488)] = 22069, + [SMALL_STATE(2489)] = 22085, + [SMALL_STATE(2490)] = 22101, + [SMALL_STATE(2491)] = 22117, + [SMALL_STATE(2492)] = 22133, + [SMALL_STATE(2493)] = 22147, + [SMALL_STATE(2494)] = 22163, + [SMALL_STATE(2495)] = 22179, + [SMALL_STATE(2496)] = 22195, + [SMALL_STATE(2497)] = 22211, + [SMALL_STATE(2498)] = 22227, + [SMALL_STATE(2499)] = 22241, + [SMALL_STATE(2500)] = 22257, + [SMALL_STATE(2501)] = 22273, + [SMALL_STATE(2502)] = 22289, + [SMALL_STATE(2503)] = 22305, + [SMALL_STATE(2504)] = 22321, + [SMALL_STATE(2505)] = 22337, + [SMALL_STATE(2506)] = 22353, + [SMALL_STATE(2507)] = 22367, + [SMALL_STATE(2508)] = 22383, + [SMALL_STATE(2509)] = 22399, + [SMALL_STATE(2510)] = 22415, + [SMALL_STATE(2511)] = 22431, + [SMALL_STATE(2512)] = 22447, + [SMALL_STATE(2513)] = 22463, + [SMALL_STATE(2514)] = 22477, + [SMALL_STATE(2515)] = 22493, + [SMALL_STATE(2516)] = 22509, + [SMALL_STATE(2517)] = 22525, + [SMALL_STATE(2518)] = 22541, + [SMALL_STATE(2519)] = 22557, + [SMALL_STATE(2520)] = 22571, + [SMALL_STATE(2521)] = 22587, + [SMALL_STATE(2522)] = 22603, + [SMALL_STATE(2523)] = 22619, + [SMALL_STATE(2524)] = 22635, + [SMALL_STATE(2525)] = 22651, + [SMALL_STATE(2526)] = 22665, + [SMALL_STATE(2527)] = 22681, + [SMALL_STATE(2528)] = 22697, + [SMALL_STATE(2529)] = 22713, + [SMALL_STATE(2530)] = 22729, + [SMALL_STATE(2531)] = 22745, + [SMALL_STATE(2532)] = 22759, + [SMALL_STATE(2533)] = 22775, + [SMALL_STATE(2534)] = 22791, + [SMALL_STATE(2535)] = 22807, + [SMALL_STATE(2536)] = 22823, + [SMALL_STATE(2537)] = 22839, + [SMALL_STATE(2538)] = 22855, + [SMALL_STATE(2539)] = 22869, + [SMALL_STATE(2540)] = 22885, + [SMALL_STATE(2541)] = 22901, + [SMALL_STATE(2542)] = 22917, + [SMALL_STATE(2543)] = 22933, + [SMALL_STATE(2544)] = 22949, + [SMALL_STATE(2545)] = 22965, + [SMALL_STATE(2546)] = 22974, + [SMALL_STATE(2547)] = 22987, + [SMALL_STATE(2548)] = 22996, + [SMALL_STATE(2549)] = 23009, + [SMALL_STATE(2550)] = 23022, + [SMALL_STATE(2551)] = 23035, + [SMALL_STATE(2552)] = 23048, + [SMALL_STATE(2553)] = 23061, + [SMALL_STATE(2554)] = 23074, + [SMALL_STATE(2555)] = 23087, + [SMALL_STATE(2556)] = 23100, + [SMALL_STATE(2557)] = 23113, + [SMALL_STATE(2558)] = 23126, + [SMALL_STATE(2559)] = 23139, + [SMALL_STATE(2560)] = 23152, + [SMALL_STATE(2561)] = 23165, + [SMALL_STATE(2562)] = 23178, + [SMALL_STATE(2563)] = 23191, + [SMALL_STATE(2564)] = 23204, + [SMALL_STATE(2565)] = 23217, + [SMALL_STATE(2566)] = 23230, + [SMALL_STATE(2567)] = 23239, + [SMALL_STATE(2568)] = 23248, + [SMALL_STATE(2569)] = 23257, + [SMALL_STATE(2570)] = 23268, + [SMALL_STATE(2571)] = 23281, + [SMALL_STATE(2572)] = 23294, + [SMALL_STATE(2573)] = 23307, + [SMALL_STATE(2574)] = 23320, + [SMALL_STATE(2575)] = 23333, + [SMALL_STATE(2576)] = 23342, + [SMALL_STATE(2577)] = 23355, + [SMALL_STATE(2578)] = 23368, + [SMALL_STATE(2579)] = 23381, + [SMALL_STATE(2580)] = 23394, + [SMALL_STATE(2581)] = 23407, + [SMALL_STATE(2582)] = 23416, + [SMALL_STATE(2583)] = 23429, + [SMALL_STATE(2584)] = 23442, + [SMALL_STATE(2585)] = 23455, + [SMALL_STATE(2586)] = 23468, + [SMALL_STATE(2587)] = 23481, + [SMALL_STATE(2588)] = 23494, + [SMALL_STATE(2589)] = 23507, + [SMALL_STATE(2590)] = 23520, + [SMALL_STATE(2591)] = 23533, + [SMALL_STATE(2592)] = 23546, + [SMALL_STATE(2593)] = 23559, + [SMALL_STATE(2594)] = 23572, + [SMALL_STATE(2595)] = 23585, + [SMALL_STATE(2596)] = 23598, + [SMALL_STATE(2597)] = 23611, + [SMALL_STATE(2598)] = 23624, + [SMALL_STATE(2599)] = 23637, + [SMALL_STATE(2600)] = 23646, + [SMALL_STATE(2601)] = 23655, + [SMALL_STATE(2602)] = 23664, + [SMALL_STATE(2603)] = 23677, + [SMALL_STATE(2604)] = 23686, + [SMALL_STATE(2605)] = 23699, + [SMALL_STATE(2606)] = 23712, + [SMALL_STATE(2607)] = 23725, + [SMALL_STATE(2608)] = 23738, + [SMALL_STATE(2609)] = 23751, + [SMALL_STATE(2610)] = 23764, + [SMALL_STATE(2611)] = 23777, + [SMALL_STATE(2612)] = 23787, + [SMALL_STATE(2613)] = 23797, + [SMALL_STATE(2614)] = 23805, + [SMALL_STATE(2615)] = 23815, + [SMALL_STATE(2616)] = 23825, + [SMALL_STATE(2617)] = 23835, + [SMALL_STATE(2618)] = 23845, + [SMALL_STATE(2619)] = 23855, + [SMALL_STATE(2620)] = 23865, + [SMALL_STATE(2621)] = 23875, + [SMALL_STATE(2622)] = 23885, + [SMALL_STATE(2623)] = 23895, + [SMALL_STATE(2624)] = 23905, + [SMALL_STATE(2625)] = 23915, + [SMALL_STATE(2626)] = 23925, + [SMALL_STATE(2627)] = 23935, + [SMALL_STATE(2628)] = 23945, + [SMALL_STATE(2629)] = 23955, + [SMALL_STATE(2630)] = 23965, + [SMALL_STATE(2631)] = 23975, + [SMALL_STATE(2632)] = 23985, + [SMALL_STATE(2633)] = 23995, + [SMALL_STATE(2634)] = 24005, + [SMALL_STATE(2635)] = 24015, + [SMALL_STATE(2636)] = 24025, + [SMALL_STATE(2637)] = 24035, + [SMALL_STATE(2638)] = 24045, + [SMALL_STATE(2639)] = 24055, + [SMALL_STATE(2640)] = 24065, + [SMALL_STATE(2641)] = 24075, + [SMALL_STATE(2642)] = 24085, + [SMALL_STATE(2643)] = 24095, + [SMALL_STATE(2644)] = 24105, + [SMALL_STATE(2645)] = 24115, + [SMALL_STATE(2646)] = 24125, + [SMALL_STATE(2647)] = 24135, + [SMALL_STATE(2648)] = 24145, + [SMALL_STATE(2649)] = 24155, + [SMALL_STATE(2650)] = 24165, + [SMALL_STATE(2651)] = 24175, + [SMALL_STATE(2652)] = 24185, + [SMALL_STATE(2653)] = 24195, + [SMALL_STATE(2654)] = 24205, + [SMALL_STATE(2655)] = 24215, + [SMALL_STATE(2656)] = 24225, + [SMALL_STATE(2657)] = 24235, + [SMALL_STATE(2658)] = 24243, + [SMALL_STATE(2659)] = 24253, + [SMALL_STATE(2660)] = 24263, + [SMALL_STATE(2661)] = 24273, + [SMALL_STATE(2662)] = 24283, + [SMALL_STATE(2663)] = 24293, + [SMALL_STATE(2664)] = 24303, + [SMALL_STATE(2665)] = 24313, + [SMALL_STATE(2666)] = 24323, + [SMALL_STATE(2667)] = 24333, + [SMALL_STATE(2668)] = 24343, + [SMALL_STATE(2669)] = 24353, + [SMALL_STATE(2670)] = 24363, + [SMALL_STATE(2671)] = 24373, + [SMALL_STATE(2672)] = 24383, + [SMALL_STATE(2673)] = 24393, + [SMALL_STATE(2674)] = 24401, + [SMALL_STATE(2675)] = 24411, + [SMALL_STATE(2676)] = 24421, + [SMALL_STATE(2677)] = 24431, + [SMALL_STATE(2678)] = 24441, + [SMALL_STATE(2679)] = 24449, + [SMALL_STATE(2680)] = 24459, + [SMALL_STATE(2681)] = 24469, + [SMALL_STATE(2682)] = 24479, + [SMALL_STATE(2683)] = 24489, + [SMALL_STATE(2684)] = 24499, + [SMALL_STATE(2685)] = 24509, + [SMALL_STATE(2686)] = 24519, + [SMALL_STATE(2687)] = 24529, + [SMALL_STATE(2688)] = 24539, + [SMALL_STATE(2689)] = 24549, + [SMALL_STATE(2690)] = 24559, + [SMALL_STATE(2691)] = 24569, + [SMALL_STATE(2692)] = 24579, + [SMALL_STATE(2693)] = 24589, + [SMALL_STATE(2694)] = 24599, + [SMALL_STATE(2695)] = 24609, + [SMALL_STATE(2696)] = 24619, + [SMALL_STATE(2697)] = 24629, + [SMALL_STATE(2698)] = 24639, + [SMALL_STATE(2699)] = 24649, + [SMALL_STATE(2700)] = 24659, + [SMALL_STATE(2701)] = 24669, + [SMALL_STATE(2702)] = 24679, + [SMALL_STATE(2703)] = 24686, + [SMALL_STATE(2704)] = 24693, + [SMALL_STATE(2705)] = 24700, + [SMALL_STATE(2706)] = 24707, + [SMALL_STATE(2707)] = 24712, + [SMALL_STATE(2708)] = 24719, + [SMALL_STATE(2709)] = 24726, + [SMALL_STATE(2710)] = 24733, + [SMALL_STATE(2711)] = 24740, + [SMALL_STATE(2712)] = 24747, + [SMALL_STATE(2713)] = 24754, + [SMALL_STATE(2714)] = 24761, + [SMALL_STATE(2715)] = 24768, + [SMALL_STATE(2716)] = 24773, + [SMALL_STATE(2717)] = 24780, + [SMALL_STATE(2718)] = 24787, + [SMALL_STATE(2719)] = 24794, + [SMALL_STATE(2720)] = 24801, + [SMALL_STATE(2721)] = 24808, + [SMALL_STATE(2722)] = 24815, + [SMALL_STATE(2723)] = 24822, + [SMALL_STATE(2724)] = 24829, + [SMALL_STATE(2725)] = 24836, + [SMALL_STATE(2726)] = 24843, + [SMALL_STATE(2727)] = 24850, + [SMALL_STATE(2728)] = 24857, + [SMALL_STATE(2729)] = 24864, + [SMALL_STATE(2730)] = 24871, + [SMALL_STATE(2731)] = 24878, + [SMALL_STATE(2732)] = 24885, + [SMALL_STATE(2733)] = 24892, + [SMALL_STATE(2734)] = 24899, + [SMALL_STATE(2735)] = 24906, + [SMALL_STATE(2736)] = 24913, + [SMALL_STATE(2737)] = 24920, + [SMALL_STATE(2738)] = 24927, + [SMALL_STATE(2739)] = 24934, + [SMALL_STATE(2740)] = 24941, + [SMALL_STATE(2741)] = 24948, + [SMALL_STATE(2742)] = 24952, + [SMALL_STATE(2743)] = 24956, + [SMALL_STATE(2744)] = 24960, + [SMALL_STATE(2745)] = 24964, + [SMALL_STATE(2746)] = 24968, + [SMALL_STATE(2747)] = 24972, + [SMALL_STATE(2748)] = 24976, + [SMALL_STATE(2749)] = 24980, + [SMALL_STATE(2750)] = 24984, + [SMALL_STATE(2751)] = 24988, + [SMALL_STATE(2752)] = 24992, + [SMALL_STATE(2753)] = 24996, + [SMALL_STATE(2754)] = 25000, + [SMALL_STATE(2755)] = 25004, + [SMALL_STATE(2756)] = 25008, + [SMALL_STATE(2757)] = 25012, + [SMALL_STATE(2758)] = 25016, + [SMALL_STATE(2759)] = 25020, + [SMALL_STATE(2760)] = 25024, + [SMALL_STATE(2761)] = 25028, + [SMALL_STATE(2762)] = 25032, + [SMALL_STATE(2763)] = 25036, + [SMALL_STATE(2764)] = 25040, + [SMALL_STATE(2765)] = 25044, + [SMALL_STATE(2766)] = 25048, + [SMALL_STATE(2767)] = 25052, + [SMALL_STATE(2768)] = 25056, + [SMALL_STATE(2769)] = 25060, + [SMALL_STATE(2770)] = 25064, + [SMALL_STATE(2771)] = 25068, + [SMALL_STATE(2772)] = 25072, + [SMALL_STATE(2773)] = 25076, + [SMALL_STATE(2774)] = 25080, + [SMALL_STATE(2775)] = 25084, + [SMALL_STATE(2776)] = 25088, + [SMALL_STATE(2777)] = 25092, + [SMALL_STATE(2778)] = 25096, + [SMALL_STATE(2779)] = 25100, + [SMALL_STATE(2780)] = 25104, + [SMALL_STATE(2781)] = 25108, + [SMALL_STATE(2782)] = 25112, + [SMALL_STATE(2783)] = 25116, + [SMALL_STATE(2784)] = 25120, + [SMALL_STATE(2785)] = 25124, + [SMALL_STATE(2786)] = 25128, + [SMALL_STATE(2787)] = 25132, + [SMALL_STATE(2788)] = 25136, + [SMALL_STATE(2789)] = 25140, + [SMALL_STATE(2790)] = 25144, + [SMALL_STATE(2791)] = 25148, + [SMALL_STATE(2792)] = 25152, + [SMALL_STATE(2793)] = 25156, + [SMALL_STATE(2794)] = 25160, + [SMALL_STATE(2795)] = 25164, + [SMALL_STATE(2796)] = 25168, + [SMALL_STATE(2797)] = 25172, + [SMALL_STATE(2798)] = 25176, + [SMALL_STATE(2799)] = 25180, + [SMALL_STATE(2800)] = 25184, + [SMALL_STATE(2801)] = 25188, + [SMALL_STATE(2802)] = 25192, + [SMALL_STATE(2803)] = 25196, + [SMALL_STATE(2804)] = 25200, + [SMALL_STATE(2805)] = 25204, + [SMALL_STATE(2806)] = 25208, + [SMALL_STATE(2807)] = 25212, + [SMALL_STATE(2808)] = 25216, + [SMALL_STATE(2809)] = 25220, + [SMALL_STATE(2810)] = 25224, + [SMALL_STATE(2811)] = 25228, + [SMALL_STATE(2812)] = 25232, + [SMALL_STATE(2813)] = 25236, + [SMALL_STATE(2814)] = 25240, + [SMALL_STATE(2815)] = 25244, + [SMALL_STATE(2816)] = 25248, + [SMALL_STATE(2817)] = 25252, + [SMALL_STATE(2818)] = 25256, + [SMALL_STATE(2819)] = 25260, + [SMALL_STATE(2820)] = 25264, + [SMALL_STATE(2821)] = 25268, + [SMALL_STATE(2822)] = 25272, + [SMALL_STATE(2823)] = 25276, + [SMALL_STATE(2824)] = 25280, + [SMALL_STATE(2825)] = 25284, + [SMALL_STATE(2826)] = 25288, + [SMALL_STATE(2827)] = 25292, + [SMALL_STATE(2828)] = 25296, + [SMALL_STATE(2829)] = 25300, + [SMALL_STATE(2830)] = 25304, + [SMALL_STATE(2831)] = 25308, + [SMALL_STATE(2832)] = 25312, + [SMALL_STATE(2833)] = 25316, + [SMALL_STATE(2834)] = 25320, + [SMALL_STATE(2835)] = 25324, + [SMALL_STATE(2836)] = 25328, + [SMALL_STATE(2837)] = 25332, + [SMALL_STATE(2838)] = 25336, + [SMALL_STATE(2839)] = 25340, + [SMALL_STATE(2840)] = 25344, + [SMALL_STATE(2841)] = 25348, + [SMALL_STATE(2842)] = 25352, + [SMALL_STATE(2843)] = 25356, + [SMALL_STATE(2844)] = 25360, + [SMALL_STATE(2845)] = 25364, + [SMALL_STATE(2846)] = 25368, + [SMALL_STATE(2847)] = 25372, + [SMALL_STATE(2848)] = 25376, + [SMALL_STATE(2849)] = 25380, + [SMALL_STATE(2850)] = 25384, + [SMALL_STATE(2851)] = 25388, + [SMALL_STATE(2852)] = 25392, + [SMALL_STATE(2853)] = 25396, + [SMALL_STATE(2854)] = 25400, + [SMALL_STATE(2855)] = 25404, + [SMALL_STATE(2856)] = 25408, + [SMALL_STATE(2857)] = 25412, + [SMALL_STATE(2858)] = 25416, + [SMALL_STATE(2859)] = 25420, + [SMALL_STATE(2860)] = 25424, + [SMALL_STATE(2861)] = 25428, + [SMALL_STATE(2862)] = 25432, + [SMALL_STATE(2863)] = 25436, + [SMALL_STATE(2864)] = 25440, + [SMALL_STATE(2865)] = 25444, + [SMALL_STATE(2866)] = 25448, + [SMALL_STATE(2867)] = 25452, + [SMALL_STATE(2868)] = 25456, + [SMALL_STATE(2869)] = 25460, + [SMALL_STATE(2870)] = 25464, + [SMALL_STATE(2871)] = 25468, + [SMALL_STATE(2872)] = 25472, + [SMALL_STATE(2873)] = 25476, + [SMALL_STATE(2874)] = 25480, + [SMALL_STATE(2875)] = 25484, + [SMALL_STATE(2876)] = 25488, + [SMALL_STATE(2877)] = 25492, + [SMALL_STATE(2878)] = 25496, + [SMALL_STATE(2879)] = 25500, + [SMALL_STATE(2880)] = 25504, + [SMALL_STATE(2881)] = 25508, + [SMALL_STATE(2882)] = 25512, + [SMALL_STATE(2883)] = 25516, + [SMALL_STATE(2884)] = 25520, + [SMALL_STATE(2885)] = 25524, + [SMALL_STATE(2886)] = 25528, + [SMALL_STATE(2887)] = 25532, + [SMALL_STATE(2888)] = 25536, + [SMALL_STATE(2889)] = 25540, + [SMALL_STATE(2890)] = 25544, + [SMALL_STATE(2891)] = 25548, + [SMALL_STATE(2892)] = 25552, + [SMALL_STATE(2893)] = 25556, + [SMALL_STATE(2894)] = 25560, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), @@ -188947,1094 +188976,1094 @@ static const TSParseActionEntry ts_parse_actions[] = { [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1, 0, 0), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 2, 0, 0), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), - [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1170), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(454), - [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(839), - [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(839), - [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(817), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(301), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(777), - [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2067), - [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(809), - [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(230), - [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(15), - [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(16), - [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(17), - [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2), - [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2439), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(794), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(840), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(896), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(896), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1866), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(397), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(18), - [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(41), - [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2086), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(65), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(95), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(125), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(155), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2827), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2811), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2795), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2851), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2676), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2664), - [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(407), - [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(408), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1094), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(467), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(806), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(806), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(808), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(60), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(785), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2058), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(895), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(61), - [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(62), - [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(63), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(64), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(4), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2469), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(786), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(802), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1110), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1110), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1879), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(379), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(380), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(55), - [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2094), - [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(56), - [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(57), - [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(58), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(59), - [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2808), - [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2809), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2891), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2843), - [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2684), - [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2685), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(410), - [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(411), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1417), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(455), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(822), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(822), - [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(828), - [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(90), - [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(779), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2098), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(827), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(91), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(92), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(93), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(94), - [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(5), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2474), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(780), - [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(830), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1443), - [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1443), - [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1877), - [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(381), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(382), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), - [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(85), - [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2089), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(86), - [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(87), - [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(88), - [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(89), - [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2883), - [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2885), - [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2879), - [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2880), - [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2686), - [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2687), - [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(414), - [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(415), - [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1571), - [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(120), - [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(787), - [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2087), - [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(807), - [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(121), - [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(122), - [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(123), - [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(124), - [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(6), - [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2483), - [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1572), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1572), - [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(383), - [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(384), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(115), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), - [1368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2074), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(117), - [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(119), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2886), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2805), - [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2688), - [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2689), - [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1383), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1, 0, 0), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 2, 0, 0), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1166), + [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(453), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(839), + [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(839), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(817), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(301), + [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(777), + [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2104), + [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(809), + [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(230), + [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(15), + [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(16), + [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(17), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(3), + [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2433), + [1008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(793), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(859), + [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1353), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1353), + [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1856), + [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(397), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(125), + [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(45), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2103), + [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(65), + [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(95), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(14), + [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(155), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2799), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2832), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2834), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2823), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2668), + [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2663), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(407), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(408), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1086), + [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(465), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(834), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(834), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(895), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(60), + [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(785), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2066), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(803), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(61), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(62), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(63), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(64), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(4), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2473), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(790), + [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(814), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1099), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1099), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1855), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(379), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(380), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(55), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2065), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(56), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(57), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(58), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(59), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2749), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2751), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2884), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2752), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2680), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2681), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(410), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(411), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1409), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(457), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(854), + [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(854), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(865), + [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(90), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(781), + [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2099), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(830), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(91), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(92), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(93), + [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(94), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(5), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2479), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(784), + [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(832), + [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1434), + [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1434), + [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1875), + [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(381), + [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(382), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(85), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2094), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(86), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(87), + [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(88), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(89), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2874), + [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2878), + [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2747), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2758), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2682), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2683), + [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(414), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(415), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1566), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(459), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(788), + [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2078), + [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(808), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(122), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(124), + [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2486), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(811), + [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1567), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1567), + [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), + [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(384), + [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2072), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2762), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2763), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2843), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2787), + [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2684), + [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2685), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(419), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1384), [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(452), - [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(834), - [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(834), - [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(894), + [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(835), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(835), + [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(840), [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(326), - [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(778), - [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2060), - [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(863), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(776), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2057), + [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(810), [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(327), [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(328), [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(329), [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(330), [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(13), - [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2530), - [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(791), - [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(848), - [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1284), - [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1284), - [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1869), + [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2531), + [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(778), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(828), + [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1283), + [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1283), + [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1868), [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(398), [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(399), [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(321), - [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2081), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2086), [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(322), [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(323), [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(324), [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(325), - [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2814), - [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2815), - [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2838), - [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2840), - [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2702), - [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2703), + [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2810), + [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2811), + [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2788), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2800), + [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2698), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2699), [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(445), [1516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(446), - [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1181), + [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1176), [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(474), - [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(874), - [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(874), - [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(877), + [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(877), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(877), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(879), [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(267), - [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(781), - [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2075), + [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(779), + [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2073), [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(825), [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(268), [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(269), [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(270), [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(271), [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(11), - [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2517), - [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(782), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(800), - [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1089), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1089), - [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1855), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2519), + [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(780), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(829), + [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1087), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1087), + [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1862), [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(393), [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(394), [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(262), - [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2071), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2070), [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(263), [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(264), [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(265), [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(266), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2778), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2779), - [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2746), - [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2750), - [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2698), - [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2699), + [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2774), + [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2775), + [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2809), + [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2812), + [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2694), + [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2695), [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(438), [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(439), - [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1279), + [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1278), [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(456), [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(842), [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(842), [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(847), [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(296), - [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(792), - [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2076), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(791), + [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2080), [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(873), [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(297), [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(298), [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(299), [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(300), [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(12), - [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2523), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(793), + [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2525), + [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(792), [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(875), - [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1183), - [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1183), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1860), + [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1181), + [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1181), + [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1859), [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(395), [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(396), [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(291), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2072), + [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2079), [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(292), [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(293), [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(294), [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(295), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2796), - [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2797), - [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2782), - [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2785), - [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2700), - [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2701), + [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2792), + [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2793), + [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2803), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2804), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2696), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2697), [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(403), [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(442), - [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), + [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(806), [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(150), - [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2097), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(782), + [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2071), [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(824), [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(151), [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(152), [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(153), [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(154), [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2489), - [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2492), + [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(783), [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(889), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1658), - [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1658), - [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1871), + [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1652), + [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1652), + [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(385), [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(386), [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), + [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2067), [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(146), [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(147), [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(148), [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2821), - [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2822), - [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2878), - [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2893), - [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2690), - [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2691), + [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2805), + [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2807), + [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2783), + [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2839), + [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2686), + [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2687), [1837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(451), [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(924), - [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(466), [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(885), [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(885), [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(886), [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2110), + [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2091), [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(878), [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(181), [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(182), [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(183), [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(184), [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2496), - [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(776), + [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), + [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(799), [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(826), - [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), - [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), - [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1872), + [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(387), [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(388), [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2073), + [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2089), [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(176), [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(177), [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(178), [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2876), - [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2877), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2872), + [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2873), [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2753), - [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2693), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2760), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2688), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2689), [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(426), [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(427), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1002), - [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(997), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(470), [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(818), [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(818), [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(821), [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(788), - [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2091), - [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(887), + [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(786), + [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2059), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(888), [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(210), [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(211), [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(212), [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(213), [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(9), - [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2504), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2506), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(787), [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(880), - [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(925), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(925), - [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1865), + [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1866), [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(389), [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(390), [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2085), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(205), [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(206), [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(207), [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2894), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2895), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2775), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2694), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2695), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2890), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2891), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2893), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2786), + [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2690), + [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2691), [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(430), [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(431), - [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1083), [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(472), [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(872), [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(872), [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(876), [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2068), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2062), [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(853), [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(239), [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(240), [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(241), [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(242), [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2510), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2513), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(797), [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1005), - [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1005), - [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1874), + [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1000), + [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1000), + [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1876), [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(391), [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(392), [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(233), - [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2108), + [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2061), [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(234), [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(235), [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(236), [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(237), - [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2760), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2798), - [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), - [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2696), - [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2697), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2756), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2755), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), + [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2693), [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(434), [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(435), - [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), - [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1490), + [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(455), [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(868), [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(868), [2179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(869), [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(355), - [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(795), - [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2080), - [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(794), + [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2092), + [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(841), [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(356), [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(357), [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(358), [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(359), - [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(3), + [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2), [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2538), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(796), - [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), - [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), - [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1873), + [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(795), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), + [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1872), [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(400), [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(401), [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2077), + [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2090), [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(351), [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(352), [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(353), [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(354), - [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), - [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2833), - [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2875), - [2260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2887), - [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2704), - [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2616), + [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2828), + [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), + [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2766), + [2260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2767), + [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2700), + [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2612), [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(449), [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(450), - [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), + [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(452), - [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(894), + [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(840), [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(326), - [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(778), - [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2060), - [2299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(863), + [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(776), + [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2057), + [2299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(810), [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(327), [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(328), [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(329), [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(330), [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(13), - [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2530), - [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(791), - [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), - [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), - [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1869), + [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2531), + [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(778), + [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1283), + [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1283), + [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(398), [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(399), [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(321), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2081), + [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2086), [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(322), [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(323), [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(324), [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(325), - [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2814), - [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2815), - [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2838), - [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2840), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2702), - [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), + [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2810), + [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2811), + [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2788), + [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), + [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2698), + [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2699), [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(445), [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(446), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), @@ -190046,17 +190075,17 @@ static const TSParseActionEntry ts_parse_actions[] = { [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), @@ -190089,24 +190118,24 @@ static const TSParseActionEntry ts_parse_actions[] = { [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), @@ -190130,401 +190159,401 @@ static const TSParseActionEntry ts_parse_actions[] = { [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_base, 1, 0, 0), [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_base, 1, 0, 0), - [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1094), - [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(806), - [3048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(806), - [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), - [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(785), - [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), - [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(895), - [3065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(63), - [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(64), - [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [3080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2469), - [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(786), - [3086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1110), - [3092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1110), - [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), - [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2094), - [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(56), - [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [3115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2808), - [3121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2809), - [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2891), - [3127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2843), - [3130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2684), - [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2685), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [3044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(454), + [3047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(895), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), + [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2066), + [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(803), + [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(61), + [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2473), + [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(790), + [3088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [3091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), + [3094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), + [3097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1855), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), + [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2065), + [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2749), + [3123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2751), + [3126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2884), + [3129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2752), + [3132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), + [3135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2681), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [3145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [3148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(822), - [3151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(822), - [3154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(828), - [3157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(779), - [3160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2098), - [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(827), - [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(92), - [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(94), - [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2474), - [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(780), - [3187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1443), - [3193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1443), - [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), - [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [3202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2089), - [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(87), - [3211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(88), - [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(89), - [3217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), - [3220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2885), - [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2879), - [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2880), - [3229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2686), - [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2687), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), + [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [3156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [3159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(781), + [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2099), + [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(91), + [3171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(92), + [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(93), + [3177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(94), + [3180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2479), + [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [3189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1434), + [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1434), + [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1875), + [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2094), + [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(87), + [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(88), + [3216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(89), + [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2874), + [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2878), + [3225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2747), + [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2758), + [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2682), + [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2683), [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1571), + [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1566), [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(460), - [3245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [3248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(787), - [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2087), - [3260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(807), + [3245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [3248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(788), + [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2078), + [3260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(808), [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(121), [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(122), [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(123), [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(124), [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(6), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2483), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [3284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1572), - [3290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1572), - [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), + [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2486), + [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [3284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(811), + [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1567), + [3290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1567), + [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(115), - [3299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2074), + [3299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2072), [3302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(116), [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(117), [3308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(118), [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(119), - [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), - [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2886), - [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2805), - [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2688), - [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2689), - [3332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), + [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2762), + [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2763), + [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2843), + [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2787), + [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2684), + [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2685), + [3332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1490), [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(461), [3338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(868), [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(868), [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(869), - [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(795), - [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2080), - [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(794), + [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2092), + [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(841), [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(356), [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(357), [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(358), [3365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(359), - [3368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(3), + [3368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2), [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2538), - [3374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(796), - [3377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [3380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), - [3383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), - [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1873), + [3374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(795), + [3377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [3380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), + [3383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), + [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1872), [3389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [3392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2077), + [3392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2090), [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(351), [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(352), [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(353), [3404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(354), - [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), - [3410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2833), - [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2875), - [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2887), - [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2704), - [3422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2616), + [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2828), + [3410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), + [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2766), + [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2767), + [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2700), + [3422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2612), [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), + [3427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [3433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [3436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [3439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(805), - [3442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2097), + [3433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [3436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [3439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(806), + [3442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(782), + [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2071), [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(824), [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(151), [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(152), [3457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(153), [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(154), [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2489), - [3469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2492), + [3469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(783), [3472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(889), - [3475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1658), - [3478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1658), - [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1871), + [3475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1652), + [3478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1652), + [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2067), [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(146), [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(147), [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(148), [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2821), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2822), - [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2878), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2893), - [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2690), - [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2691), - [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), + [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2805), + [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2807), + [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2783), + [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2839), + [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2686), + [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2687), + [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [3526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [3529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(894), - [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(778), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2060), - [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(863), + [3526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [3529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(776), + [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2057), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(810), [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(327), [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(328), [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(329), [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(330), [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(13), - [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2530), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(791), - [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), - [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), - [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1869), + [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2531), + [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(778), + [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1283), + [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1283), + [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(321), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2081), + [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2086), [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(322), [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(323), [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(324), [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(325), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2814), - [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2815), - [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2838), - [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2840), - [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2702), - [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(924), - [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [3621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [3627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(886), - [3630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2110), - [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(182), - [3645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [3648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [3651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2496), - [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [3660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(826), - [3663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), - [3666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), - [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1872), - [3672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [3675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2073), - [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [3684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [3690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2876), - [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2877), - [3696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2753), - [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), - [3702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), - [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2693), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1279), + [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2810), + [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2811), + [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2788), + [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), + [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2698), + [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2699), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [3620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(467), + [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2091), + [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(878), + [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [3644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [3650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [3653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), + [3659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [3662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(826), + [3665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [3668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), + [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [3677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2089), + [3680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [3683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [3689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [3692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2872), + [3695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2873), + [3698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2753), + [3701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2760), + [3704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2688), + [3707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2689), + [3710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1278), [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(468), [3716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(842), [3719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(842), [3722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(847), - [3725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(792), - [3728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2076), + [3725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(791), + [3728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2080), [3731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(873), [3734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(297), [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(298), [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(299), [3743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(300), [3746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2523), - [3752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2525), + [3752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(792), [3755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [3758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), - [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), - [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1860), + [3758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1181), + [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1181), + [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), [3767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(291), - [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2072), + [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2079), [3773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(292), [3776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(293), [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(294), [3782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(295), - [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2796), - [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2797), - [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2782), - [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2785), - [3797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2700), - [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2701), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1002), - [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(788), - [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2091), - [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(887), - [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(211), - [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(212), - [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [3841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(9), - [3844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2504), - [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(789), - [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(880), - [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(925), - [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(925), - [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1865), - [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2085), - [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [3874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(207), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2894), - [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2895), - [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2775), - [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), - [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2694), - [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2695), - [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), + [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), + [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2793), + [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2803), + [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2804), + [3797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2696), + [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2697), + [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1166), + [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [3812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(777), + [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2104), + [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(16), + [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(3), + [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2433), + [3845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [3848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(859), + [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1353), + [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1353), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), + [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), + [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(95), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2799), + [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), + [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2834), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2823), + [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2668), + [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(997), [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(839), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(839), - [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(777), - [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2067), - [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(15), - [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2), - [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2439), - [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(794), - [3943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(896), - [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(896), + [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(821), + [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(786), + [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2059), + [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(888), + [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(213), + [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(9), + [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2506), + [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(787), + [3943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(880), + [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(921), [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1866), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2086), - [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(65), - [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(95), - [3967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(125), - [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2827), - [3976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2811), - [3979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2795), - [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), - [3985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2676), - [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2664), + [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), + [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [3967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2890), + [3976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2891), + [3979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2893), + [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2786), + [3985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2690), + [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2691), [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1083), [3996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(473), [3999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(872), [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(872), [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(876), - [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2068), + [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2062), [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(853), [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(239), [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(240), [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(241), [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(242), [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2510), - [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2513), + [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(797), [4038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1005), - [4044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1005), - [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1874), + [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1000), + [4044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1000), + [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1876), [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(233), - [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2108), + [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2061), [4056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(234), [4059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(235), [4062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(236), [4065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(237), - [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2760), - [4071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), - [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2798), - [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), - [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2696), - [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2697), + [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2756), + [4071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), + [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2755), + [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), + [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), + [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2693), [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1181), + [4088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1176), [4091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [4094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(874), - [4097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(874), - [4100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [4103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [4106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2075), + [4094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [4097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [4100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(879), + [4103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(779), + [4106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2073), [4109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(825), [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(268), [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(269), [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(270), [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(271), [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2517), - [4130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(782), - [4133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1089), - [4139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1089), - [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1855), + [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2519), + [4130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(780), + [4133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(829), + [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1087), + [4139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1087), + [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1862), [4145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(262), - [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2071), + [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2070), [4151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(263), [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(264), [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(265), [4160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(266), - [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2778), - [4166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2779), - [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2746), - [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2750), - [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2698), - [4178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2699), + [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2774), + [4166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2775), + [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2809), + [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2812), + [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2694), + [4178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2695), [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 2, 10, 0), [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 2, 10, 0), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 12), [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 12), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 13), [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 13), [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 14), @@ -190553,318 +190582,318 @@ static const TSParseActionEntry ts_parse_actions[] = { [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 8, 10, 0), [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 8, 30, 0), [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 8, 30, 0), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 3, 0, 7), - [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 3, 0, 7), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 1, 10, 0), - [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 1, 10, 0), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 2, 0, 0), - [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 2, 0, 0), - [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 1, 10, 0), - [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 1, 10, 0), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 2, 0, 3), - [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 2, 0, 3), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, 0, 0), - [4277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, 0, 0), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 1, 10, 0), + [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 1, 10, 0), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 2, 0, 0), + [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 2, 0, 0), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 1, 10, 0), + [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 1, 10, 0), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 2, 0, 3), + [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 2, 0, 3), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, 0, 0), + [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, 0, 0), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 2, 0, 4), + [4277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 2, 0, 4), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 2, 0, 0), [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 2, 0, 0), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 2, 0, 4), - [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 2, 0, 4), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 2, 0, 5), - [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 2, 0, 5), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 2, 0, 5), + [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 2, 0, 5), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 3, 0, 7), + [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 3, 0, 7), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1, 0, 0), - [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1, 0, 0), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 1, 0, 0), - [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 1, 0, 0), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 1, 0, 0), + [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 1, 0, 0), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1, 0, 0), + [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1, 0, 0), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 20), [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 20), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 2, 0, 6), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 2, 0, 6), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 15), - [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 15), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 16), - [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 16), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 15), + [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 15), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 16), + [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 16), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 2, 0, 6), + [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 2, 0, 6), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 3, 0, 0), - [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 3, 0, 0), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 1, 22), - [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_language_attribute, 3, 1, 22), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), - [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 5, 0, 0), - [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 5, 0, 0), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), - [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 5, 0, 23), - [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 5, 0, 23), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 4, 0, 0), - [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 4, 0, 0), - [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), - [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 6, 0, 0), - [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 6, 0, 0), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), - [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 5, 0, 0), - [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 5, 0, 0), - [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), - [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 7, 0, 0), - [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 7, 0, 0), - [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 9, 10, 0), - [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 9, 10, 0), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 9, 30, 0), - [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 9, 30, 0), - [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backslash_escape, 1, 0, 0), - [4589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backslash_escape, 1, 0, 0), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image, 1, 0, 0), - [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image, 1, 0, 0), - [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1, 0, 1), - [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1, 0, 1), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strikeout, 2, 0, 0), - [4601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strikeout, 2, 0, 0), - [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_span, 2, 0, 0), - [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_span, 2, 0, 0), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_span, 2, 0, 0), - [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_span, 2, 0, 0), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 2, 0, 0), - [4613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 2, 0, 0), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 2, 0, 0), - [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 2, 0, 0), - [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 0), - [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 0), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 2), - [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 2), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 2, 0, 0), - [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 2, 0, 0), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2, 0, 0), - [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2, 0, 0), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), - [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [4641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 2, 0, 0), - [4645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 2, 0, 0), - [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2, 10, 0), - [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2, 10, 0), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 3, 0, 0), - [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 3, 0, 0), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 3, 1, 0), - [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 3, 1, 0), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 3, 1, 0), - [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 3, 1, 0), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strikeout, 3, 0, 0), - [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strikeout, 3, 0, 0), - [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_span, 3, 0, 8), - [4669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_span, 3, 0, 8), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_span, 3, 0, 0), - [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_span, 3, 0, 0), - [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, 0, 0), - [4677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, 0, 0), - [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, 0, 0), - [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, 0, 0), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 9), - [4685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 9), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 10), - [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 10), - [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star, 3, 2, 0), - [4693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star, 3, 2, 0), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore, 3, 2, 0), - [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore, 3, 2, 0), - [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 3, 10, 0), - [4701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 3, 10, 0), - [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text_non_empty, 3, 0, 11), - [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text_non_empty, 3, 0, 11), - [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), - [4709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), - [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 3), - [4713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 3), - [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 4), - [4717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 4), - [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 5), - [4721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 5), - [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_reference, 3, 0, 17), - [4725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_reference, 3, 0, 17), - [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 4, 0, 7), - [4729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 4, 0, 7), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 4, 1, 0), - [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 4, 1, 0), - [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 4, 1, 0), - [4737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 4, 1, 0), - [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), - [4741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), - [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 0), - [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 0), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 12), - [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 12), - [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 13), - [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 13), - [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 14), - [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 14), - [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 19), - [4761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 19), - [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 21), - [4765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 21), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 4, 1, 0), + [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 4, 1, 0), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), + [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 5, 0, 0), + [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 5, 0, 0), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), + [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 5, 0, 23), + [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 5, 0, 23), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 4, 0, 0), + [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 4, 0, 0), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), + [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 6, 0, 0), + [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 6, 0, 0), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), + [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 5, 0, 0), + [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 5, 0, 0), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), + [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 7, 0, 0), + [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 7, 0, 0), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 9, 10, 0), + [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 9, 10, 0), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 9, 30, 0), + [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 9, 30, 0), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backslash_escape, 1, 0, 0), + [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backslash_escape, 1, 0, 0), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image, 1, 0, 0), + [4589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image, 1, 0, 0), + [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1, 0, 1), + [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1, 0, 1), + [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strikeout, 2, 0, 0), + [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strikeout, 2, 0, 0), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_span, 2, 0, 0), + [4601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_span, 2, 0, 0), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_span, 2, 0, 0), + [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_span, 2, 0, 0), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 2, 0, 0), + [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 2, 0, 0), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 2, 0, 0), + [4613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 2, 0, 0), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 0), + [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 0), + [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 2), + [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 2), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 2, 0, 0), + [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 2, 0, 0), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2, 0, 0), + [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2, 0, 0), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), + [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 2, 0, 0), + [4641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 2, 0, 0), + [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2, 10, 0), + [4645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2, 10, 0), + [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 3, 0, 0), + [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 3, 0, 0), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 3, 1, 0), + [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 3, 1, 0), + [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 3, 1, 0), + [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 3, 1, 0), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strikeout, 3, 0, 0), + [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strikeout, 3, 0, 0), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_span, 3, 0, 8), + [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_span, 3, 0, 8), + [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_span, 3, 0, 0), + [4669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_span, 3, 0, 0), + [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, 0, 0), + [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, 0, 0), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, 0, 0), + [4677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, 0, 0), + [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 9), + [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 9), + [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 10), + [4685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 10), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star, 3, 2, 0), + [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star, 3, 2, 0), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore, 3, 2, 0), + [4693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore, 3, 2, 0), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 3, 10, 0), + [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 3, 10, 0), + [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text_non_empty, 3, 0, 11), + [4701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text_non_empty, 3, 0, 11), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), + [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), + [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 3), + [4709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 3), + [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 4), + [4713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 4), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 5), + [4717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 5), + [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_reference, 3, 0, 17), + [4721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_reference, 3, 0, 17), + [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 4, 0, 7), + [4725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 4, 0, 7), + [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 4, 1, 0), + [4729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 4, 1, 0), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), + [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), + [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 0), + [4737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 0), + [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 12), + [4741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 12), + [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 13), + [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 13), + [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 14), + [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 14), + [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 19), + [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 19), + [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 21), + [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 21), + [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 3, 0, 0), + [4761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 3, 0, 0), + [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 1, 22), + [4765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_language_attribute, 3, 1, 22), [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 1, 0, 0), [4769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline, 1, 0, 0), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1890), - [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1891), - [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1893), - [4822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1893), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1884), + [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1886), + [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1889), + [4822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1889), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1892), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1895), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), @@ -190872,903 +190901,895 @@ static const TSParseActionEntry ts_parse_actions[] = { [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 1, 10, 0), - [4944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1904), - [4947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1838), - [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1890), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), - [4955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1890), - [4958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1891), - [4961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), - [4964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), - [4967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1904), - [4970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1887), - [4973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1885), - [4976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1885), - [4979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1889), - [4982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1914), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), - [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1904), - [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1843), - [5015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1892), - [5018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1892), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), - [5023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1891), - [5026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [5029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [5034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1904), - [5037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1887), - [5040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1885), - [5043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1885), - [5046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1889), - [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1914), - [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), - [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [4952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1910), + [4955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1893), + [4958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1891), + [4961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1891), + [4964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1888), + [4967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1920), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1910), + [4979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1840), + [4982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1895), + [4985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1895), + [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), + [4990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1886), + [4993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1889), + [4996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1889), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [5009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1910), + [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1893), + [5015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1891), + [5018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1891), + [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1888), + [5024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1920), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), + [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [5035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1910), + [5038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), + [5041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), + [5046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), + [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), + [5052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), + [5055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 2, 10, 0), [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 2, 10, 0), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1904), - [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1848), - [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1885), - [5075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1885), - [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1889), - [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), - [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), - [5085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1904), - [5088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1849), - [5091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1907), - [5094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1907), - [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), - [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1891), - [5102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1893), - [5105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1893), - [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 3, 10, 0), - [5110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 3, 10, 0), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [5154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1904), - [5157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1863), - [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), - [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1925), - [5165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1925), - [5168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), - [5171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), - [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), - [5202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1891), - [5205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), - [5208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), - [5222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), - [5225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1921), - [5228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1921), - [5231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1933), - [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), - [5243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), - [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), - [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), - [5250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), - [5256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(sym_link_title, 2, 0, 0), - [5259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(sym_link_title, 2, 0, 0), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [5264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), - [5267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [5274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), - [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT_REPEAT(2708), - [5293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT_REPEAT(2708), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [5306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), - [5309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), - [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 3, 0, 0), - [5314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 3, 0, 0), - [5316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1932), - [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), - [5321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1932), - [5324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1929), - [5327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1899), - [5330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), - [5333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), - [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), - [5338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), - [5340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), REDUCE(sym_link_title, 2, 0, 0), - [5343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), REDUCE(sym_link_title, 2, 0, 0), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 3, 0, 0), - [5348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 3, 0, 0), - [5350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), SHIFT_REPEAT(2708), - [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 3, 0, 0), - [5367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 3, 0, 0), - [5369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1935), - [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), - [5374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1935), - [5377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1927), - [5380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1910), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), - [5392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), - [5395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), - [5397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 3, 0, 0), - [5403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 3, 0, 0), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 1, 0, 0), - [5409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 1, 0, 0), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [5413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_text_base, 1, 0, 0), - [5415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_text_base, 1, 0, 0), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [5423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 2, 0, 0), - [5425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 2, 0, 0), - [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_text_base, 2, 0, 0), - [5429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_text_base, 2, 0, 0), - [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 1, 0, 0), - [5433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 1, 0, 0), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [5437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 1, 0, 0), - [5439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 1, 0, 0), - [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 1, 0, 0), - [5443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 1, 0, 0), + [5064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1910), + [5067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1847), + [5070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1915), + [5073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1915), + [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), + [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1886), + [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1889), + [5084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1889), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [5095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1910), + [5098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1851), + [5101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1891), + [5104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1891), + [5107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1888), + [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), + [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 3, 10, 0), + [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 3, 10, 0), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1923), + [5145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1925), + [5148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), + [5151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), + [5154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1929), + [5157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1910), + [5168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), + [5171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), + [5173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1921), + [5176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1921), + [5179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), + [5182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), + [5211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), + [5213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), + [5216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), + [5219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), + [5243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [5248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT_REPEAT(2733), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), + [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), + [5257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(sym_link_title, 2, 0, 0), + [5260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(sym_link_title, 2, 0, 0), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [5271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT_REPEAT(2733), + [5274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), + [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), + [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), + [5282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [5288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), + [5291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), + [5317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), + [5320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), + [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 3, 0, 0), + [5324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 3, 0, 0), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [5330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), + [5333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), + [5335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), + [5338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1933), + [5341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1906), + [5344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), + [5347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), + [5350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), + [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), + [5354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), + [5356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), REDUCE(sym_link_title, 2, 0, 0), + [5359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), REDUCE(sym_link_title, 2, 0, 0), + [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 3, 0, 0), + [5364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 3, 0, 0), + [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 3, 0, 0), + [5368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 3, 0, 0), + [5370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), + [5373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), + [5380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1928), + [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), + [5385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1928), + [5388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1932), + [5391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1917), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [5396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), SHIFT_REPEAT(2733), + [5399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 1, 0, 0), + [5401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 1, 0, 0), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_text_base, 1, 0, 0), + [5407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_text_base, 1, 0, 0), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 3, 0, 0), + [5417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 3, 0, 0), + [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_text_base, 2, 0, 0), + [5421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_text_base, 2, 0, 0), + [5423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 1, 0, 0), + [5425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 1, 0, 0), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 1, 0, 0), + [5431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 1, 0, 0), + [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 2, 0, 0), + [5435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 2, 0, 0), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 1, 0, 0), + [5443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 1, 0, 0), [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), [5447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), [5449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(2095), - [5824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(2095), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [5913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(2186), - [5916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(2185), - [5919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(2149), - [5922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [5823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), + [5826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(2411), + [5829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(2147), + [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [5880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(2124), + [5883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(2124), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 1, 0, 0), - [5988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 1, 0, 0), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), - [6094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(2430), - [6097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), - [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [6103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), - [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(2743), - [6110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(2743), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [6145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), - [6165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), SHIFT_REPEAT(2458), - [6168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 1, 0, 0), - [6222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 1, 0, 0), - [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 2, 0, 0), - [6226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 2, 0, 0), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 3, 0, 0), - [6234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 3, 0, 0), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 3, 0, 0), - [6238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 3, 0, 0), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [6242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__shortcode_value, 1, 0, 0), SHIFT(2095), - [6245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__shortcode_value, 1, 0, 0), SHIFT(2095), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5, 0, 0), - [6250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5, 0, 0), - [6252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(2069), - [6255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(2069), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4, 0, 0), - [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4, 0, 0), - [6262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(2095), - [6265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(2095), - [6268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), - [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 3, 0, 0), - [6276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 3, 0, 0), - [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 2, 0, 0), - [6280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 2, 0, 0), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [6308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_boolean, 1, 0, 0), - [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_boolean, 1, 0, 0), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), - [6392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), - [6404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 4, 0, 0), - [6444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 4, 0, 0), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_naked_string, 1, 0, 0), - [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_naked_string, 1, 0, 0), - [6454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 3, 0, 0), - [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 3, 0, 0), - [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 5, 0, 0), - [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 5, 0, 0), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_string, 1, 0, 0), - [6472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_string, 1, 0, 0), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, 30, 0), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [6540] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description_non_empty, 4, 0, 18), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 1, 0, 0), + [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 1, 0, 0), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), + [6090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(2428), + [6093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), + [6095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [6099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [6137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), + [6143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), SHIFT_REPEAT(2456), + [6146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), + [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), + [6150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(2720), + [6153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(2720), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 2, 0, 0), + [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 2, 0, 0), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [6224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(2729), + [6227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(2729), + [6230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(2063), + [6233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(2063), + [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 2, 0, 0), + [6238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 2, 0, 0), + [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 3, 0, 0), + [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 3, 0, 0), + [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 3, 0, 0), + [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 3, 0, 0), + [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [6252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), + [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4, 0, 0), + [6256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4, 0, 0), + [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5, 0, 0), + [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5, 0, 0), + [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 1, 0, 0), + [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 1, 0, 0), + [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 3, 0, 0), + [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 3, 0, 0), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_boolean, 1, 0, 0), + [6346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_boolean, 1, 0, 0), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [6354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), + [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), + [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 2, 0, 0), + [6420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 2, 0, 0), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_naked_string, 1, 0, 0), + [6464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_naked_string, 1, 0, 0), + [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_string, 1, 0, 0), + [6468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_string, 1, 0, 0), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 3, 0, 0), + [6476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 3, 0, 0), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [6598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, 30, 0), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [6620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description_non_empty, 4, 0, 18), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [6666] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), }; enum ts_external_scanner_symbol_identifiers { @@ -191802,11 +191823,12 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__shortcode_close_escaped = 27, ts_external_token__shortcode_open = 28, ts_external_token__shortcode_close = 29, - ts_external_token__unclosed_span = 30, - ts_external_token__strong_emphasis_open_star = 31, - ts_external_token__strong_emphasis_close_star = 32, - ts_external_token__strong_emphasis_open_underscore = 33, - ts_external_token__strong_emphasis_close_underscore = 34, + ts_external_token__key_name_and_equals = 30, + ts_external_token__unclosed_span = 31, + ts_external_token__strong_emphasis_open_star = 32, + ts_external_token__strong_emphasis_close_star = 33, + ts_external_token__strong_emphasis_open_underscore = 34, + ts_external_token__strong_emphasis_close_underscore = 35, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -191840,6 +191862,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__shortcode_close_escaped] = sym__shortcode_close_escaped, [ts_external_token__shortcode_open] = sym__shortcode_open, [ts_external_token__shortcode_close] = sym__shortcode_close, + [ts_external_token__key_name_and_equals] = sym__key_name_and_equals, [ts_external_token__unclosed_span] = sym__unclosed_span, [ts_external_token__strong_emphasis_open_star] = sym__strong_emphasis_open_star, [ts_external_token__strong_emphasis_close_star] = sym__strong_emphasis_close_star, @@ -191847,7 +191870,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__strong_emphasis_close_underscore] = sym__strong_emphasis_close_underscore, }; -static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[53][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__error] = true, [ts_external_token__trigger_error] = true, @@ -191879,6 +191902,7 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__shortcode_close_escaped] = true, [ts_external_token__shortcode_open] = true, [ts_external_token__shortcode_close] = true, + [ts_external_token__key_name_and_equals] = true, [ts_external_token__unclosed_span] = true, [ts_external_token__strong_emphasis_open_star] = true, [ts_external_token__strong_emphasis_close_star] = true, @@ -191931,12 +191955,12 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_underscore] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__double_quote_open] = true, [ts_external_token__superscript_open] = true, + [ts_external_token__superscript_close] = true, [ts_external_token__subscript_open] = true, [ts_external_token__cite_author_in_text_with_open_bracket] = true, [ts_external_token__cite_suppress_author_with_open_bracket] = true, @@ -191993,8 +192017,8 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_underscore] = true, [ts_external_token__strikeout_open] = true, - [ts_external_token__strikeout_close] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__double_quote_open] = true, @@ -192015,9 +192039,9 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, [ts_external_token__strikeout_open] = true, + [ts_external_token__strikeout_close] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, - [ts_external_token__single_quote_close] = true, [ts_external_token__double_quote_open] = true, [ts_external_token__superscript_open] = true, [ts_external_token__subscript_open] = true, @@ -192038,8 +192062,8 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, + [ts_external_token__single_quote_close] = true, [ts_external_token__double_quote_open] = true, - [ts_external_token__double_quote_close] = true, [ts_external_token__superscript_open] = true, [ts_external_token__subscript_open] = true, [ts_external_token__cite_author_in_text_with_open_bracket] = true, @@ -192060,8 +192084,8 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__double_quote_open] = true, + [ts_external_token__double_quote_close] = true, [ts_external_token__superscript_open] = true, - [ts_external_token__superscript_close] = true, [ts_external_token__subscript_open] = true, [ts_external_token__cite_author_in_text_with_open_bracket] = true, [ts_external_token__cite_suppress_author_with_open_bracket] = true, @@ -192140,12 +192164,11 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__last_token_whitespace] = true, + [ts_external_token__last_token_punctuation] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__double_quote_open] = true, - [ts_external_token__double_quote_close] = true, [ts_external_token__superscript_open] = true, [ts_external_token__subscript_open] = true, [ts_external_token__cite_author_in_text_with_open_bracket] = true, @@ -192156,14 +192179,14 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__shortcode_open] = true, [ts_external_token__unclosed_span] = true, [ts_external_token__strong_emphasis_open_star] = true, + [ts_external_token__strong_emphasis_close_star] = true, [ts_external_token__strong_emphasis_open_underscore] = true, }, [15] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_underscore] = true, - [ts_external_token__last_token_punctuation] = true, + [ts_external_token__last_token_whitespace] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, @@ -192178,6 +192201,7 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__shortcode_open] = true, [ts_external_token__unclosed_span] = true, [ts_external_token__strong_emphasis_open_star] = true, + [ts_external_token__strong_emphasis_close_star] = true, [ts_external_token__strong_emphasis_open_underscore] = true, }, [16] = { @@ -192185,7 +192209,7 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, [ts_external_token__emphasis_close_underscore] = true, - [ts_external_token__last_token_whitespace] = true, + [ts_external_token__last_token_punctuation] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, @@ -192210,6 +192234,7 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, + [ts_external_token__single_quote_close] = true, [ts_external_token__double_quote_open] = true, [ts_external_token__superscript_open] = true, [ts_external_token__subscript_open] = true, @@ -192221,7 +192246,6 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__shortcode_open] = true, [ts_external_token__unclosed_span] = true, [ts_external_token__strong_emphasis_open_star] = true, - [ts_external_token__strong_emphasis_close_star] = true, [ts_external_token__strong_emphasis_open_underscore] = true, }, [18] = { @@ -192232,6 +192256,7 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, + [ts_external_token__single_quote_close] = true, [ts_external_token__double_quote_open] = true, [ts_external_token__superscript_open] = true, [ts_external_token__subscript_open] = true, @@ -192243,18 +192268,17 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__shortcode_open] = true, [ts_external_token__unclosed_span] = true, [ts_external_token__strong_emphasis_open_star] = true, - [ts_external_token__strong_emphasis_close_star] = true, [ts_external_token__strong_emphasis_open_underscore] = true, }, [19] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__last_token_punctuation] = true, + [ts_external_token__emphasis_close_underscore] = true, + [ts_external_token__last_token_whitespace] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, - [ts_external_token__single_quote_close] = true, [ts_external_token__double_quote_open] = true, [ts_external_token__superscript_open] = true, [ts_external_token__subscript_open] = true, @@ -192272,11 +192296,11 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__last_token_whitespace] = true, + [ts_external_token__emphasis_close_star] = true, + [ts_external_token__last_token_punctuation] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, - [ts_external_token__single_quote_close] = true, [ts_external_token__double_quote_open] = true, [ts_external_token__superscript_open] = true, [ts_external_token__subscript_open] = true, @@ -192294,13 +192318,13 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_star] = true, [ts_external_token__last_token_punctuation] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__double_quote_open] = true, [ts_external_token__superscript_open] = true, + [ts_external_token__superscript_close] = true, [ts_external_token__subscript_open] = true, [ts_external_token__cite_author_in_text_with_open_bracket] = true, [ts_external_token__cite_suppress_author_with_open_bracket] = true, @@ -192316,13 +192340,13 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_star] = true, [ts_external_token__last_token_whitespace] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__double_quote_open] = true, [ts_external_token__superscript_open] = true, + [ts_external_token__superscript_close] = true, [ts_external_token__subscript_open] = true, [ts_external_token__cite_author_in_text_with_open_bracket] = true, [ts_external_token__cite_suppress_author_with_open_bracket] = true, @@ -192360,13 +192384,13 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__last_token_punctuation] = true, + [ts_external_token__last_token_whitespace] = true, [ts_external_token__strikeout_open] = true, + [ts_external_token__strikeout_close] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__double_quote_open] = true, [ts_external_token__superscript_open] = true, - [ts_external_token__superscript_close] = true, [ts_external_token__subscript_open] = true, [ts_external_token__cite_author_in_text_with_open_bracket] = true, [ts_external_token__cite_suppress_author_with_open_bracket] = true, @@ -192382,13 +192406,13 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_star] = true, [ts_external_token__last_token_whitespace] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__double_quote_open] = true, [ts_external_token__superscript_open] = true, - [ts_external_token__superscript_close] = true, [ts_external_token__subscript_open] = true, [ts_external_token__cite_author_in_text_with_open_bracket] = true, [ts_external_token__cite_suppress_author_with_open_bracket] = true, @@ -192404,9 +192428,8 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__last_token_whitespace] = true, + [ts_external_token__last_token_punctuation] = true, [ts_external_token__strikeout_open] = true, - [ts_external_token__strikeout_close] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__double_quote_open] = true, @@ -192421,12 +192444,13 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__unclosed_span] = true, [ts_external_token__strong_emphasis_open_star] = true, [ts_external_token__strong_emphasis_open_underscore] = true, + [ts_external_token__strong_emphasis_close_underscore] = true, }, [27] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__last_token_punctuation] = true, + [ts_external_token__last_token_whitespace] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, @@ -192448,13 +192472,14 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__last_token_whitespace] = true, + [ts_external_token__last_token_punctuation] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__double_quote_open] = true, [ts_external_token__superscript_open] = true, [ts_external_token__subscript_open] = true, + [ts_external_token__subscript_close] = true, [ts_external_token__cite_author_in_text_with_open_bracket] = true, [ts_external_token__cite_suppress_author_with_open_bracket] = true, [ts_external_token__cite_author_in_text] = true, @@ -192464,13 +192489,12 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__unclosed_span] = true, [ts_external_token__strong_emphasis_open_star] = true, [ts_external_token__strong_emphasis_open_underscore] = true, - [ts_external_token__strong_emphasis_close_underscore] = true, }, [29] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__last_token_punctuation] = true, + [ts_external_token__last_token_whitespace] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, @@ -192492,14 +192516,14 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__last_token_whitespace] = true, + [ts_external_token__last_token_punctuation] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__double_quote_open] = true, + [ts_external_token__double_quote_close] = true, [ts_external_token__superscript_open] = true, [ts_external_token__subscript_open] = true, - [ts_external_token__subscript_close] = true, [ts_external_token__cite_author_in_text_with_open_bracket] = true, [ts_external_token__cite_suppress_author_with_open_bracket] = true, [ts_external_token__cite_author_in_text] = true, @@ -192514,7 +192538,7 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__last_token_punctuation] = true, + [ts_external_token__last_token_whitespace] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, @@ -192543,32 +192567,36 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { }, [35] = { [ts_external_token__code_span_close] = true, - [ts_external_token__last_token_whitespace] = true, + [ts_external_token__last_token_punctuation] = true, }, [36] = { [ts_external_token__code_span_close] = true, - [ts_external_token__last_token_punctuation] = true, + [ts_external_token__last_token_whitespace] = true, }, [37] = { [ts_external_token__shortcode_open] = true, + [ts_external_token__shortcode_close] = true, + [ts_external_token__key_name_and_equals] = true, }, [38] = { + [ts_external_token__shortcode_close_escaped] = true, [ts_external_token__shortcode_open] = true, - [ts_external_token__shortcode_close] = true, + [ts_external_token__key_name_and_equals] = true, }, [39] = { - [ts_external_token__shortcode_close_escaped] = true, [ts_external_token__shortcode_open] = true, }, [40] = { [ts_external_token__last_token_whitespace] = true, [ts_external_token__shortcode_open] = true, [ts_external_token__shortcode_close] = true, + [ts_external_token__key_name_and_equals] = true, }, [41] = { [ts_external_token__last_token_whitespace] = true, [ts_external_token__shortcode_close_escaped] = true, [ts_external_token__shortcode_open] = true, + [ts_external_token__key_name_and_equals] = true, }, [42] = { [ts_external_token__latex_span_close] = true, @@ -192582,24 +192610,35 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__latex_span_close] = true, }, [45] = { - [ts_external_token__shortcode_close_escaped] = true, + [ts_external_token__last_token_whitespace] = true, + [ts_external_token__shortcode_close] = true, + [ts_external_token__key_name_and_equals] = true, }, [46] = { - [ts_external_token__shortcode_close] = true, + [ts_external_token__shortcode_close_escaped] = true, + [ts_external_token__key_name_and_equals] = true, }, [47] = { - [ts_external_token__last_token_whitespace] = true, - [ts_external_token__shortcode_close_escaped] = true, + [ts_external_token__shortcode_close] = true, + [ts_external_token__key_name_and_equals] = true, }, [48] = { [ts_external_token__last_token_whitespace] = true, - [ts_external_token__shortcode_close] = true, + [ts_external_token__shortcode_close_escaped] = true, + [ts_external_token__key_name_and_equals] = true, }, [49] = { + [ts_external_token__key_name_and_equals] = true, + }, + [50] = { + [ts_external_token__last_token_whitespace] = true, + [ts_external_token__key_name_and_equals] = true, + }, + [51] = { [ts_external_token__trigger_error] = true, [ts_external_token__last_token_whitespace] = true, }, - [50] = { + [52] = { [ts_external_token__trigger_error] = true, }, }; diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/scanner.c b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/scanner.c index f0f654f..227c94d 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/scanner.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/src/scanner.c @@ -41,6 +41,7 @@ typedef enum { SHORTCODE_CLOSE_ESCAPED, SHORTCODE_OPEN, SHORTCODE_CLOSE, + KEY_NAME_AND_EQUALS, UNCLOSED_SPAN, STRONG_EMPHASIS_OPEN_STAR, STRONG_EMPHASIS_CLOSE_STAR, @@ -475,6 +476,48 @@ static bool parse_shortcode_close(Scanner *s, TSLexer *lexer, return false; } +// Helper: check if character is valid for start of identifier [a-zA-Z_] +static inline bool is_identifier_start(int32_t c) { + return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_'; +} + +// Helper: check if character is valid for identifier continuation [a-zA-Z0-9_-] +static inline bool is_identifier_char(int32_t c) { + return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || + (c >= '0' && c <= '9') || c == '_' || c == '-'; +} + +// Parse key_name_and_equals token: identifier [whitespace] = +// This eliminates ambiguity between positional args and keyword params +// Only attempts to parse when valid_symbols[KEY_NAME_AND_EQUALS] is true +static bool parse_key_name_and_equals(UNUSED Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + if (!valid_symbols[KEY_NAME_AND_EQUALS]) return false; + + // Must start with identifier start char + if (!is_identifier_start(lexer->lookahead)) return false; + + // Consume identifier: [a-zA-Z_][a-zA-Z0-9_-]* + lexer->advance(lexer, false); + while (is_identifier_char(lexer->lookahead)) { + lexer->advance(lexer, false); + } + + // Skip optional whitespace + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + lexer->advance(lexer, false); + } + + // Must be followed by '=' + if (lexer->lookahead != '=') return false; + + // Consume the '=' + lexer->advance(lexer, false); + lexer->mark_end(lexer); + lexer->result_symbol = KEY_NAME_AND_EQUALS; + return true; +} + static bool scan(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { // A normal tree-sitter rule decided that the current branch is invalid and // now "requests" an error to stop the branch @@ -526,6 +569,13 @@ static bool scan(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { if (!s->inside_shortcode && (valid_symbols[LAST_TOKEN_WHITESPACE] || s->inside_double_quote) && lexer->lookahead == '"') { return parse_double_quote(s, lexer, valid_symbols); } + + // Try to parse key_name_and_equals when inside shortcode and lookahead is identifier start + // This must be checked only when the grammar can accept this token (valid_symbols guard) + if (s->inside_shortcode && is_identifier_start(lexer->lookahead)) { + return parse_key_name_and_equals(s, lexer, valid_symbols); + } + return false; } diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/test/corpus/shortcodes.txt b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/test/corpus/shortcodes.txt index af943c7..25d8030 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/test/corpus/shortcodes.txt +++ b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/test/corpus/shortcodes.txt @@ -46,7 +46,7 @@ Key-value (shortcode_delimiter) (shortcode_name) (shortcode_keyword_param - (shortcode_name) + (shortcode_key_name_and_equals) (shortcode_name)) (shortcode_delimiter))) ================================================================================ @@ -102,4 +102,73 @@ naked URL strings as positional parameters (shortcode_delimiter) (shortcode_name) (shortcode_naked_string) + (shortcode_delimiter))) +================================================================================ +unquoted identifier as positional parameter +================================================================================ +{{< meta my-key >}} +-------------------------------------------------------------------------------- +(inline + (shortcode + (shortcode_delimiter) + (shortcode_name) + (shortcode_name) + (shortcode_delimiter))) +================================================================================ +multiple unquoted identifiers as positional parameters +================================================================================ +{{< include file.qmd section >}} +-------------------------------------------------------------------------------- +(inline + (shortcode + (shortcode_delimiter) + (shortcode_name) + (shortcode_naked_string) + (shortcode_name) + (shortcode_delimiter))) +================================================================================ +key-value with whitespace before equals +================================================================================ +{{< video src ="url" >}} +-------------------------------------------------------------------------------- +(inline + (shortcode + (shortcode_delimiter) + (shortcode_name) + (shortcode_keyword_param + (shortcode_key_name_and_equals) + (shortcode_string)) + (shortcode_delimiter))) +================================================================================ +multiple key-value parameters +================================================================================ +{{< video src="url" width=500 >}} +-------------------------------------------------------------------------------- +(inline + (shortcode + (shortcode_delimiter) + (shortcode_name) + (shortcode_keyword_param + (shortcode_key_name_and_equals) + (shortcode_string)) + (shortcode_keyword_param + (shortcode_key_name_and_equals) + (shortcode_number)) + (shortcode_delimiter))) +================================================================================ +mixed positional and keyword parameters +================================================================================ +{{< video "url" width=500 autoplay=true >}} +-------------------------------------------------------------------------------- +(inline + (shortcode + (shortcode_delimiter) + (shortcode_name) + (shortcode_string) + (shortcode_keyword_param + (shortcode_key_name_and_equals) + (shortcode_number)) + (shortcode_keyword_param + (shortcode_key_name_and_equals) + (shortcode_boolean)) (shortcode_delimiter))) \ No newline at end of file